/* ===== CSS Reset & Variables ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-red: #EF4444;
    --dark-red: #DC2626;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --border-color: #E5E7EB;

    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
        padding: 0 40px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1440px;
    }
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--bg-white);
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    animation: slideDown 0.6s ease-out;
    transition: all 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-dark);
}

.logo-text {
    letter-spacing: -0.5px;
}

.logo-img {
    height: 160px;
    width: auto;
    display: block;
    animation: fadeInLeft 0.6s ease-out;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05) rotate(-2deg);
    filter: drop-shadow(0 4px 8px rgba(239, 68, 68, 0.3));
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    animation: fadeInDown 0.6s ease-out forwards;
}

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

.nav-link:nth-child(1) { animation-delay: 0.1s; }
.nav-link:nth-child(2) { animation-delay: 0.2s; }
.nav-link:nth-child(3) { animation-delay: 0.3s; }
.nav-link:nth-child(4) { animation-delay: 0.4s; }
.nav-link:nth-child(5) { animation-delay: 0.5s; }

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-dark);
    transform: translateY(-2px);
}

.nav-link.active::before {
    width: 100%;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-red);
    animation: expandWidth 0.3s ease-out;
}

@keyframes expandWidth {
    from {
        width: 0;
        left: 50%;
    }
    to {
        width: 100%;
        left: 0;
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInRight 0.6s ease-out 0.3s backwards;
}

.menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-btn:hover {
    background: var(--bg-light);
    transform: scale(1.05);
    border-color: var(--primary-red);
}

.menu-btn:hover span:nth-child(1) {
    transform: translateX(2px);
}

.menu-btn:hover span:nth-child(2) {
    transform: translateX(-2px);
}

.menu-btn:hover span:nth-child(3) {
    transform: translateX(2px);
}

.login-btn {
    background: var(--text-dark);
    color: var(--bg-white);
    border: none;
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInRight 0.6s ease-out 0.4s backwards;
    position: relative;
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-red);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.login-btn:hover::before {
    width: 200%;
    height: 200%;
}

.login-btn:hover {
    background: var(--primary-red);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.login-btn span {
    position: relative;
    z-index: 1;
}

/* ===== Hero Section ===== */
.hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - var(--header-height));
    background: var(--bg-white);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== Hero Left ===== */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    border: 2px solid #EF4444;
    padding: 8px 16px;
    border-radius: 24px;
    width: fit-content;
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    animation: fadeInUp 0.8s ease-out;
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.badge-icon {
    font-size: 16px;
}

/* Hero Title */
.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -2.5px;
    margin: 0;
    margin-bottom: 4px;
    animation: fadeInLeft 1s ease-out 0.2s backwards;
}

.hero-title .emoji {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    font-size: 60px;
}

.hero-title:hover {
    background: linear-gradient(135deg, var(--primary-red) 0%, #DC2626 50%, var(--text-dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite, fadeInLeft 1s ease-out 0.2s backwards;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
    animation: fadeInLeft 1s ease-out 0.4s backwards;
}

.hero-subtitle-secondary {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
    font-weight: 500;
    animation: fadeInLeft 1s ease-out 0.6s backwards;
}

/* CTA Buttons */
.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-family: var(--font-primary);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    background-size: 200% auto;
    color: var(--bg-white);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    animation: glow 2s ease-in-out infinite;
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--text-gray);
}

.btn-tertiary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-tertiary:hover {
    background: var(--bg-white);
    border-color: var(--primary-red);
    color: var(--primary-red);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 56px;
    margin-top: 24px;
    align-items: center;
    animation: fadeInUp 1s ease-out 1s backwards;
}

/* Ocultar badge de experiencia en desktop */
.experience-badge-mobile {
    display: none;
}

/* Rating Section */
.rating-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stars {
    display: flex;
    gap: 4px;
}

.star {
    font-size: 20px;
}

