/* 
   undressaipornCO.love - Generador de Desnudos con IA para Colombia
   Diseño único colombiano con colores de la bandera y elementos tradicionales
*/

:root {
    /* Paleta de colores colombiana */
    --yellow: #FCD116;
    --blue: #003893;
    --red: #CE1126;
    --dark: #111111;
    --light: #FFFFFF;
    --text: #333333;
    --gradient-primary: linear-gradient(135deg, var(--red) 0%, #FF5A5F 100%);
    --gradient-secondary: linear-gradient(135deg, var(--yellow) 0%, #FFA726 100%);
    --card-bg: rgba(255, 255, 255, 0.9);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 10px;
}

/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: #f9f9f9;
    overflow-x: hidden;
    position: relative;
}

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

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dark);
}

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

p {
    margin-bottom: 1.5rem;
}

/* Fondo con patrón inspirado en arte colombiano */
.colombia-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f9f9f9;
    z-index: -1;
    opacity: 0.5;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627,25.73 (33.2%25),0 (40%25),0 (46.8%25),0 (53.6%25)' fill='%23003893' fill-opacity='0.03'/%3E%3C/svg%3E");
}

/* Header y Navegación */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    width: 50px;
    height: 50px;
}

.brand-name {
    margin-left: 0.75rem;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--dark);
}

.highlight {
    color: var(--red);
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a:not(.nav-button)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

.nav-button {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(206, 17, 38, 0.25);
    transition: all 0.3s ease;
}

.nav-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(206, 17, 38, 0.4);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--dark);
    margin: 6px 0;
    transition: all 0.4s ease;
}

/* Hero sección */
.hero {
    padding: 7rem 0 6rem;
    position: relative;
    overflow: hidden;
}

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

/* Bandera de Colombia */
.country-flag {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.flag-yellow, 
.flag-blue, 
.flag-red {
    display: inline-block;
    height: 10px;
    width: 20px;
    margin-right: 3px;
}

.flag-yellow {
    background-color: var(--yellow);
    height: 16px;
}

.flag-blue {
    background-color: var(--blue);
    height: 8px;
}

.flag-red {
    background-color: var(--red);
    height: 8px;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

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

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    background-color: rgba(252, 209, 22, 0.15);
    padding: 0.6rem 1rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    color: var(--blue);
}

.cta-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(206, 17, 38, 0.3);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(206, 17, 38, 0.4);
    color: white;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(206, 17, 38, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(206, 17, 38, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(206, 17, 38, 0.3);
    }
}

/* Hero Visual - Arte inspirado en Colombia */
.hero-visual {
    position: relative;
}

.hero-art {
    position: relative;
    height: 400px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.art-shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--yellow);
    top: -60px;
    right: -60px;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--blue);
    bottom: -40px;
    left: 20%;
    opacity: 0.8;
}

.shape-3 {
    width: 180px;
    height: 180px;
    background: var(--red);
    top: 30%;
    left: -60px;
    opacity: 0.8;
}

.art-circle {
    position: absolute;
    border: 4px solid;
    border-radius: 50%;
}

.circle-1 {
    width: 140px;
    height: 140px;
    border-color: var(--red);
    top: 30px;
    left: 60px;
    opacity: 0.6;
}

.circle-2 {
    width: 80px;
    height: 80px;
    border-color: var(--blue);
    bottom: 60px;
    right: 40px;
    opacity: 0.6;
}

.ai-icon {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Section headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #666;
}

/* Benefits sección */
.benefits {
    padding: 8rem 0;
    background-color: #f5f5f5;
    position: relative;
    z-index: 1;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-color: white;
    transform: skewY(-3deg);
    transform-origin: top right;
    z-index: -1;
}

.benefits::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-color: white;
    transform: skewY(3deg);
    transform-origin: bottom left;
    z-index: -1;
}

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

.benefit-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    text-align: center;
    border-top: 3px solid var(--yellow);
}

.benefit-card:nth-child(2) {
    border-top-color: var(--blue);
}

.benefit-card:nth-child(3) {
    border-top-color: var(--red);
}

.benefit-card:nth-child(4) {
    border-top-color: var(--dark);
}

.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    margin-bottom: 0;
}

/* How it works */
.how-works {
    padding: 8rem 0;
    background-color: white;
}

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

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.step:last-child {
    margin-bottom: 3rem;
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(252, 209, 22, 0.2);
    position: relative;
}

.step-icon::after {
    content: '';
    position: absolute;
    top: 90%;
    left: 50%;
    width: 3px;
    height: 60px;
    background-color: rgba(252, 209, 22, 0.3);
    transform: translateX(-50%);
}

.step:last-child .step-icon::after {
    display: none;
}

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

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

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

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

/* Testimonials */
.testimonials {
    padding: 8rem 0;
    background-color: #f9f9f9;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-color: white;
    transform: skewY(-3deg);
    transform-origin: top left;
    z-index: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.testimonial {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.testimonial.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.quote-mark {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 5rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: var(--red);
    opacity: 0.1;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.testimonial-author {
    position: relative;
    z-index: 1;
}

.stars {
    color: #FFB100;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.name {
    font-weight: 600;
}

/* FAQ section */
.faq {
    padding: 8rem 0;
    background-color: white;
}

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

.faq-item {
    background: #f9f9f9;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    border-left: 4px solid var(--blue);
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--blue);
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: #666;
}

/* Final CTA */
.final-cta {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--yellow) 0%, #FFA726 100%);
    text-align: center;
    color: var(--dark);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-color: white;
    transform: skewY(-3deg);
    transform-origin: top right;
    z-index: 0;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.final-cta p {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.final-cta .cta-button {
    position: relative;
    z-index: 1;
    background: var(--gradient-primary);
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.5rem;
}

.footer-logo {
    display: block;
}

.footer-links h4, 
.footer-legal h4 {
    color: var(--yellow);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

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

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

.footer-bottom p {
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

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

/* Media Queries */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.7rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .hero-art {
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .nav-toggle {
        display: block;
        z-index: 101;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        z-index: 100;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-icon {
        margin: 0 auto;
    }
    
    .step-icon::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .testimonials-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}
