/* Estilos para ai-undressing.site - Diseño en español */
:root {
    --color-primary: #E83F6F;     /* Rosa intenso - diferente al sitio anterior */
    --color-secondary: #2274A5;   /* Azul profundo */
    --color-tertiary: #3CAEA3;    /* Verde agua */
    --color-accent: #F6D55C;      /* Amarillo */
    --color-dark: #173753;        /* Azul oscuro */
    --color-light: #f8f9fa;       /* Blanco grisáceo */
    --color-text: #333;
    --color-text-light: #f8f9fa;
    --border-radius: 8px;
    --shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-light);
    font-size: 16px;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Tipografía */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: #666;
}

.section-title {
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
    color: var(--color-dark);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--color-primary);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Header y navegación */
header {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-icon {
    margin-right: 10px;
}

.site-title {
    font-size: 1.5rem;
    margin: 0;
    color: var(--color-primary);
    font-weight: 800;
}

.main-nav .nav-list {
    display: flex;
}

.main-nav .nav-list li {
    margin-left: 25px;
}

.main-nav .nav-list a {
    color: var(--color-dark);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
}

.main-nav .nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.main-nav .nav-list a:hover {
    color: var(--color-primary);
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(34, 116, 165, 0.1), rgba(232, 63, 111, 0.1));
    position: relative;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-title {
    font-size: 3rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #666;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
    margin-top: 30px;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(232, 63, 111, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(232, 63, 111, 0.4);
    color: white;
}

.cta-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.cta-wrapper {
    margin-top: 2.5rem;
}

.cta-info {
    display: inline-block;
    margin: 10px 0 0 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Features section */
.features {
    padding: 100px 0;
    background-color: white;
}

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

.feature-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--color-dark);
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* How it works section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(34, 116, 165, 0.05), rgba(60, 174, 163, 0.05));
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    background: var(--color-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 25px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 10px;
    color: var(--color-dark);
}

.step-content p {
    color: #666;
}

/* Try now section */
.try-now {
    padding: 100px 0;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.try-now h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.try-now p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.try-now .cta-button {
    background: white;
    color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.try-now .cta-button:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.guarantee svg {
    margin-right: 10px;
}

.guarantee p {
    margin: 0;
    font-size: 0.9rem;
}

/* Keywords section */
.keywords {
    padding: 60px 0;
    background: #fff;
}

.keyword-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.keyword-cloud span {
    background: #f5f5f5;
    color: #666;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.keyword-cloud span:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo svg {
    margin-right: 10px;
}

.footer-logo span {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-nav li {
    margin-left: 30px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-nav a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
}

.copyright, .disclaimer {
    margin: 5px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        margin-top: 50px;
    }
    
    .try-now h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .nav-list li {
        margin: 15px 0 !important;
    }
    
    .menu-toggle.active span:first-child {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:last-child {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content, .hero-visual {
        width: 100%;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-nav {
        margin-top: 30px;
    }
    
    .footer-nav ul {
        justify-content: center;
    }
    
    .footer-nav li {
        margin: 10px 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .try-now h2 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .cta-large {
        padding: 15px 30px;
        font-size: 1rem;
    }
}