.rating-text {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

/* Customers Section */
.customers-section {
    display: flex;
    gap: 16px;
    align-items: center;
}

.avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--bg-white);
    margin-left: -12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar:first-child {
    margin-left: 0;
}

.customers-info {
    display: flex;
    flex-direction: column;
}

.customers-count {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.customers-label {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

/* ===== Hero Right ===== */
.hero-right {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Speed Badge */
.speed-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--bg-white);
    padding: 14px 26px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 140px;
    animation: float 3s ease-in-out infinite;
}

.speed-label {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}

.speed-value {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Hero Image */
.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-placeholder {
    width: 100%;
    height: 480px;
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 50%, #FCA5A5 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(239, 68, 68, 0.2);
}

.placeholder-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.person {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    opacity: 0.3;
}

.person-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 15%;
}

.person-2 {
    width: 140px;
    height: 140px;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
}

.person-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 15%;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: float-card 4s ease-in-out infinite;
    transition: all 0.4s ease;
    z-index: 5;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

.floating-card:hover {
    transform: translateY(-20px) scale(1.05) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: none;
    z-index: 15;
}

.card-top {
    top: 0px;
    right: -30px;
    width: 200px;
    overflow: hidden;
    animation-delay: 0.5s;
}

.card-top img {
    width: 100%;
    height: 110px;
    object-fit: cover;
}

.card-image {
    width: 100%;
    height: 110px;
    background: linear-gradient(135deg, #FCA5A5 0%, #EF4444 100%);
    position: relative;
}

.card-content {
    padding: 14px;
}

.card-content h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
}

.card-bottom {
    bottom: 40px;
    right: -40px;
    width: 220px;
    animation-delay: 1s;
}

.card-content-small {
    padding: 18px;
}

.card-content-small p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
}

