/* ===================================
   GRUPO ESTRELLA POLAR - ESTILOS BASE
   Colores Corporativos:
   Cyan: #3CB4E6
   Azul: #00367B
   Amarillo: #FEE021
   =================================== */

/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --color-cyan: #3CB4E6;
    --color-blue: #00367B;
    --color-yellow: #FEE021;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-gray-light: #F3F4F6;
    --color-gray: #6B7280;
    --color-gray-dark: #1F2937;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-gray-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 0;
}

/* Utilidades de colores */
.text-cyan {
    color: var(--color-cyan);
}

.text-blue {
    color: var(--color-blue);
}

.text-yellow {
    color: var(--color-yellow);
}

.bg-cyan {
    background-color: var(--color-cyan);
}

.bg-blue {
    background-color: var(--color-blue);
}

.bg-yellow {
    background-color: var(--color-yellow);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Títulos */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-blue);
}

/* Enlaces */
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Botones */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--color-white);
    color: var(--color-blue);
    font-weight: 700;
    border: 2px solid var(--color-white);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--color-cyan);
    color: var(--color-white);
    border-color: var(--color-cyan);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-blue);
    transform: translateY(-3px);
}

/* Botón de email en el formulario */
.contact-form .btn-secondary {
    background: var(--color-blue);
    color: var(--color-white);
    border: 2px solid var(--color-blue);
}

.contact-form .btn-secondary:hover {
    background: var(--color-cyan);
    border-color: var(--color-cyan);
    color: var(--color-white);
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-bottom: calc(90px + env(safe-area-inset-bottom));
        /* Espacio para el bottom nav solo en móvil */
    }
}

/* ===================================
   NAVBAR
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-blue);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--color-gray);
}

/* Desktop Menu */
.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--color-gray-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--color-cyan);
}

.nav-link.active {
    color: var(--color-cyan);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-cyan);
}

.btn-contact {
    background: var(--color-cyan);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
}

.btn-contact:hover {
    background: var(--color-blue);
    color: var(--color-white);
}

.btn-contact.active {
    background: var(--color-blue);
    color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(60, 180, 230, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-blue);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: var(--color-white);
    border-top: 1px solid #E5E7EB;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 400px;
}

.mobile-menu ul {
    list-style: none;
    padding: 1rem 0;
}

.mobile-menu li {
    margin: 0;
}

.mobile-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--color-gray-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: var(--color-gray-light);
    color: var(--color-cyan);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--color-blue);
    color: var(--color-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    width: 140px;
    height: auto;
    margin-bottom: 1rem;
    object-fit: contain;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-cyan);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-cyan);
}

.footer-contact,
.footer-schedule {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--color-cyan);
    margin-top: 3px;
}

.footer-schedule li {
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-schedule strong {
    display: block;
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   BOTTOM NAVIGATION (Móvil)
   =================================== */

.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--color-white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 0.5rem 0.75rem;
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
    align-items: flex-end;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0.5rem;
    color: var(--color-gray);
    font-size: 0.75rem;
    transition: color 0.3s ease;
    min-width: 0;
}

.bottom-nav-item i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.bottom-nav-item.active {
    color: var(--color-cyan);
}

.bottom-nav-cta {
    position: relative;
    margin-top: -2.25rem;
}

.cta-button {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(60, 180, 230, 0.4);
    margin-bottom: 0.35rem;
    transform: translateY(-6px);
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 768px) {

    /* Navbar en móvil */
    .navbar-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    /* Bottom Nav visible en móvil */
    .bottom-nav {
        display: flex;
    }

    /* Footer en móvil */
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   HERO SECTION
   =================================== */

main {
    padding-top: 80px;
    /* Espacio para el navbar */
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 50%, #E0F2FE 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

/* Video de fondo del Hero */
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

/* Overlay para que el texto se vea mejor */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 54, 123, 0.96) 0%,
            rgba(37, 99, 235, 0.94) 50%,
            rgba(0, 54, 123, 0.96) 100%);
    z-index: 2;
}

/* Container por encima del video */
.hero>.container {
    position: relative;
    z-index: 10;
}



@keyframes float-blob {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 30px) scale(0.9);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    animation: slideUp 1s ease-out;
}

.hero-text {
    animation: slideUp 1s ease-out;
    position: relative;
    z-index: 10;
}

/* Mejorar visibilidad del texto sobre el video */
.hero-title {
    color: var(--color-white) !important;
}

