/* CSS Variables for consistent theming */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #0f172a;
    --accent: #06b6d4;
    --light: #f8fafc;
    --gray-light: #e2e8f0;
    --gray: #64748b;
    --gray-dark: #334155;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 8px;
    --transition: all 0.3s ease;
    --nav-height: 60px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--light);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4 {
    color: var(--secondary);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Main content area */
main {
    flex: 1;
    padding-top: 0;
}

section {
    padding: 5rem 2rem;
}

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

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

.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Navigation - Clean & Professional */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
    height: var(--nav-height);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    margin-right: 8px;
    transition: var(--transition);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a.active {
    color: var(--secondary);
    font-weight: 600;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--secondary);
    border-radius: 1px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary);
    padding: 0.5rem;
    transition: var(--transition);
}

.menu-toggle:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.75rem 1.5rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        position: absolute;
        top: var(--nav-height);
        left: 0;
        box-shadow: var(--shadow);
        padding: 1rem 0;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
        padding: 0.75rem 0;
    }

    .nav-links a {
        display: block;
        padding: 0.5rem 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }

    .logo {
        font-size: 1rem;
    }
}

/* Hero Section - Apple-inspired */
.hero-full {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    padding: 8rem 2rem 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: var(--nav-height);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    pointer-events: none;
}

.hero-background::before,
.hero-background::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
}

.hero-background::before {
    top: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    animation: float1 25s ease-in-out infinite;
}