/* ===== Background Waves ===== */
.waves-background {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.waves-background svg {
    width: 100%;
    height: 100%;
}

/* ===== Brands Section ===== */
.brands-section {
    padding: 60px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.brands-wrapper {
    display: flex;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.brand-logo-box {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 24px 48px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    border: 2px solid var(--border-color);
}

.brand-logo-box:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-red);
}

.brand-logo-img {
    height: 60px !important;
    width: auto !important;
    max-height: 60px !important;
    max-width: 100% !important;
    object-fit: contain !important;
    display: block !important;
    transition: transform 0.3s ease;
    filter: grayscale(0);
}

.brand-logo-box:hover .brand-logo-img {
    transform: scale(1.1);
}

/* ===== Responsive Design ===== */

/* Desktop Grande - Pantallas > 1400px */
@media (min-width: 1400px) {
    .hero-content {
        gap: 100px;
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 72px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-right {
        height: 600px;
    }
    
    .brands-section {
        padding: 70px 0;
    }
    
    .brands-wrapper {
        max-width: 1200px;
        gap: 32px;
    }
    
    .brand-logo-box {
        padding: 28px 56px;
    }
    
    .brand-logo-img {
        height: 70px !important;
        max-height: 70px !important;
    }
}

/* Tablet y Desktop pequeño - 1024px a 1200px */
@media (max-width: 1200px) {
    .hero-content {
        gap: 60px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-right {
        height: 500px;
    }
    
    .card-top {
        right: -20px;
        width: 180px;
    }
    
    .card-bottom {
        right: -30px;
        width: 200px;
    }
}

/* Tablet - max-width: 1024px */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-right {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 52px;
    }
    
    .card-top,
    .card-bottom {
        right: 10px;
    }
    
    .speed-badge {
        left: 10px;
    }
    
    .brands-section {
        padding: 50px 0;
    }
    
    .brands-wrapper {
        gap: 20px;
    }
    
    .brand-logo-box {
        padding: 20px 36px;
    }
    
    .brand-logo-img {
        height: 50px !important;
        max-height: 50px !important;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .logo-img {
        height: 95px;
    }

    .hero {
        min-height: 100vh;
        padding-top: var(--header-height);
        padding-bottom: 40px;
        display: flex;
        align-items: center;
        position: relative;
        background: linear-gradient(
            rgba(31, 41, 55, 0.75),
            rgba(31, 41, 55, 0.85)
        ), url('images/hero/hero-main-image.png');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: -1.5px;
        line-height: 1.1;
        color: #FFFFFF;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .hero-subtitle {
        font-size: 17px;
        line-height: 1.6;
        color: #F3F4F6;
    }

    .hero-subtitle-secondary {
        display: none;
    }

    /* Badge más grande y prominente */
    .badge {
        padding: 10px 20px;
        font-size: 15px;
        font-weight: 700;
        margin-top: 16px;
        margin-bottom: 24px;
    }

    /* Reorganizar CTAs con jerarquía */
    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 12px;
    }

    .btn-primary {
        padding: 18px 32px;
        font-size: 17px;
        font-weight: 700;
        animation: pulse 2s ease-in-out infinite;
        box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
    }

    @keyframes pulse {
        0%, 100% {
            box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
        }
        50% {
            box-shadow: 0 4px 24px rgba(239, 68, 68, 0.6);
        }
    }

    .btn-secondary,
    .btn-tertiary {
        padding: 12px 24px;
        font-size: 15px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .btn-secondary:hover,
    .btn-tertiary:hover {
        background: rgba(255, 255, 255, 1);
        border-color: var(--primary-red);
    }

    /* Tarjeta de prueba social unificada */
    .hero-stats {
        background: rgba(254, 226, 226, 0.95);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(252, 165, 165, 0.6);
        border-radius: 16px;
        padding: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .rating-section {
        grid-column: 1 / -1;
        text-align: center;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(252, 165, 165, 0.6);
    }

    .stars {
        gap: 6px;
        justify-content: center;
        margin-bottom: 8px;
    }

    .star {
        font-size: 24px;
    }

    .rating-text {
        font-size: 16px;
        font-weight: 600;
        color: var(--primary-red);
    }

    .customers-section {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        align-items: center;
    }

    /* Ocultar avatares en móvil */
    .customers-section .avatars {
        display: none;
    }

    .customers-count {
        font-size: 28px;
        font-weight: 800;
        color: var(--primary-red);
    }

    .customers-label {
        font-size: 13px;
        font-weight: 600;
        color: var(--text-dark);
    }

    /* Mostrar badge de experiencia en móvil */
    .experience-badge-mobile {
        display: flex;
    }

    /* Ocultar hero-right ya que ahora es background */
    .hero-right {
        display: none;
    }

    .card-top,
    .card-bottom {
        display: none;
    }
    
    /* Brands Section Mobile */
    .brands-section {
        padding: 40px 0;
    }
    
    .brands-wrapper {
        gap: 16px;
    }
    
    .brand-logo-box {
        padding: 16px 28px;
    }
    
    .brand-logo-img {
        height: 42px !important;
        max-height: 42px !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-title {
        font-size: 40px;
        letter-spacing: -1.2px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }

    .badge {
        padding: 8px 16px;
        font-size: 14px;
    }

    .btn-primary {
        font-size: 16px;
        padding: 16px 28px;
    }

    .btn-secondary,
    .btn-tertiary {
        font-size: 14px;
        padding: 11px 20px;
    }

    .hero-stats {
        padding: 16px;
        gap: 16px;
    }

    .star {
        font-size: 22px;
    }

    .customers-count {
        font-size: 24px;
    }

    /* Brands Section Small Mobile */
    .brands-section {
        padding: 32px 0;
    }
    
    .brands-wrapper {
        gap: 12px;
        flex-direction: column;
        max-width: 100%;
    }
    
    .brand-logo-box {
        padding: 14px 24px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .brand-logo-img {
        height: 36px !important;
        max-height: 36px !important;
    }
}

/* ===== About Section ===== */
.about {
    background: #2A2A2A;
    position: relative;
}

/* Trusted Brands */
.trusted-brands {
    background: #1F1F1F;
    padding: 60px 0;
    text-align: center;
}

.trusted-title {
    color: #9CA3AF;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 40px;
}

.brands-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.brand-logo {
    color: #4B5563;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.brand-logo:hover {
    opacity: 1;
}

/* About Content Wrapper */
.about-content-wrapper {
    background: #2A2A2A;
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
}

/* About Left */
.about-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Dark Badge */
.badge-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 8px 16px;
    border-radius: 24px;
    width: fit-content;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-red);
}

/* About Title */
.about-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--bg-white);
    letter-spacing: -1.5px;
    margin: 0;
}

/* About Description */
.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #9CA3AF;
    margin: 0;
}

/* About Images */
.about-image-small {
    margin-top: 20px;
}

.image-placeholder-small {
    width: 100%;
    max-width: 400px;
    height: 220px;
    background: linear-gradient(135deg, #4B5563 0%, #374151 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.placeholder-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, transparent 100%);
}

/* About Right */
.about-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-large {
    width: 100%;
}

.image-placeholder-large {
    width: 100%;
    height: 480px;
    background: linear-gradient(135deg, #374151 0%, #1F2937 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.placeholder-overlay-large {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, transparent 50%, rgba(59, 130, 246, 0.15) 100%);
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.1), transparent);
    transition: left 0.7s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(239, 68, 68, 0.3);
    border-color: rgba(239, 68, 68, 0.3);
}

.stat-card:hover .stat-value {
    color: var(--primary-red);
    transform: scale(1.1);
}

.stat-value {
    transition: all 0.4s ease;
}

.stat-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 15px;
    color: #9CA3AF;
    font-weight: 500;
}