.hero-slogan {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-yellow) !important;
    margin-bottom: 1.5rem;
    font-style: italic;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-slogan i {
    font-size: 1rem;
    margin: 0 0.5rem;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.hero-title .text-cyan {
    color: var(--color-cyan) !important;
}

.hero-description {
    color: rgba(255, 255, 255, 0.95) !important;
}

.hero-description strong {
    color: var(--color-white);
}

.hero-description strong {
    color: var(--color-white);
    font-weight: 700;
}

.hero-badge {
    /* Solo déjalo así: */
    background: var(--color-yellow);
    color: var(--color-blue);
}

.stat-number {
    color: var(--color-white) !important;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 4px 8px rgba(0, 0, 0, 0.6);
    font-weight: 800;
}

.stat-label {
    color: rgba(255, 255, 255, 1) !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

.hero-buttons .btn {
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.hero-buttons .btn:hover {
    transform: translateY(-4px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.5),
        0 12px 30px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-yellow);
    color: var(--color-blue);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    animation: bounce-slow 3s ease-in-out infinite;
}

@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-blue);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(60, 180, 230, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-cyan);
    margin-bottom: 0.25rem;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-gray);
}

/* Hero Image con animaciones 3D */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1.5s ease-out 0.3s both;
    z-index: 10;
}

.hero-product {
    position: relative;
    animation: rotate-3d 20s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes rotate-3d {

    0%,
    100% {
        transform: rotateY(0deg) rotateX(0deg) scale(1);
    }

    25% {
        transform: rotateY(15deg) rotateX(5deg) scale(1.05);
    }

    50% {
        transform: rotateY(0deg) rotateX(-5deg) scale(1);
    }

    75% {
        transform: rotateY(-15deg) rotateX(5deg) scale(1.05);
    }
}

.product-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 54, 123, 0.3));
}

/* Tercer círculo amarillo borroso */
.hero-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: var(--color-yellow);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(90px);
    animation: float-blob 30s ease-in-out infinite;
    z-index: 3;
    pointer-events: none;
}

/* Partículas de agua flotantes por todo el hero */
@keyframes water-drop {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(600px) scale(0.3);
        opacity: 0;
    }
}

@keyframes water-drop-reverse {
    0% {
        transform: translateY(600px) scale(0.3);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
}

@keyframes water-drop {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(150px) scale(0.3);
        opacity: 0;
    }
}

/* Múltiples partículas de agua en diferentes posiciones */
.hero::before,
.hero::after,
.hero-content::after,
.hero-image::before,
.hero-image::after,
.hero-text::before,
.hero-text::after {
    pointer-events: none;
}

/* Partícula 1 */
.hero-image::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(60, 180, 230, 0.7);
    border-radius: 50%;
    top: -50px;
    left: 20%;
    animation: water-drop 6s ease-in-out infinite;
    animation-delay: 0s;
}

/* Partícula 2 */
.hero-image::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(60, 180, 230, 0.6);
    border-radius: 50%;
    top: -50px;
    right: 30%;
    animation: water-drop 7s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Partícula 3 */
.hero-text::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(0, 54, 123, 0.5);
    border-radius: 50%;
    top: -30px;
    left: 15%;
    animation: water-drop 8s ease-in-out infinite;
    animation-delay: 2s;
}

/* Partícula 4 */
.hero-text::after {
    content: '';
    position: absolute;
    width: 9px;
    height: 9px;
    background: rgba(60, 180, 230, 0.6);
    border-radius: 50%;
    top: -30px;
    right: 20%;
    animation: water-drop 5.5s ease-in-out infinite;
    animation-delay: 3s;
}

/* Partícula 5 - invertida */
.hero-content::after {
    content: '';
    position: absolute;
    width: 11px;
    height: 11px;
    background: rgba(254, 224, 33, 0.4);
    border-radius: 50%;
    bottom: -50px;
    left: 40%;
    animation: water-drop-reverse 9s ease-in-out infinite;
    animation-delay: 1s;
    z-index: 1;
}

/* ===================================
   SECCIÓN MARCAS
   =================================== */

.marcas-section {
    padding: 5rem 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.marcas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, #E0F2FE, transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-blue);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
}

.marcas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.marca-card {
    border-radius: 2rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.marca-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.marca-artica {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-blue) 100%);
    color: var(--color-white);
}

