/* 
   Hoja de estilos para DeepnudeES.pw
   Esquema de colores azul y morado inspirado en la noche española
*/

/* Reset y variables globales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primario: #003f5c;
    --primario-claro: #2c6e8e;
    --secundario: #58508d;
    --acento: #ff6361;
    --acento-secundario: #bc5090;
    --acento-terciario: #ffa600;
    --blanco: #ffffff;
    --gris-claro: #f5f5f5;
    --gris: #adb5bd;
    --gris-oscuro: #495057;
    --negro: #212529;
    --sombra: 0 5px 15px rgba(0, 0, 0, 0.1);
    --sombra-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --transicion: all 0.3s ease;
    --borde-radio: 10px;
    --borde-radio-lg: 20px;
    --espaciado-seccion: 6rem 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--negro);
    background-color: var(--blanco);
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    color: var(--primario);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--acento), var(--acento-secundario));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secundario);
}

p {
    margin-bottom: 1.5rem;
    color: var(--gris-oscuro);
}

a {
    text-decoration: none;
    color: var(--primario);
    transition: var(--transicion);
}

a:hover {
    color: var(--primario-claro);
}

ul {
    list-style-type: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header y Navegación */
.header {
    background-color: var(--blanco);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primario);
}

.menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: var(--secundario);
    font-weight: 500;
    padding: 0.5rem;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--acento), var(--acento-secundario));
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.btn-nav {
    background-color: var(--acento);
    color: var(--blanco) !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: var(--borde-radio);
    font-weight: 500;
    box-shadow: var(--sombra);
}

.btn-nav:hover {
    background-color: var(--acento-secundario);
    transform: translateY(-3px);
    box-shadow: var(--sombra-hover);
}

.btn-nav::after {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 2;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primario);
    margin: 5px 0;
    transition: var(--transicion);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
}

/* Sección Hero */
.hero {
    background: linear-gradient(135deg, rgba(0, 63, 92, 0.05) 0%, rgba(88, 80, 141, 0.05) 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    background: linear-gradient(to right, var(--primario), var(--secundario));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--gris-oscuro);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-decoration {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-weight: 500;
    border-radius: var(--borde-radio);
    transition: var(--transicion);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(to right, var(--acento), var(--acento-secundario));
    color: var(--blanco);
    box-shadow: var(--sombra);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--sombra-hover);
    color: var(--blanco);
}

.btn-secondary {
    background: transparent;
    color: var(--primario);
    border: 2px solid var(--primario);
}

.btn-secondary:hover {
    background-color: rgba(0, 63, 92, 0.05);
    color: var(--primario);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Sección Características */
.features {
    padding: var(--espaciado-seccion);
    background-color: var(--blanco);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--blanco);
    border-radius: var(--borde-radio);
    padding: 3rem 1.5rem;
    text-align: center;
    box-shadow: var(--sombra);
    transition: var(--transicion);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sombra-hover);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-card p {
    color: var(--gris-oscuro);
}

/* Sección Proceso */
.process {
    padding: var(--espaciado-seccion);
    background-color: var(--gris-claro);
}

.steps {
    max-width: 800px;
    margin: 4rem auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--acento), var(--acento-secundario));
    color: var(--blanco);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-connector {
    width: 3px;
    height: 40px;
    background: linear-gradient(to bottom, var(--acento), var(--acento-secundario));
    margin: 0 0 1rem 30px;
    opacity: 0.5;
}

.cta-container {
    text-align: center;
    margin-top: 3rem;
}

/* Sección Sobre Nosotros */
.about {
    padding: var(--espaciado-seccion);
    background-color: var(--blanco);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about h2 {
    text-align: left;
}

.about h2::after {
    left: 0;
    transform: none;
}

.benefits-list {
    margin-top: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--secundario);
}

.check-icon {
    flex-shrink: 0;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-decoration {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Footer */
.footer {
    background-color: var(--primario);
    color: var(--blanco);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo p {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
}

.footer-logo-svg {
    margin-bottom: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--blanco);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--acento);
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-column a:hover {
    color: var(--acento);
}

.copyright {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.keywords {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Diseño Responsivo */
@media (max-width: 992px) {
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about h2, .about h2::after {
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--blanco);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1;
    }
    
    .menu.active {
        right: 0;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-connector {
        height: 30px;
        width: 2px;
        margin: 0 auto 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-logo p {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