.hero-background::after {
    bottom: -15%;
    right: -10%;
    width: 800px;
    height: 800px;
    animation: float2 30s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 40px) scale(1.08); }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.hero-main {
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.hero-badge i {
    font-size: 0.875rem;
}

.motto {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    max-width: 650px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
}

.cta-button {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.875rem 1.75rem;
    border-radius: 980px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: -0.01em;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cta-button.primary:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.cta-button.whatsapp {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-button.whatsapp:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-side {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}

/* Service Carousel - Yellow-Green Theme */
.service-carousel-inline {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.carousel-container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-radius: var(--radius);
    padding: 2.5rem;
    border: 1px solid rgba(132, 204, 22, 0.15);
    box-shadow: var(--shadow-lg);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.carousel-container:hover {
    box-shadow: 0 12px 48px rgba(132, 204, 22, 0.12), 0 4px 12px rgba(250, 204, 21, 0.08);
    border-color: rgba(132, 204, 22, 0.25);
}

.carousel-track {
    position: relative;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.service-slide {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
}

.service-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.service-slide.prev {
    transform: translateX(-100%);
    opacity: 0;
}

.service-slide h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #3f6212;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.service-slide p {
    color: #65a30d;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.9375rem;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.slide-price {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4d7c0f;
    background: rgba(250, 204, 21, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    display: inline-block;
    letter-spacing: -0.01em;
    border: 1px solid rgba(132, 204, 22, 0.2);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    z-index: 1;
    position: relative;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(132, 204, 22, 0.25);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.dot.active {
    background: #84cc16;
    transform: scale(1.4);
}

.dot:hover {
    background: rgba(132, 204, 22, 0.6);
}

/* Page Sections - Consistent styling */
.services-section {
    padding: 8.2rem 2rem 5rem;
    background: var(--white);
    margin-top: var(--nav-height);
}

.page-section-alt {
    padding: 8rem 2rem 5rem;
    background: var(--light);
    margin-top: var(--nav-height);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.featured-service {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4rem 3rem;
    border-radius: var(--radius);
    margin-bottom: 4rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.featured-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.featured-service h2 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 2.25rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.featured-service h2 i {
    margin-right: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 2rem;
}

.featured-service p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.service-features {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-features li {
    padding: 0;
    font-size: 1rem;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.75rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--secondary);
    font-weight: 600;
}

.service-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
    margin-top: auto;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.15);
    transition: var(--transition);
}

.service-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.service-link::after {
    content: '→';
    font-weight: bold;
}

/* About Section */
.about-section {
    padding: 8rem 2rem 5rem;
    background: var(--light);
    margin-top: var(--nav-height);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* Downloads Section */
.downloads-section {
    padding: 8rem 2rem 5rem;
    background: var(--white);
    margin-top: var(--nav-height);
}

.downloads-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.download-item {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

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

.download-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.download-content {
    flex: 1;
}

.download-content h2 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

.sla-description {
    margin-bottom: 2rem;
}

.sla-section {
    margin-bottom: 2rem;
}

.sla-section h3 {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.sla-section p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 0;
}

.sla-benefits {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.sla-benefits li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

.sla-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.sla-download h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.sla-download p {
    color: var(--gray);
    margin-bottom: 0;
}

.download-details {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--gray);
    flex-wrap: wrap;
}

.file-type,
.file-size {
    background: rgba(37, 99, 235, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.download-footer {
    text-align: center;
    margin-bottom: 1.5rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.download-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.download-btn::before {
    content: '⬇';
    font-weight: bold;
}

.sla-help {
    background: var(--light);
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    margin-top: auto;
}

.sla-help p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.sla-help strong {
    color: var(--secondary);
}

/* Contact Section - Clean styling */
.contact-section {
    padding: 8rem 2rem 5rem;
    background: var(--white);
    margin-top: var(--nav-height);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: var(--light);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    transition: var(--transition);
    font-family: inherit;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-info {
    padding: 1rem 0;
}

.contact-item {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    min-width: 120px;
}

.contact-item p {
    margin: 0;
}

.whatsapp-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-link:hover {
    color: #25D366;
    text-decoration: underline;
}

.whatsapp-link::before {
    content: '\f232';
    font-family: 'Font Awesome 6 Brands';
    font-size: 1.1rem;
}

.email-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.email-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.email-link::before {
    content: '\f0e0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.1rem;
}

/* Footer - Consistent styling */
footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 2.5rem 2rem;
    margin-top: auto;
    font-size: 0.875rem;
}

footer p {
    margin-bottom: 0.25rem;
}

footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.75rem 1.5rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        position: absolute;
        top: 60px;
        left: 0;
        box-shadow: var(--shadow);
        padding: 1rem 0;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
        padding: 0.75rem 0;
    }

    .nav-links a {
        display: block;
        padding: 0.5rem 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-full {
        padding: 6rem 1.5rem 4rem;
        min-height: auto;
    }

    .hero-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .hero-main {
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .motto {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .carousel-container {
        padding: 2rem 1.5rem;
        min-height: 280px;
    }

    .carousel-track {
        height: 200px;
    }

    .service-slide h4 {
        font-size: 1.375rem;
    }

    .service-slide p {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-container {
        padding: 0.75rem 1rem;
    }

    .logo {
        font-size: 1rem;
    }
}

.service-carousel-inline .carousel-container .bg-object-3 {
    position: absolute;
    top: 70%;
    left: 20%;
    width: 35px;
    height: 35px;
    background: radial-gradient(circle, rgba(163, 230, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatObject4 20s ease-in-out infinite;
    pointer-events: none;
}

.service-carousel-inline .carousel-container:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 30px -6px rgba(0, 0, 0, 0.08), 0 4px 12px -3px rgba(0, 0, 0, 0.05);
    border-color: rgba(132, 204, 22, 0.22);
}

.service-carousel-inline .carousel-track {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.service-carousel-inline .service-slide {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 1;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    box-sizing: border-box;
}

.service-carousel-inline .service-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.service-carousel-inline .service-slide.prev {
    transform: translateX(-100%);
}

.service-carousel-inline .service-slide h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #78350f;
    font-weight: 600;
    transform: translateY(0);
    transition: all 0.25s ease 0.05s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.01em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.2;
}

.service-carousel-inline .service-slide p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.875rem;
    transform: translateY(0);
    transition: all 0.25s ease 0.1s;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    flex-shrink: 0;
    min-height: 2.5rem;
}

.service-carousel-inline .slide-price {
    font-size: 0.8rem;
    font-weight: 600;
    color: #65a30d;
    background: rgba(251, 191, 36, 0.1);
    padding: 0.4rem 0.875rem;
    border-radius: 100px;
    display: inline-block;
    transform: translateY(0);
    transition: all 0.25s ease 0.15s;
    white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.01em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border: 1px solid rgba(132, 204, 22, 0.15);
    flex-shrink: 0;
}

.service-carousel-inline .service-slide.active .slide-price {
    background: rgba(251, 191, 36, 0.15);
    transform: translateY(0);
    color: #4d7c0f;
}

@keyframes floatObject1 {
    0%, 100% { 
        transform: translateY(0) translateX(0) scale(1); 
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-8px) translateX(5px) scale(1.1); 
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-4px) translateX(-3px) scale(0.95); 
        opacity: 0.7;
    }
    75% { 
        transform: translateY(6px) translateX(2px) scale(1.05); 
        opacity: 0.9;
    }
}

@keyframes floatObject2 {
    0%, 100% { 
        transform: translateY(0) translateX(0) scale(1); 
        opacity: 0.7;
    }
    33% { 
        transform: translateY(-6px) translateX(-4px) scale(1.08); 
        opacity: 0.85;
    }
    66% { 
        transform: translateY(4px) translateX(3px) scale(0.92); 
        opacity: 0.75;
    }
}

@keyframes floatObject3 {
    0%, 100% { 
        transform: translateY(0) translateX(0) scale(1); 
        opacity: 0.65;
    }
    25% { 
        transform: translateY(5px) translateX(-3px) scale(1.12); 
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-7px) translateX(4px) scale(0.94); 
        opacity: 0.7;
    }
    75% { 
        transform: translateY(3px) translateX(-2px) scale(1.06); 
        opacity: 0.85;
    }
}

@keyframes floatObject4 {
    0%, 100% { 
        transform: translateY(0) translateX(0) scale(1); 
        opacity: 0.6;
    }
    20% { 
        transform: translateY(-4px) translateX(3px) scale(1.05); 
        opacity: 0.75;
    }
    40% { 
        transform: translateY(6px) translateX(-2px) scale(0.96); 
        opacity: 0.65;
    }
    60% { 
        transform: translateY(-3px) translateX(4px) scale(1.08); 
        opacity: 0.8;
    }
    80% { 
        transform: translateY(2px) translateX(-1px) scale(1.02); 
        opacity: 0.7;
    }
}

.service-carousel-inline .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.service-carousel-inline .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(148, 163, 184, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-carousel-inline .dot.active {
    background: #3b82f6;
    transform: scale(1.3);
}

.service-carousel-inline .dot:hover {
    background: rgba(59, 130, 246, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.cta-button.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4), 0 4px 6px -2px rgba(59, 130, 246, 0.3);
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.025em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.5), 0 10px 20px -5px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.cta-button.whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #86efac;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(37, 211, 102, 0.3);
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.025em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    backdrop-filter: blur(10px);
}

.cta-button.whatsapp:hover {
    background: rgba(37, 211, 102, 0.25);
    color: #bbf7d0;
    transform: translateY(-3px);
    border-color: rgba(37, 211, 102, 0.5);
    box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.3);
}

/* Services Preview Section */
.services-preview {
    padding: 6rem 2rem;
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.service-card.premium {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}

.service-card.premium:hover {
    transform: scale(1.05) translateY(-10px);
}

.card-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.card-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content {
    padding: 0 2rem 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.card-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-features {
    list-style: none;
    margin-bottom: 2rem;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-dark);
}

.card-features i {
    color: var(--primary);
    font-size: 0.9rem;
}

.card-price {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.period {
    color: var(--gray);
    font-size: 0.9rem;
}

.card-cta {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.services-footer {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.services-footer p {
    color: var(--gray-dark);
    font-size: 1.1rem;
}

.services-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.services-footer a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0 V100 Q500,50 1000,100 V0 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
    background-position: center;
}

.hero .motto {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    opacity: 0.9;
    animation: bounceUpDown 2s ease-in-out infinite;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: none;
    cursor: pointer;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--light);
}

.cta-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Profile page specific styles */
.profile-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.profile-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(37, 99, 235, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.profile-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.profile-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1d4ed8;
    margin-bottom: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.profile-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

.profile-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.profile-section:nth-child(even) {
    background: #ffffff;
}

.profile-section:nth-child(odd) {
    background: #f8fafc;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.01em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 2px;
}

.section-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.feature-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.mission-box {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.mission-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.mission-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    z-index: 2;
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

.why-choose-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.why-choose-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.why-choose-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.why-choose-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.why-choose-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

@media (max-width: 768px) {
    .profile-title {
        font-size: 2rem;
    }
    
    .profile-section {
        padding: 3rem 1rem;
    }
    
    .feature-list li {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-list li .feature-icon {
        margin: 0 auto 1rem auto;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Section */
#services {
    background: var(--white);
}

.featured-service {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}

.featured-service h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border-top: 4px solid var(--primary);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* About Section */
#about {
    background: var(--light);
}

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

.about-text p {
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Downloads Section */
#downloads {
    background: var(--white);
    min-height: 70vh;
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

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

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.download-item {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.download-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.download-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
}

.download-content {
    flex: 1;
}

.download-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    font-weight: 600;
}

.download-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sla-description {
    margin-bottom: 2rem;
}

.sla-section {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.sla-section h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.sla-section p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.sla-benefits {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.sla-benefits li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
    font-size: 0.95rem;
}

.sla-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.sla-download {
    margin-bottom: 1.5rem;
}

.sla-download h4 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.sla-download p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.sla-help {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.sla-help p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--gray-dark);
}

.sla-help strong {
    color: var(--primary);
}

.download-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.file-type,
.file-size {
    font-size: 0.9rem;
    color: var(--gray-dark);
    background: var(--light);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 500;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.download-btn.disabled {
    background: var(--gray);
    cursor: not-allowed;
    opacity: 0.6;
}

.download-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

.downloads-info {
    margin-top: 3rem;
}

.info-card {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 2.5rem;
    margin: 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.2);
}

.info-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.info-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--primary);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Contact Section */
#contact {
    background: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: var(--light);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-info {
    padding: 1rem 0;
}

.contact-item {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    min-width: 120px;
}

.contact-item p {
    margin: 0;
}

.whatsapp-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-link:hover {
    color: #25D366;
    text-decoration: underline;
}

.whatsapp-link::before {
    content: '\f232';
    font-family: 'Font Awesome 6 Brands';
    font-size: 1.1rem;
}

.email-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.email-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.email-link::before {
    content: '\f0e0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.1rem;
}

/* Loading spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Emergency contact section */
.emergency-contact {
    background: linear-gradient(135deg, #fef3c7 0%, #fef9e7 100%);
    border: 1px solid #fbbf24;
    border-radius: var(--radius);
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.emergency-contact h3 {
    color: #92400e;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.emergency-contact p {
    color: #78350f;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.emergency-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.emergency-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Error messages for form validation */
.error-message {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Section intro text */
.section-intro {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes slideInDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Footer */
footer {
    background: var(--secondary);
    color: var(--white);
    text-align: center;
    padding: 3rem 2rem;
    margin-top: auto;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background: var(--white);
        position: absolute;
        top: 70px;
        left: 0;
        box-shadow: var(--shadow);
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 6rem 1rem;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }

    .hero-main {
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero .motto {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .service-carousel-inline {
        margin: 0 auto;
        max-width: 100%;
    }

    .service-carousel-inline .carousel-container {
        padding: 2rem 1.5rem;
        min-height: 260px;
    }

    .service-carousel-inline .carousel-track {
        height: 160px;
    }

    .service-carousel-inline .slide-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin: 0 auto 1rem;
    }

    .service-carousel-inline .service-slide h4 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .service-carousel-inline .service-slide p {
        font-size: 0.95rem;
        max-width: 280px;
        margin-bottom: 1rem;
    }

    .service-carousel-inline .slide-price {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .service-carousel-inline .carousel-dots {
        margin-top: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }

    .cta-button.primary,
    .cta-button.whatsapp {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .download-icon {
        margin: 0 auto;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .info-card {
        padding: 2rem;
    }

    .service-carousel {
        margin: 2rem auto 0;
        max-width: 350px;
    }

    .carousel-container {
        padding: 1.5rem;
    }

    .slide-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-slide h4 {
        font-size: 1.25rem;
    }

    .service-slide p {
        font-size: 0.9rem;
    }

    .slide-price {
        font-size: 1.1rem;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button.primary,
    .cta-button.secondary {
        width: 100%;
        max-width: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card.premium {
        transform: none;
    }

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

    .card-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .card-content {
        padding: 0 1.5rem 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 6rem 1rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    section {
        padding: 3rem 1rem;
    }
}

/* BOUNCE ANIMATION */
@keyframes bounceUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}