/* Montaña ártica decorativa en Agua Ártica */
.marca-artica::after {
    content: '';
    position: absolute;
    top: 300px;
    right: 10px;
    width: 380px;
    height: 380px;
    background-image: url('../images/arctic-mountain.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    opacity: 0.45;
    z-index: 1;
    pointer-events: none;
    transition: all 0.5s ease;
}

.marca-artica:hover::after {
    opacity: 0.4;
    transform: scale(1.05);
}

.marca-brisas {
    background: linear-gradient(135deg, #38BDF8 0%, #0EA5E9 100%);
    color: var(--color-white);
}

/* Hojas de palma decorativas en Brisas del Caribe */
.marca-brisas::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 400px;
    height: 400px;
    background-image: url('../images/palm-leaves.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
    transition: all 0.5s ease;
}

.marca-brisas:hover::after {
    opacity: 0.65;
    transform: scale(1.05) rotate(5deg);
}


/* Patrón de fondo para las marcas */
.marca-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: ripple-effect 15s ease-in-out infinite;
}

@keyframes ripple-effect {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-10%, -10%) scale(1.2);
    }
}

.marca-content {
    position: relative;
    z-index: 10;
}

.marca-logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
    overflow: hidden;
}

.marca-card:hover .marca-logo {
    transform: scale(1.1) rotate(5deg);
}

.marca-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.marca-title {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.marca-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.marca-features {
    list-style: none;
    margin-bottom: 2rem;
}

.marca-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.marca-card:hover .marca-features li {
    transform: translateX(5px);
}

.marca-features i {
    color: var(--color-yellow);
    font-size: 1.25rem;
}

.btn-light {
    background: var(--color-white);
    color: var(--color-blue);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: var(--color-yellow);
    transform: translateX(5px);
}

/* ===================================
   VENTAJAS SECTION
   =================================== */

.ventajas-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-gray-light) 100%);
}

.ventajas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.ventaja-item {
    text-align: center;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.ventaja-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ventaja-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-white);
    font-size: 2rem;
    transition: all 0.4s ease;
    position: relative;
}

.ventaja-item:hover .ventaja-icon {
    transform: scale(1.1) rotate(10deg);
}

.ventaja-icon::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    z-index: -1;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.ventaja-item h3 {
    font-size: 1.25rem;
    color: var(--color-blue);
    margin-bottom: 0.75rem;
}

.ventaja-item p {
    color: var(--color-gray);
    line-height: 1.6;
}

/* ===================================
   AJUSTES SOLO PARA DESKTOP
   =================================== */

@media (min-width: 1025px) {
    .hero {
        min-height: 85vh;
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 3.25rem;
    }

    .hero-description {
        font-size: 1.125rem;
        margin-bottom: 1.75rem;
    }
}

/* ===================================
   RESPONSIVE - HERO Y CONTENIDO
   =================================== */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image {
        order: -1;
    }

    .product-img {
        max-width: 400px;
    }

    .marcas-grid {
        grid-template-columns: 1fr;
    }

    .ventajas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .marca-title {
        font-size: 2rem;
    }

    .ventajas-grid {
        grid-template-columns: 1fr;
    }

    .product-img {
        max-width: 300px;
    }

    .hero .container {
        position: relative;
        z-index: 10;
    }
}

/* ===================================
   CATÁLOGO - PÁGINA
   =================================== */

/* Header del Catálogo con Video */
.catalog-header {
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* Video de fondo */
.catalog-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

/* Overlay para que el texto se vea mejor */
.catalog-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 54, 123, 0.85) 0%, rgba(60, 180, 230, 0.75) 100%);
    z-index: 2;
}

/* Contenido por encima del video */
.catalog-header .container {
    position: relative;
    z-index: 10;
}

