/* 
 * Estilos para nudifyerCO.site
 * Colores principales: Turquesa (#00BCD4) y Morado (#673AB7)
 */

:root {
    --primary: #00BCD4;
    --secondary: #673AB7;
    --dark: #212121;
    --light: #F5F5F5;
    --gray: #757575;
    --light-gray: #EEEEEE;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --shadow: 0 5px 20px rgba(0, 188, 212, 0.15);
    --border-radius: 10px;
    --transition: all 0.3s ease;
}

/* Reset y estilos básicos */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.accent-text {
    color: var(--primary);
    font-weight: 700;
}

/* Barra de promoción */
.promo-bar {
    background-color: var(--secondary);
    color: white;
    padding: 10px 0;
    text-align: center;
}

.promo-text {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.promo-badge {
    background-color: white;
    color: var(--secondary);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Header y navegación */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.logo-accent {
    color: var(--primary);
}

/* Menú hamburguesa */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 10;
}

.menu-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--primary);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.menu-icon span:nth-child(1) { top: 0; }
.menu-icon span:nth-child(2) { top: 9px; }
.menu-icon span:nth-child(3) { top: 18px; }

.menu-toggle:checked ~ .menu-icon span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
}

.menu-toggle:checked ~ .menu-icon span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu-toggle:checked ~ .menu-icon span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}

/* Navegación */
.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-list a:not(.nav-cta):hover:after {
    width: 100%;
}

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

.nav-cta {
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 188, 212, 0.3);
}

.nav-cta:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 188, 212, 0.4);
}

/* Sección Hero */
.hero {
    padding: 80px 0;
    position: relative;
    background-color: white;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 188, 212, 0.1), transparent 60%);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-tagline {
    margin-bottom: 20px;
}

.tag {
    display: inline-block;
    background-color: var(--light-gray);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Sección de Beneficios */
.benefits {
    padding: 100px 0;
    background-color: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.benefit-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 188, 212, 0.2);
}

.card-icon {
    margin: 0 auto 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.benefit-card p {
    color: var(--gray);
}

/* Sección de Proceso */
.process {
    padding: 100px 0;
    background-color: white;
}

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

.steps-container:before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 38px;
    width: 2px;
    background-color: var(--light-gray);
    z-index: 0;
}

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

.step-number {
    background: var(--gradient);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    margin-right: 30px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-icon {
    margin-bottom: 5px;
}

.step-content h3 {
    font-size: 1.4rem;
    color: var(--dark);
}

.step-content p {
    color: var(--gray);
}

.process-cta {
    text-align: center;
    margin-top: 60px;
}

/* Sección de Preguntas */
.faq {
    padding: 100px 0;
    background-color: var(--light);
}

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

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.toggle-icon {
    position: relative;
    width: 18px;
    height: 18px;
}

.toggle-icon:before, .toggle-icon:after {
    content: '';
    position: absolute;
    background-color: var(--primary);
    transition: var(--transition);
}

.toggle-icon:before {
    width: 18px;
    height: 2px;
    top: 8px;
    left: 0;
}

.toggle-icon:after {
    width: 2px;
    height: 18px;
    left: 8px;
    top: 0;
}

.faq-item.active .toggle-icon:after {
    transform: rotate(90deg);
    opacity: 0;
}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .answer {
    max-height: 200px;
    padding: 0 30px 20px;
}

.answer p {
    color: var(--gray);
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 15px 0 5px;
    color: var(--primary);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-nav h4, .footer-legal h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
}

.footer-nav h4:after, .footer-legal h4:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
    left: 0;
    bottom: -8px;
}

.footer-nav ul, .footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a, .footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-nav a:hover, .footer-legal a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: 30px;
    }
    
    .hero-illustration {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-nav h4:after, .footer-legal h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Menú móvil */
    .menu-icon {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100%;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 30px;
        transition: 0.3s;
        z-index: 5;
    }
    
    .nav-list {
        flex-direction: column;
        text-align: left;
        gap: 20px;
    }
    
    .menu-toggle:checked ~ .main-nav {
        right: 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container:before {
        display: none;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
