/* DeepnudeES.love - Spanish Website CSS */

/* Variables */
:root {
    /* Unique Spanish-inspired color palette */
    --primary: #F39C12; /* Golden orange */
    --secondary: #C0392B; /* Spanish red */
    --dark: #2C3E50; /* Dark blue-gray */
    --light: #ECF0F1; /* Light gray */
    --accent: #8E44AD; /* Purple accent */
    --gradient-start: #34495E; /* Midnight blue */
    --gradient-end: #2C3E50; /* Dark blue-gray */
    
    /* Typography */
    --font-main: 'Segoe UI', Arial, sans-serif;
    --font-heading: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Borders */
    --border-radius: 8px;
    --border-radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

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

a:hover {
    color: var(--secondary);
}

ul {
    list-style: none;
}

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

/* Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-heading {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-heading h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

.section-heading .subheading {
    color: var(--secondary);
    font-size: 1.2rem;
    font-weight: 500;
}

.section-heading.light h2 {
    color: var(--light);
}

.section-heading.light .subheading {
    color: var(--light);
    opacity: 0.9;
}

.diagonal-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.diagonal-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--dark);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: var(--spacing-md);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.animated {
    position: relative;
    overflow: hidden;
}

.animated::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.animated:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.cta-center {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* Header & Navigation */
.main-header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: rgba(44, 62, 80, 0.95);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-md) 0;
}

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

.logo a {
    display: block;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-svg {
    display: block;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: var(--spacing-lg);
}

.main-nav ul li a {
    color: var(--light);
    font-weight: 500;
    position: relative;
}

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

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--light);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 650px;
}

.hero-content {
    max-width: 600px;
    padding: var(--spacing-xl) 0;
}

.hero h1 {
    color: white;
    margin-bottom: var(--spacing-lg);
    font-size: 3.2rem;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.2;
}

.shape-1 {
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    border-radius: 53% 47% 32% 68% / 27% 58% 42% 73%;
    background: var(--primary);
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    top: 40%;
    right: 10%;
    width: 200px;
    height: 200px;
    border-radius: 39% 61% 70% 30% / 58% 31% 69% 42%;
    background: var(--secondary);
    animation: float 6s ease-in-out infinite;
    animation-delay: 1s;
}

.shape-3 {
    bottom: 10%;
    left: 20%;
    width: 250px;
    height: 250px;
    border-radius: 38% 62% 64% 36% / 43% 35% 65% 57%;
    background: var(--accent);
    animation: float 10s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

.hero-visual {
    position: relative;
    height: 500px;
}

.hero-svg {
    position: absolute;
    right: -100px;
    top: -50px;
    height: 600px;
    width: 600px;
    opacity: 0.9;
}

/* About Section */
.about-section {
    background-color: #fff;
}

.about-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    align-items: center;
    justify-content: space-between;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-metrics {
    display: flex;
    gap: var(--spacing-lg);
}

.metric-item {
    text-align: center;
    padding: var(--spacing-lg);
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    width: 150px;
    transition: all var(--transition-normal);
}

.metric-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.metric-label {
    color: var(--dark);
    font-weight: 500;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    position: relative;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape-4 {
    top: 10%;
    right: 5%;
    width: 250px;
    height: 250px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: var(--primary);
    animation: float 10s ease-in-out infinite;
    opacity: 0.1;
}

.shape-5 {
    bottom: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    border-radius: 39% 61% 39% 61% / 50% 50% 50% 50%;
    background: var(--secondary);
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
    opacity: 0.1;
}

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

.feature-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    backdrop-filter: blur(5px);
    text-align: center;
}

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

.feature-icon {
    margin-bottom: var(--spacing-md);
}

.feature-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    opacity: 0.9;
}

/* How to Use Section */
.how-to-section {
    background-color: #fff;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: var(--spacing-xl);
}

.step {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 250px;
    margin-bottom: var(--spacing-lg);
}

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

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

.step-connector {
    flex: 0 0 50px;
    height: 4px;
    background-color: var(--primary);
    position: relative;
    top: 30px;
    margin: 0 var(--spacing-md);
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f9f9f9;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.testimonial {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark);
}

/* FAQ Section */
.faq-section {
    background-color: #fff;
}

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

.faq-item {
    margin-bottom: var(--spacing-md);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    background-color: var(--light);
    padding: var(--spacing-md) var(--spacing-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background-color: #e3e7e8;
}

.faq-question h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    transition: all var(--transition-fast);
}

.faq-answer {
    background-color: white;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: var(--spacing-md) var(--spacing-lg);
    max-height: 1000px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.cta-content h2 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    margin-bottom: var(--spacing-lg);
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Footer */
.main-footer {
    background-color: var(--dark);
    color: var(--light);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: var(--spacing-xl);
}

.footer-branding {
    flex: 0 0 300px;
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    display: block;
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    opacity: 0.7;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
}

.footer-column {
    flex: 1;
    min-width: 150px;
    margin-bottom: var(--spacing-lg);
}

.footer-column h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-xs);
}

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

.footer-column ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-column ul li a {
    color: var(--light);
    opacity: 0.7;
    transition: all var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--primary);
    opacity: 1;
}

.footer-keywords li {
    color: var(--light);
    opacity: 0.5;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-favicon {
    margin-right: var(--spacing-md);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 2rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--dark);
        padding: var(--spacing-md) 0;
        transform: translateY(-150%);
        transition: transform var(--transition-normal);
        z-index: 999;
        box-shadow: var(--shadow-md);
    }
    
    .main-nav.active {
        transform: translateY(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav ul li {
        margin: var(--spacing-md) 0;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .step-connector {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-metrics {
        flex-direction: column;
        align-items: center;
    }
    
    .about-text {
        text-align: center;
        margin-bottom: var(--spacing-lg);
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .section-heading h2 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-favicon {
        margin-bottom: var(--spacing-md);
        margin-right: 0;
    }
}