.catalog-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.catalog-header .catalog-title {
    color: var(--color-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.catalog-header .catalog-description {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.catalog-header .catalog-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.catalog-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-white);
    color: var(--color-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(60, 180, 230, 0.2);
}

.catalog-title {
    font-size: 3.5rem;
    color: var(--color-blue);
    margin-bottom: 1.5rem;
}

.catalog-description {
    font-size: 1.25rem;
    color: var(--color-gray);
    line-height: 1.8;
}

/* Filtros */
.catalog-filters {
    padding: 2rem 0;
    background: var(--color-white);
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filters-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--color-white);
    border: 2px solid #E5E7EB;
    border-radius: 9999px;
    font-weight: 600;
    color: var(--color-gray-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.filter-btn:hover {
    border-color: var(--color-cyan);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(60, 180, 230, 0.2);
}

.filter-btn.active {
    background: var(--color-blue);
    border-color: var(--color-blue);
    color: var(--color-white);
    box-shadow: 0 8px 25px rgba(0, 54, 123, 0.3);
}

.filter-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* Grid de Productos */
.catalog-products {
    padding: 4rem 0;
    background: var(--color-gray-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

/* Product Card */
.product-card {
    background: var(--color-white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card.hidden {
    opacity: 0;
    transform: scale(0.9);
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Product Header (Imagen) */
.product-header {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.artica-gradient {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-blue) 100%);
}

.brisas-gradient {
    background: linear-gradient(135deg, #38BDF8 0%, #0EA5E9 100%);
}

.dispensers-gradient {
    background: linear-gradient(135deg, #6B7280 0%, #374151 100%);
}

.product-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: ripple-slow 20s ease-in-out infinite;
}

@keyframes ripple-slow {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-10%, -10%);
    }
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-yellow);
    color: var(--color-blue);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.product-badge.bg-yellow {
    background: var(--color-yellow);
}

.product-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1) rotate(5deg);
}

.product-icon {
    font-size: 6rem;
    color: var(--color-white);
    opacity: 0.9;
    position: relative;
    z-index: 5;
}

/* Product Body */
.product-body {
    padding: 1.5rem;
}

.product-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.brand-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.product-brand i {
    font-size: 1.25rem;
    color: var(--color-cyan);
}

.brand-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-cyan);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 1.5rem;
    color: var(--color-blue);
    margin-bottom: 0.75rem;
}

.product-description {
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-gray-dark);
}

.product-features i {
    color: var(--color-cyan);
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* CTA Final */
.catalog-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-cyan) 100%);
    position: relative;
    overflow: hidden;
}

.catalog-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(60px);
}

/* Oso polar decorativo en CTA del catálogo */
.catalog-cta::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 500px;
    width: 450px;
    height: 450px;
    background-image: url('/estrella-polar/images/polar-bear.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
    transition: all 0.5s ease;
}

.catalog-cta:hover::after {
    opacity: 100%;
    transform: scale(1.05);
}

.cta-content {
    text-align: center;
    color: var(--color-white);
    position: relative;
    z-index: 10;
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* ===================================
   RESPONSIVE - CATÁLOGO
   =================================== */

@media (max-width: 768px) {
    .catalog-header {
        padding: 6rem 0 3rem;
    }

    .catalog-title {
        font-size: 2.5rem;
    }

    .catalog-description {
        font-size: 1.125rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .filter-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .filter-logo {
        width: 24px;
        height: 24px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1.125rem;
    }
}

/* ===================================
   NOSOTROS - PÁGINA
   =================================== */

/* Header Nosotros */
.about-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #DBEAFE 0%, #E0F2FE 100%);
    position: relative;
    overflow: hidden;
}

.about-header::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 10%;
    width: 350px;
    height: 350px;
    background: var(--color-blue);
    opacity: 0.08;
    border-radius: 50%;
    filter: blur(70px);
}

.about-header::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: var(--color-cyan);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(80px);
}

/* Mejorar visibilidad del texto en header de Nosotros */
.about-header-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-title {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Historia */
.about-story {
    padding: 5rem 0;
    background: var(--color-white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    padding: 2rem 1.5rem 0;
    border-radius: 2rem;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    overflow: visible;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 320px;
}

/* Imagen de la mujer con botellón */
.delivery-person {
    width: auto;
    max-width: 100%;
    height: 400px;
    /* Ajustado */
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.25));
    transition: all 0.5s ease;
    position: relative;
    bottom: -0px;
    /* Ajustado */
}

.story-image:hover .delivery-person {
    transform: translateY(-10px) scale(1.03);
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.35));
}

.logo-showcase {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    border-radius: 2rem;
    padding: 4rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 54, 123, 0.2);
    overflow: hidden;
}

.logo-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: rotate-slow 30s linear infinite;
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.main-logo {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.logo-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--color-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue);
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.story-content {
    position: relative;
}

.story-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.story-text strong {
    color: var(--color-blue);
    font-weight: 600;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-gray-light);
    border-radius: 1rem;
    border-left: 4px solid var(--color-cyan);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(60, 180, 230, 0.15);
}

.stat-box i {
    font-size: 2rem;
    color: var(--color-cyan);
}

.stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-blue);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-gray);
    margin-top: 0.25rem;
}

/* Misión y Visión */
.mission-vision {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(60px);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.mv-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 3rem;
    color: var(--color-white);
    transition: all 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.mv-title {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.mv-text {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Valores */
.values-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--color-gray-light);
    border-radius: 1.5rem;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: var(--color-white);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-white);
    font-size: 2rem;
    position: relative;
}

.value-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.2;
    z-index: -1;
}

.value-title {
    font-size: 1.25rem;
    color: var(--color-blue);
    margin-bottom: 0.75rem;
}

.value-description {
    color: var(--color-gray);
    line-height: 1.6;
}

/* Proceso de Purificación */
.purification-process {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--color-gray-light) 0%, var(--color-white) 100%);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-cyan), var(--color-blue));
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--color-white);
    border: 4px solid var(--color-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-blue);
    position: relative;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(60, 180, 230, 0.2);
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    background: var(--color-white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.5rem;
    color: var(--color-blue);
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--color-gray);
    line-height: 1.7;
}

/* Certificaciones */
.certifications {
    padding: 5rem 0;
    background: var(--color-gray-light);
}

.cert-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: var(--color-white);
    padding: 4rem;
    border-radius: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cert-badge {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--color-white);
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(60, 180, 230, 0.3);
}

.cert-title {
    font-size: 2.5rem;
    color: var(--color-blue);
    margin-bottom: 1.5rem;
}

.cert-description {
    font-size: 1.125rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cert-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.cert-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--color-gray-light);
    border-radius: 1rem;
    text-align: left;
}

.cert-feature i {
    color: var(--color-cyan);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.cert-feature span {
    color: var(--color-gray-dark);
    font-weight: 500;
}

/* CTA Nosotros */
.about-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
}

.about-cta .cta-content {
    text-align: center;
    color: var(--color-white);
}

.about-cta .cta-title {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.about-cta .cta-description {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

/* ===================================
   RESPONSIVE - NOSOTROS
   =================================== */

@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-image {
        order: -1;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .story-stats {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {
    .about-header {
        padding: 6rem 0 3rem;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-description {
        font-size: 1.125rem;
    }

    .logo-showcase {
        padding: 3rem;
    }

    .main-logo {
        max-width: 200px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        left: 20px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .process-step {
        gap: 1rem;
    }

    .cert-content {
        padding: 2rem;
    }

    .cert-features {
        grid-template-columns: 1fr;
    }

    .about-cta .cta-title {
        font-size: 2rem;
    }

    .story-image {
        min-height: 280px;
        padding: 1.5rem 1rem 0;
    }

    .delivery-person {
        height: 360px;
        bottom: -0px;
    }
}

/* ===================================
   DISTRIBUCIÓN - PÁGINA
   =================================== */

/* Header Distribución */
.distribution-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-cyan) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.distribution-header::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(60px);
}

.distribution-header-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.distribution-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--color-white);
    animation: pulse-icon 3s ease-in-out infinite;
}

@keyframes pulse-icon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.distribution-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-yellow);
    color: var(--color-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.distribution-title {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.distribution-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

/* Mapa y Estadísticas */
.map-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.map-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.map-container {
    height: 500px;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.map-stats {
    background: var(--color-gray-light);
    padding: 2rem;
    border-radius: 1.5rem;
    position: sticky;
    top: 100px;
}

.stats-title {
    font-size: 1.5rem;
    color: var(--color-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.stat-item-large {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--color-cyan);
    transition: all 0.3s ease;
}

.stat-item-large:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(60, 180, 230, 0.2);
}

.stat-item-large i {
    font-size: 2.5rem;
    color: var(--color-cyan);
}

.stat-number-large {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-blue);
    line-height: 1;
}

.stat-label-large {
    display: block;
    font-size: 0.875rem;
    color: var(--color-gray);
    margin-top: 0.25rem;
}

.map-stats .btn {
    margin-top: 1.5rem;
}

/* Zonas */
.zones-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-gray-light) 100%);
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.zone-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.zone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.zone-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.zone-card:hover::before {
    transform: scaleX(1);
}

.zone-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--color-cyan);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.zone-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-white);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.zone-card:hover .zone-icon {
    transform: scale(1.15) rotate(10deg);
}

.zone-name {
    font-size: 1.25rem;
    color: var(--color-blue);
    margin-bottom: 0.75rem;
}