/* ===== About Responsive ===== */

/* Desktop Grande */
@media (min-width: 1400px) {
    .about-content {
        gap: 100px;
    }
    
    .about-title {
        font-size: 52px;
    }
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-title {
        font-size: 40px;
    }

    .image-placeholder-large {
        height: 380px;
    }

    .stats-section {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .trusted-brands {
        padding: 40px 0;
    }

    .brands-logos {
        gap: 30px;
    }

    .brand-logo {
        font-size: 18px;
    }

    .about-content-wrapper {
        padding: 60px 0;
    }

    .about-title {
        font-size: 36px;
    }

    .about-description {
        font-size: 15px;
    }

    .image-placeholder-small {
        height: 180px;
    }

    .image-placeholder-large {
        height: 320px;
    }

    .stat-value {
        font-size: 40px;
    }

    .stat-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .trusted-title {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .brands-logos {
        gap: 20px;
    }

    .brand-logo {
        font-size: 16px;
    }

    .about-title {
        font-size: 32px;
    }

    .stat-card {
        padding: 32px 24px;
    }

    .stat-value {
        font-size: 36px;
    }
}

/* ===== Products Section ===== */
.products {
    padding: 100px 0;
    background: var(--bg-white);
}

/* Section Headers */
.section-header {
    max-width: 700px;
    margin-bottom: 60px;
}

.section-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -2px;
    margin: 16px 0 12px 0;
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.section-title-center {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    margin: 16px 0 12px 0;
}

.section-subtitle-center {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

/* Product Cards */
.product-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-card {
    background: #1F1F1F;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 70px rgba(239, 68, 68, 0.3);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-image {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-featured {
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
}

.product-image {
    background: #2A2A2A;
    height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image-light {
    background: #E5E7EB;
}

.product-image-red {
    background: linear-gradient(135deg, #F87171 0%, #DC2626 100%);
}

.product-avatars {
    display: flex;
    gap: 16px;
    align-items: center;
}

.product-avatar {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 12px;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-red);
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.product-price {
    font-size: 20px;
    font-weight: 800;
}

.product-content {
    padding: 28px;
    color: white;
}

.product-card-featured .product-content {
    color: white;
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: white;
}

.product-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ===== Why Choose Section ===== */
.why-choose {
    padding: 100px 0;
    background: var(--bg-light);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-left {
    position: relative;
}

.why-image {
    position: relative;
}

.why-placeholder {
    width: 100%;
    height: 520px;
    background: linear-gradient(135deg, #E0E7FF 0%, #C7D2FE 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.why-placeholder-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, transparent 100%);
}

.why-join-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 14px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.join-icon {
    font-size: 18px;
}

.why-speed-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #1F2937;
    color: white;
    padding: 20px 32px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.speed-icon {
    font-size: 24px;
}

.speed-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.why-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-feature {
    display: flex;
    gap: 20px;
    align-items: start;
}

.feature-number {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    border: 2px solid #FCA5A5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-number span {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-red);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.feature-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

.why-footer-text {
    font-size: 15px;
    color: var(--text-gray);
    margin: 16px 0 0 0;
    font-style: italic;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 100px 0;
    background: var(--bg-white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 20px 60px rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.2);
}

.testimonial-large {
    display: flex;
    gap: 24px;
    align-items: start;
}

.testimonial-avatar-wrapper {
    flex-shrink: 0;
}

.testimonial-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #E0E7FF 0%, #C7D2FE 100%);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-icon {
    font-size: 80px;
    line-height: 1;
    color: #E5E7EB;
    margin-bottom: 16px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0 0 16px 0;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.testimonial-video {
    background: #1F2937;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.testimonial-video-wrapper {
    position: relative;
}

.testimonial-video-avatar {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #4B5563 0%, #374151 100%);
    border-radius: 16px;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.4);
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-content-full {
    display: flex;
    gap: 24px;
}

.testimonial-avatar-small {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FCA5A5 0%, #EF4444 100%);
    border-radius: 16px;
    flex-shrink: 0;
}

.testimonial-image {
    background: linear-gradient(135deg, #FECACA 0%, #FCA5A5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.testimonial-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-image-avatar {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

/* ===== Footer ===== */
.footer {
    background: #1F1F1F;
    color: white;
}

/* Newsletter */
.newsletter {
    background: #2A2A2A;
    padding: 60px 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text h3 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
    max-width: 500px;
}

.newsletter-form {
    display: flex;
    gap: 16px;
}

.newsletter-input {
    padding: 16px 24px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 15px;
    width: 320px;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
    padding: 16px 32px;
    border-radius: 12px;
    background: var(--primary-red);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: var(--font-primary);
}

.newsletter-btn:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

/* Footer Main */
.footer-main {
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-tagline {
    color: #9CA3AF;
    font-size: 15px;
    margin: 0;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin: 0 0 16px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    color: #9CA3AF;
    font-size: 15px;
}

.footer-address {
    color: #9CA3AF;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.footer-languages {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 12px;
}

.language-label {
    color: #9CA3AF;
    font-size: 14px;
}

.language-active {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

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

.footer-bottom p {
    color: #6B7280;
    font-size: 14px;
    margin: 0;
}

/* ===== Responsive for New Sections ===== */

/* Desktop Grande */
@media (min-width: 1400px) {
    .products {
        padding: 120px 0;
    }
    
    .section-title {
        font-size: 60px;
    }
    
    .section-title-center {
        font-size: 52px;
    }
    
    .product-cards {
        gap: 36px;
    }
    
    .why-content {
        gap: 100px;
    }
}

/* Desktop a Tablet */
@media (max-width: 1200px) {
    .product-cards {
        gap: 28px;
    }
}

@media (max-width: 1024px) {
    .products {
        padding: 80px 0;
    }

    .product-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-title {
        font-size: 44px;
    }

    .section-title-center {
        font-size: 40px;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-placeholder {
        height: 420px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .products {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-title-center {
        font-size: 32px;
    }

    .section-subtitle,
    .section-subtitle-center {
        font-size: 16px;
    }

    .product-image {
        height: 220px;
    }

    .why-choose {
        padding: 60px 0;
    }

    .why-placeholder {
        height: 360px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-description {
        font-size: 15px;
    }

    .testimonials {
        padding: 60px 0;
    }

    .testimonial-large {
        flex-direction: column;
    }

    .testimonial-avatar {
        width: 100px;
        height: 100px;
    }

    .newsletter {
        padding: 50px 0;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-text h3 {
        font-size: 28px;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-input {
        width: 100%;
    }

    .footer-main {
        padding: 60px 0 30px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 32px;
    }

    .section-title-center {
        font-size: 28px;
    }

    .product-title {
        font-size: 20px;
    }

    .product-description {
        font-size: 14px;
    }

    .feature-number {
        width: 44px;
        height: 44px;
    }

    .feature-number span {
        font-size: 16px;
    }

    .feature-title {
        font-size: 18px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .newsletter-text h3 {
        font-size: 24px;
    }

    .footer-logo-img {
        height: 40px;
    }
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    margin: 0;
}

.contact-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 16px;
}

.contact-method {
    display: flex;
    gap: 16px;
    align-items: start;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    border: 2px solid #FCA5A5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.method-content {
    flex: 1;
}

.method-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 6px 0;
}

.method-content a {
    display: block;
    color: var(--primary-red);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.method-content a:hover {
    color: var(--dark-red);
    text-decoration: underline;
}

.method-content p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Contact Map */
.contact-map {
    margin-bottom: 60px;
    text-align: center;
}

.map-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 24px 0;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

.map-address {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
}

.map-address strong {
    color: var(--text-dark);
    font-size: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-dark);
    font-size: 15px;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-block {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
}

.form-note {
    font-size: 13px;
    color: var(--text-gray);
    text-align: center;
    margin: 0;
}

/* Form Message Styles (Success/Error) */
.form-message {
    margin-top: 24px;
    padding: 20px 24px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    animation: slideDown 0.4s ease-out;
}

.form-message.success {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    border: 2px solid #10B981;
}

.form-message.error {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    border: 2px solid #EF4444;
}

.form-message .message-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.form-message.success .message-icon {
    background: #10B981;
    color: white;
}

.form-message.error .message-icon {
    background: #EF4444;
    color: white;
}

.form-message .message-content {
    flex: 1;
}

.form-message .message-content h4 {
    margin: 0 0 6px 0;
    font-size: 16px;
    font-weight: 700;
}

.form-message.success .message-content h4 {
    color: #065F46;
}

.form-message.error .message-content h4 {
    color: #991B1B;
}

.form-message .message-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.form-message.success .message-content p {
    color: #047857;
}

.form-message.error .message-content p {
    color: #B91C1C;
}

.form-message.error .message-content a {
    color: #DC2626;
    text-decoration: underline;
    font-weight: 600;
}

.form-message.error .message-content a:hover {
    color: #991B1B;
}

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

/* ===== Footer Social Icons ===== */
.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-2px);
}

.footer-contact a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-hours {
    color: #9CA3AF;
    font-size: 15px;
    line-height: 1.8;
    margin: 16px 0 0 0;
}

.footer-hours strong {
    color: white;
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--text-dark);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: bounce-in-up 0.6s ease-out;
}

@keyframes bounce-in-up {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    60% {
        opacity: 1;
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

.back-to-top:hover {
    background: var(--primary-red);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.5);
}

.back-to-top:active {
    transform: translateY(-2px) scale(0.95);
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
    animation: shake 0.5s ease;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: ripple-whatsapp 2s ease-out infinite;
}

@keyframes ripple-whatsapp {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

/* ===== Button Links Support ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* ===== Improved Header Responsiveness ===== */
@media (max-width: 1024px) {
    .nav {
        display: none;
    }

    .menu-btn {
        display: flex;
    }
}

/* Mobile Navigation (hidden by default, controlled by JS) */
.mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 24px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-links .nav-link {
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-links .nav-link:last-child {
    border-bottom: none;
}

/* Header Scroll State */
.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ===== Smooth Scroll Behavior ===== */
html {
    scroll-behavior: smooth;
}

/* ===== Contact Section Responsive ===== */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-methods {
        gap: 20px;
    }

    .method-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .contact-map {
        margin-bottom: 40px;
    }

    .map-title {
        font-size: 24px;
    }

    .map-wrapper {
        border-radius: 16px;
    }

    .back-to-top {
        display: none;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        left: auto;
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 28px;
    }

    .contact-description {
        font-size: 15px;
    }

    .method-content h4 {
        font-size: 15px;
    }

    .method-content a,
    .method-content p {
        font-size: 14px;
    }

    .contact-form-wrapper {
        padding: 24px 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .contact-map {
        margin-bottom: 30px;
    }

    .map-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .map-wrapper {
        border-radius: 12px;
    }

    .map-address {
        font-size: 14px;
    }

    .map-address strong {
        font-size: 16px;
    }
}

/* ===== Accessibility Improvements ===== */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

/* ===== Advanced Animations ===== */

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Left Animation */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade In Right Animation */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale In Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Slide In Up Animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bounce In Animation */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Shake Animation */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

/* Glow Animation */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(239, 68, 68, 0.6);
    }
}

/* Gradient Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Reveal Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

.slide-in-up {
    animation: slideInUp 0.8s ease-out forwards;
}

.bounce-in {
    animation: bounceIn 0.8s ease-out forwards;
}

/* Stagger Delays for Sequential Animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Rainbow Animation for Easter Egg */
@keyframes rainbow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 20%,
        rgba(255, 255, 255, 0.5) 60%,
        rgba(255, 255, 255, 0)
    );
    background-size: 1000px 100%;
    animation: shimmer 3s infinite;
}

/* Glow Text Effect */
.glow-text {
    text-shadow: 
        0 0 10px rgba(239, 68, 68, 0.5),
        0 0 20px rgba(239, 68, 68, 0.3),
        0 0 30px rgba(239, 68, 68, 0.2);
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(239, 68, 68, 0.5),
            0 0 20px rgba(239, 68, 68, 0.3),
            0 0 30px rgba(239, 68, 68, 0.2);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(239, 68, 68, 0.8),
            0 0 30px rgba(239, 68, 68, 0.6),
            0 0 40px rgba(239, 68, 68, 0.4);
    }
}

/* Reveal from Bottom Animation */
@keyframes revealFromBottom {
    from {
        opacity: 0;
        transform: translateY(100px);
        clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* Rotate In Animation */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* Blob Animation for Backgrounds */
@keyframes blob {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

/* Perspective Hover Effect */
.perspective-hover {
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
}

.perspective-hover:hover {
    transform: perspective(1000px) rotateY(10deg);
}

/* ===== Catalog Lead Modal ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.modal-container {
    position: relative;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 30px;
    z-index: 10001;
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
}

.modal-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
    transform: rotate(90deg);
}

.modal-close:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.5;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-form label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.modal-form .form-input {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: var(--bg-white);
    transition: all 0.3s ease;
}

.modal-form .form-input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.modal-form .form-input::placeholder {
    color: var(--text-light);
}

.modal-submit {
    margin-top: 10px;
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.modal-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Modal form messages */
.modal-form .form-message {
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    animation: slideDown 0.3s ease;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        padding: 30px 20px;
        max-height: 85vh;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-subtitle {
        font-size: 14px;
    }

    .modal-close {
        top: 15px;
        right: 15px;
    }
}

/* ===== Print Styles ===== */
@media print {
    .header,
    .back-to-top,
    .whatsapp-float,
    .menu-btn {
        display: none;
    }

    body {
        background: white;
    }
}