.zone-description {
    color: var(--color-gray);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Cómo funciona */
.how-it-works {
    padding: 5rem 0;
    background: var(--color-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-gray-light);
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.step-card::after {
    content: '→';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--color-cyan);
    opacity: 0.3;
}

.step-card:last-child::after {
    display: none;
}

.step-card:hover {
    background: var(--color-white);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-white);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
}

.step-title {
    font-size: 1.25rem;
    color: var(--color-blue);
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--color-gray);
    line-height: 1.6;
}

/* CTA Distribución */
.distribution-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    position: relative;
    overflow: hidden;
}

.distribution-cta::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(80px);
}

.distribution-cta .cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-truck-icon {
    width: 320px;
    height: 320px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    padding: 0;
    overflow: visible;
    animation: truck-drive 3s ease-in-out infinite;
}

.cta-truck-icon i {
    display: none;
}

.cta-truck-icon::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background-image: url('../images/delivery-truck.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.25));
}

@keyframes truck-drive {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(20px);
    }
}

.distribution-cta .cta-title {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.distribution-cta .cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--color-white);
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    border-color: #20BA5A;
    transform: translateY(-3px);
}

/* ===================================
   RESPONSIVE - DISTRIBUCIÓN
   =================================== */

@media (max-width: 1024px) {
    .map-grid {
        grid-template-columns: 1fr;
    }

    .map-stats {
        position: static;
    }

    .zones-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-card::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .distribution-header {
        padding: 6rem 0 3rem;
    }

    .distribution-title {
        font-size: 2.5rem;
    }

    .distribution-description {
        font-size: 1.125rem;
    }

    .map-container {
        height: 350px;
    }

    .zones-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .distribution-cta .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-truck-icon {
        width: 180px;
        height: 180px;
        padding: 1rem;
    }

    .cta-truck-icon::before {
        width: 150px;
        height: 150px;
    }
}

/* ===================================
   CONTACTO - PÁGINA
   =================================== */

/* Header Contacto */
.contact-header {
    padding: 8rem 0 3rem;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-cyan) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    filter: blur(80px);
}

.contact-header-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-yellow);
    color: var(--color-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.contact-title {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.text-yellow {
    color: var(--color-yellow);
}

.contact-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

/* Contacto Rápido */
.quick-contact {
    padding: 3rem 0;
    background: var(--color-white);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.quick-contact-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.quick-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.quick-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.quick-contact-card:hover::before {
    transform: scaleX(1);
}

.whatsapp-card:hover {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: var(--color-white);
}

.whatsapp-card:hover .quick-icon,
.whatsapp-card:hover .quick-title,
.whatsapp-card:hover .quick-number {
    color: var(--color-white);
}

.phone-card:hover {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    color: var(--color-white);
}

.phone-card:hover .quick-icon,
.phone-card:hover .quick-title,
.phone-card:hover .quick-number {
    color: var(--color-white);
}

.quick-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.whatsapp-card .quick-icon {
    background: linear-gradient(135deg, #25D366, #20BA5A);
}

.quick-contact-card:hover .quick-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(255, 255, 255, 0.2);
}

.quick-title {
    font-size: 1.5rem;
    color: var(--color-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.quick-number {
    font-size: 1.125rem;
    color: var(--color-gray-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.quick-badge {
    display: inline-block;
    background: var(--color-yellow);
    color: var(--color-blue);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.quick-contact-card:hover .quick-badge {
    background: rgba(255, 255, 255, 0.3);
    color: var(--color-white);
}

/* Formulario y Info */
.contact-form-section {
    padding: 5rem 0;
    background: var(--color-gray-light);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Formulario */
.form-container {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header i {
    font-size: 3rem;
    color: var(--color-cyan);
    margin-bottom: 1rem;
}

.form-title {
    font-size: 2rem;
    color: var(--color-blue);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--color-gray);
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-blue);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.form-group label i {
    color: var(--color-cyan);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 3px rgba(60, 180, 230, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    margin-top: 1rem;
    padding: 1.25rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-gray);
    margin-top: 1rem;
}

.form-note i {
    color: var(--color-cyan);
    margin-right: 0.5rem;
}

.form-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--color-white);
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    border-color: #20BA5A;
}

/* Info de Contacto */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
}

.info-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-title {
    font-size: 1.25rem;
    color: var(--color-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list strong {
    color: var(--color-blue);
}

.info-list span {
    color: var(--color-gray);
}

.info-text {
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-cyan);
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-link:hover {
    color: var(--color-blue);
    transform: translateX(5px);
}

.info-email {
    color: var(--color-cyan);
    font-weight: 600;
    font-size: 1.125rem;
    word-break: break-word;
}

.info-email:hover {
    color: var(--color-blue);
}

/* Garantías */
.guarantee-card {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    color: var(--color-white);
}

.guarantee-title {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guarantee-list {
    list-style: none;
}

.guarantee-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.95);
}

.guarantee-list i {
    color: var(--color-yellow);
    font-size: 1.25rem;
}

/* Mapa */
.contact-map {
    padding: 5rem 0;
    background: var(--color-white);
}

.map-title {
    font-size: 2.5rem;
    color: var(--color-blue);
    text-align: center;
    margin-bottom: 2rem;
}

.map-wrapper {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 1.5rem;
    overflow: hidden;
}

/* FAQs */
.quick-faqs {
    padding: 5rem 0;
    background: var(--color-gray-light);
}

.faqs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.faq-question {
    font-size: 1.125rem;
    color: var(--color-blue);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.faq-answer {
    color: var(--color-gray);
    line-height: 1.7;
}

/* ===================================
   SECCIÓN ENERGÍA SOLAR
   =================================== */

.solar-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-gray-light) 100%);
}

.solar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solar-content {
    padding-right: 2rem;
}

.solar-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FFD93D, #FFA500);
    color: var(--color-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 217, 61, 0.3);
}

.solar-text {
    font-size: 1.0625rem;
    color: var(--color-gray-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.solar-benefits {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-white);
    padding: 1.25rem;
    border-radius: 1rem;
    border-left: 4px solid #FFD93D;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 2rem;
    color: #4CAF50;
}

.benefit-item strong {
    display: block;
    color: var(--color-blue);
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
}

.benefit-item span {
    color: var(--color-gray);
    font-size: 0.875rem;
}

/* Imágenes */
.solar-images {
    position: relative;
}

.solar-image-main {
    position: relative;
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.solar-illustration {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

.solar-badge-img {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #FFD93D, #FFA500);
    color: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 217, 61, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.solar-badge-img i {
    font-size: 1.5rem;
}

.solar-image-secondary {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.solar-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
}

.solar-image-secondary:hover .solar-photo {
    transform: scale(1.05);
}

.solar-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.solar-label i {
    color: #4CAF50;
}

/* Responsive */
@media (max-width: 1024px) {
    .solar-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .solar-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .solar-section {
        padding: 3rem 0;
    }

    .solar-image-main {
        padding: 2rem;
    }

    .solar-badge-img {
        top: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .solar-photo {
        height: 250px;
    }
}

/* ===================================
   MARCAS QUE NOS RESPALDAN
   =================================== */

.clients-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.client-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-cyan);
}

.client-card:hover::before {
    transform: scaleX(1);
}

.client-card img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* CTA de Clientes */
.clients-cta {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--color-gray-light), var(--color-white));
    border-radius: 1.5rem;
    border: 2px solid #E5E7EB;
}

.clients-cta-text {
    font-size: 1.25rem;
    color: var(--color-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.clients-cta-text i {
    color: var(--color-cyan);
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 3rem 0;
    }

    .clients-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .client-card {
        min-height: 120px;
        padding: 1.5rem;
    }

    .clients-cta {
        padding: 2rem 1.5rem;
    }

    .clients-cta-text {
        font-size: 1.125rem;
        flex-direction: column;
    }
}

/* ===================================
   RESPONSIVE - CONTACTO
   =================================== */

@media (max-width: 1024px) {
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        position: static;
    }

    .faqs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-header {
        padding: 6rem 0 3rem;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-description {
        font-size: 1.125rem;
    }

    .form-container {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .map-title {
        font-size: 2rem;
    }
}

/* ===================================
   ALERTA PERSONALIZADA
   =================================== */

.custom-alert {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.custom-alert.active {
    display: flex;
}

.alert-content {
    background: var(--color-white);
    padding: 3rem 2rem;
    border-radius: 2rem;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25D366, #20BA5A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-white);
    font-size: 3rem;
    animation: scaleIn 0.5s ease 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.alert-title {
    font-size: 1.75rem;
    color: var(--color-blue);
    margin-bottom: 1rem;
}

.alert-message {
    color: var(--color-gray);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.alert-content .btn {
    min-width: 150px;
}
