/* =========================================
   DEJAVU 3D - MODERN CSS (Vanilla CSS)
   ========================================= */

/* --- CSS Variables --- */
:root {
    /* Brand Colors based on Logo */
    --color-primary: #00A8FF; /* Bright Blue */
    --color-primary-alt: #0056B3; /* Deep Blue */
    --color-secondary: #00D2FF; /* Cyan */
    
    /* UI Colors */
    --color-bg: #FFFFFF;
    --color-bg-light: #F8F9FA;
    --color-text: #2D3436;
    --color-text-light: #636E72;
    --color-white: #FFFFFF;
    --footer-bg-soft: #eef2f5;
    --footer-bottom-soft: #e2e8ed;
    --footer-heading: #2a3138;
    --footer-text-soft: #5c6772;
    --footer-accent-soft: #0ea5ef;
    --footer-social-soft: rgba(255, 255, 255, 0.92);
    --footer-divider-soft: rgba(30, 55, 80, 0.12);

    /* Typography */
    --font-main: 'Outfit', sans-serif;
    
    /* Font Weights */
    --fw-light: 300;
    --fw-regular: 400;
    --fw-semi: 600;
    --fw-bold: 800;
    
    /* Dimensions */
    --header-height: 80px;
    
    /* Shadows & Effects */
    --shadow-soft: 0 10px 30px rgba(0, 86, 179, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 86, 179, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    
    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

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

ul {
    list-style: none;
}

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

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

/* --- Layout --- */
.container {
    max-width: 1320px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.section {
    padding-block: 4rem;
    scroll-margin-top: calc(var(--header-height) + 1rem);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.w-100 { width: 100%; }
.bg-light { background-color: var(--color-bg-light); }

/* --- Typography Utilities --- */
.text-gradient {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary-alt));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.section-title-wrapper {
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--fw-bold);
    margin-bottom: 1rem;
    color: var(--color-text);
}

.section-subtitle {
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin-inline: auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 2rem;
    border-radius: 50px;
    font-weight: var(--fw-semi);
    font-family: var(--font-main);
    cursor: pointer;
    border: none;
    transition: var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    color: var(--color-white);
    box-shadow: 0 10px 20px rgba(0, 168, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 168, 255, 0.4);
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn-pill-outline {
    background: transparent;
    border: 3px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 999px;
    padding: 0.85rem 3.75rem;
    width: min(100%, 320px);
    font-size: 1.05rem;
    font-weight: var(--fw-bold);
    line-height: 1;
    box-shadow: none;
}

.btn-pill-outline:hover {
    background: rgba(0, 168, 255, 0.08);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* --- Header & Navbar --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-fast);
    background-color: transparent;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--glass-border);
}

/* Fallback para navegadores sin soporte de backdrop-filter */
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
    .header.scrolled {
        background-color: #ffffff;
    }
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: var(--fw-bold);
    color: var(--color-text);
}

.logo-icon {
    display: inline-flex;
    align-items: center;
}

.logo-icon img {
    width: 1em;
    height: 1em;
    display: block;
    object-fit: contain;
}

.logo-light {
    font-weight: var(--fw-light);
    color: var(--color-primary);
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: var(--fw-semi);
    color: var(--color-text-light);
    position: relative;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text);
}

.nav-mobile-contact-item {
    display: none;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding-top: calc(var(--header-height) + 1.5rem);
    padding-bottom: 3rem;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

.hero-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(0, 168, 255, 0.1);
    color: var(--color-primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: var(--fw-semi);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: var(--fw-bold);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.hero-title-black {
    width: 100%;
    display: block;
    color: var(--color-text);
    font-size: 60px;
    line-height: inherit;
}

.hero-title-gradient {
    width: 100%;
    display: block;
    font-size: inherit;
    line-height: inherit;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.valor-cta-wrap {
    margin-top: 2rem;
}

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

.materials-title {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.materials-chip-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.material-chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    background: #00A8FF;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 168, 255, 0.3);
    cursor: default;
    outline: none;
}

.material-tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 14px);
    transform: translateX(-50%) translateY(6px);
    width: min(360px, 86vw);
    padding: 0.8rem 0.9rem;
    border-radius: 12px;
    background: rgba(31, 45, 61, 0.96);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 400;
    line-height: 1.45;
    text-align: left;
    box-shadow: 0 14px 26px rgba(13, 25, 40, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 12;
}

.material-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: rgba(31, 45, 61, 0.96) transparent transparent transparent;
}

.material-chip:hover .material-tooltip,
.material-chip:focus-visible .material-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Glassmorphism Hero Element */
.hero-img-box {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-glass {
    width: 320px;
    height: 400px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hologram-effect {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,210,255,0.4) 0%, rgba(0,168,255,0) 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.hologram-icon {
    font-size: 5rem;
    color: var(--color-primary);
    filter: drop-shadow(0 0 15px rgba(0, 168, 255, 0.8));
}

.glass-text {
    font-weight: var(--fw-bold);
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--color-primary-alt);
    text-transform: uppercase;
}

/* Decorative Blurs */
.blur-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.5;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--color-secondary);
    top: 10%;
    right: 5%;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--color-primary-alt);
    bottom: 10%;
    right: 25%;
}

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

/* --- Services --- */
.services-container {
    grid-template-columns: repeat(4, 1fr);
}

.glass-panel {
    background: var(--color-white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 168, 255, 0.05);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 168, 255, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 168, 255, 0.1);
    color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

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

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

.service-description {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* --- Store Section --- */
.store-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.product-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 168, 255, 0.1);
}

.product-img-wrapper {
    height: 200px;
    background: var(--color-bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-category {
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-price {
    font-weight: var(--fw-bold);
    color: var(--color-primary-alt);
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

/* --- Instagram Carousel --- */
.ig-showcase {
    margin-bottom: 3rem;
    padding: 1.25rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(0, 168, 255, 0.07), rgba(0, 210, 255, 0.03));
    /* border: 1px solid rgba(0, 168, 255, 0.2); */
}

.ig-showcase-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ig-title {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
}

.ig-title i {
    color: #E1306C;
}

.ig-profile-link {
    font-weight: var(--fw-semi);
    color: var(--color-primary-alt);
}

.ig-profile-link:hover {
    color: var(--color-primary);
}

.ig-carousel {
    position: relative;
}

.ig-viewport {
    overflow: hidden;
}

.ig-track {
    --ig-visible: 3;
    display: flex;
    transition: transform var(--transition-smooth);
    will-change: transform;
}

.ig-slide {
    flex: 0 0 calc(100% / var(--ig-visible));
    padding: 0.5rem;
}

.ig-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 168, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    /* box-shadow: var(--shadow-soft); */
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ig-media-wrap {
    display: block;
    aspect-ratio: 1 / 1;
    background: var(--color-bg-light);
    overflow: hidden;
}

.ig-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.ig-card:hover .ig-media {
    transform: scale(1.06);
}

.ig-body {
    padding: 1rem;
}

.ig-caption {
    font-size: 0.92rem;
    color: var(--color-text-light);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.5em;
}

.ig-meta {
    margin-top: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
}

.ig-open-link {
    font-weight: var(--fw-semi);
    color: var(--color-primary-alt);
}

.ig-open-link:hover {
    color: var(--color-primary);
}

.ig-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(0, 168, 255, 0.3);
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary-alt);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.ig-nav:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.ig-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.ig-prev {
    left: -14px;
}

.ig-next {
    right: -14px;
}

.ig-status {
    margin-top: 0.8rem;
    display: none;
}

.ig-status.error {
    color: #D64045;
}

.ig-carousel-disabled .ig-nav {
    display: none;
}

/* --- About Us Section --- */
.about-container {
    grid-template-columns: 0.6fr 1.4fr;
    align-items: center;
    /* gap: 4rem; */
}

.about-img-box {
    position: relative;
    height: 100%;
    min-height: 400px;
    background: radial-gradient(circle at center, rgba(0, 168, 255, 0.1) 0%, transparent 70%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-glass-card {
    padding: 3rem;
    border: 2px solid rgba(0, 168, 255, 0.2);
    position: relative;
    z-index: 2;
}

.stats-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: var(--fw-bold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--color-text-light);
    font-size: 1rem;
    max-width: 200px;
    margin-inline: auto;
}

.about-description {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--color-text);
    font-size: 1.05rem;
    font-weight: var(--fw-semi);
}

.about-list i {
    color: var(--color-primary);
    font-size: 1.4rem;
}

/* --- Eco/Sustainability Section --- */
.eco.section {
    padding-block: 4.5rem;
}

.eco-banner {
    max-width: 1280px;
}

.eco-banner-head {
    max-width: 1120px;
    margin: 0 auto 1.7rem;
    text-align: center;
}

.eco-banner-title {
    margin: 0;
    font-size: clamp(2.1rem, 4.2vw, 4rem);
    line-height: 1.05;
    color: #5b6370;
    font-weight: 800;
}

.eco-banner-subtitle {
    margin: 0.75rem auto 1.05rem;
    padding: 0.5rem 0;
    max-width: 980px;
    font-size: clamp(1.25rem, 2.6vw, 2.8rem);
    line-height: 1.18;
    font-weight: 700;
    color: #149761;
    position: relative;
}

.eco-banner-subtitle::before,
.eco-banner-subtitle::after {
    content: "";
    position: absolute;
    left: -8px;
    width: calc(100% + 16px);
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(85, 101, 121, 0) 0%,
        rgba(85, 101, 121, 0.35) 14%,
        rgba(85, 101, 121, 0.35) 86%,
        rgba(85, 101, 121, 0) 100%
    );
}

.eco-banner-subtitle::before {
    top: 0;
}

.eco-banner-subtitle::after {
    bottom: 0;
}

.eco-banner-copy {
    margin: 0 auto;
    max-width: 980px;
    color: #4b5663;
    font-size: clamp(0.95rem, 1.15vw, 1.35rem);
    line-height: 1.5;
}

.eco-banner-copy b {
    font-weight: 800;
}

.eco-copy-blue {
    color: #2f5680;
    font-weight: 700;
}

.eco-banner-copy em {
    color: #4e5864;
}

.eco-how-divider {
    margin: 1.5rem auto 1.6rem;
    max-width: 1220px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.eco-how-divider::before,
.eco-how-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(56, 108, 154, 0) 0%,
        rgba(56, 108, 154, 0.42) 14%,
        rgba(56, 108, 154, 0.42) 86%,
        rgba(56, 108, 154, 0) 100%
    );
}

.eco-how-divider span {
    font-size: clamp(1.25rem, 1.9vw, 2.1rem);
    color: #0b5599;
    font-weight: 800;
}

.eco-cards-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.eco-process-card {
    border-radius: 18px;
    padding: 12px 12px 14px;
    border: 1px solid rgba(115, 140, 168, 0.14);
    --eco-title-color: #4f6478;
    --eco-line-rgb: 79, 100, 120;
}

.eco-process-card h3 {
    margin: 0;
    text-align: center;
    line-height: 1.18;
    min-height: 50px;
    font-size: clamp(0.9rem, 1.2vw, 1.35rem);
    font-weight: 800;
    color: var(--eco-title-color);
}

.eco-card-media {
    margin: 8px 0 10px;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.eco-card-media::before,
.eco-card-media::after {
    content: "";
    position: absolute;
    left: -8px;
    width: calc(100% + 16px);
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(var(--eco-line-rgb), 0) 0%,
        rgba(var(--eco-line-rgb), 0.5) 14%,
        rgba(var(--eco-line-rgb), 0.5) 86%,
        rgba(var(--eco-line-rgb), 0) 100%
    );
}

.eco-card-media::before {
    top: 0;
}

.eco-card-media::after {
    bottom: 0;
}

.eco-card-media img {
    width: min(92%, 170px);
    max-height: 102px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    margin: 8px 0;
}

.eco-process-card p {
    margin: 0;
    color: #364553;
    font-size: clamp(0.84rem, 0.96vw, 1.08rem);
    line-height: 1.4;
}

.eco-process-card strong {
    font-weight: 800;
}

.eco-process-card.tone-green {
    background: #dfeee0;
    --eco-title-color: #158656;
    --eco-line-rgb: 21, 134, 86;
}

.eco-process-card.tone-green p strong {
    color: #1e8f5f;
}

.eco-process-card.tone-blue {
    background: #dde6f2;
    --eco-title-color: #15579e;
    --eco-line-rgb: 21, 87, 158;
}

.eco-process-card.tone-blue p strong {
    color: #1f5fa6;
}

.eco-process-card.tone-yellow {
    background: #efe8cf;
    --eco-title-color: #9f7d22;
    --eco-line-rgb: 159, 125, 34;
}

.eco-process-card.tone-yellow p strong {
    color: #98771f;
}

.eco-cards-grid .eco-process-card:nth-child(1) {
    background: #EAF8EB;
}

.eco-cards-grid .eco-process-card:nth-child(2) {
    background: #E8F0F8;
}

.eco-cards-grid .eco-process-card:nth-child(3) {
    background: #FEF9E1;
}

.eco-cards-grid .eco-process-card:nth-child(4) {
    background: #EBF8EC;
}

.eco-cards-grid .eco-process-card:nth-child(5) {
    background: #E9F0F9;
}

.eco-cards-grid .eco-process-card:nth-child(6) {
    background: #EAF8EB;
}

.eco-banner-foot {
    margin: 1.5rem auto 0;
    max-width: 1220px;
    padding: 0.95rem 1.4rem;
    border-radius: 3px;
    text-align: center;
    color: #f5fff6;
    font-size: clamp(0.98rem, 1.35vw, 1.5rem);
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(90deg, rgba(46, 175, 81, 0), #31a84b 12%, #34aa4d 88%, rgba(46, 175, 81, 0));
    text-shadow: 0 1px 3px rgba(24, 73, 36, 0.32);
}

/* --- Contact Section --- */
.contact-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.contact-description {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.info-item i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 168, 255, 0.1);
    color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
}

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

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

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    background: var(--color-bg-light);
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--color-text);
    transition: var(--transition-fast);
}

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

.file-upload-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px dashed rgba(0, 168, 255, 0.45);
    background: rgba(0, 168, 255, 0.08);
    color: var(--color-primary-alt);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    font-weight: var(--fw-semi);
    cursor: pointer;
    transition: var(--transition-fast);
}

.file-upload-label:hover {
    background: rgba(0, 168, 255, 0.14);
    border-color: rgba(0, 168, 255, 0.7);
}

.file-upload-label i {
    font-size: 1.2rem;
}

.form-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.file-upload-hint {
    margin-top: 0.6rem;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.selected-files {
    margin-top: 0.6rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.selected-files.has-files {
    color: var(--color-text);
}

.selected-files.error {
    color: #D64045;
}

.selected-files-empty {
    margin: 0;
}

.selected-files-summary {
    font-weight: var(--fw-semi);
    color: var(--color-text);
    margin-bottom: 0.45rem;
}

.selected-files-alert {
    margin: 0 0 0.45rem;
    color: #D64045;
}

.selected-files-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.selected-files-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0.6rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.7);
}

.selected-files-name {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--color-text);
}

.selected-files-remove {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(214, 64, 69, 0.12);
    color: #D64045;
    cursor: pointer;
    transition: var(--transition-fast);
}

.selected-files-remove:hover {
    background: rgba(214, 64, 69, 0.2);
}

.selected-files-remove i {
    font-size: 1rem;
    line-height: 1;
}

/* --- Footer --- */
.footer {
    background: var(--footer-bg-soft);
    border-top: none;
    padding-top: 3rem;
    padding-bottom: 0;
}

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

.footer-logo {
    margin-bottom: 1rem;
    color: var(--footer-heading);
}

.footer-logo .logo-light {
    color: var(--footer-accent-soft);
}

.footer-desc {
    color: var(--footer-text-soft);
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--footer-social-soft);
    color: #5b6b7b;
    font-size: 1.25rem;
    box-shadow: none;
    transition: var(--transition-fast);
    border: 1px solid rgba(70, 95, 120, 0.08);
}

.social-link:hover {
    background-color: #ffffff;
    color: var(--footer-heading);
    transform: translateY(-3px);
    box-shadow: none;
}

.cults-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-color: currentColor;
    -webkit-mask: url('/assets/icon/cults-icon.svg') center / contain no-repeat;
    mask: url('/assets/icon/cults-icon.svg') center / contain no-repeat;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--footer-heading);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-col a {
    color: var(--footer-text-soft);
}

.footer-col a:hover {
    color: var(--footer-text-soft);
    opacity: 0.75;
}

.footer-copy {
    border-top: 1px solid var(--footer-divider-soft);
    background: var(--footer-bottom-soft);
    padding: 15px 24px;
    text-align: center;
    color: var(--footer-text-soft);
    font-size: 15px;
    line-height: 1.7;
}

.footer-copy p {
    margin: 0;
}

/* --- Social Popup --- */
.social-popup {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    width: min(430px, calc(100vw - 2rem));
    padding: 1rem 1rem 0.95rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 168, 255, 0.2);
    background: linear-gradient(140deg, #ffffff 0%, #f4faff 58%, #eef7ff 100%);
    box-shadow: 0 14px 32px rgba(0, 86, 179, 0.18);
    z-index: 110;
    opacity: 0;
    transform: translateY(14px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.social-popup.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.social-popup-close {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 10px;
    background: #e9f3ff;
    color: #3f5f83;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.social-popup-close i {
    font-size: 1.1rem;
}

.social-popup-title {
    font-size: 1.24rem;
    line-height: 1.2;
    color: var(--color-text);
    font-weight: var(--fw-bold);
}

.social-popup-text {
    margin: 0.45rem 0 0;
    font-size: 0.95rem;
    line-height: 1.35;
    color: #5f7082;
}

.social-popup-links {
    margin-top: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.social-popup-link {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-popup-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 24px rgba(0, 86, 179, 0.24);
}

.social-popup-link-instagram {
    background: linear-gradient(145deg, #ffcc73 0%, #ff4f75 50%, #6c5cff 100%);
}

.social-popup-link-facebook {
    background: linear-gradient(145deg, #2e8eff 0%, #1e62d8 100%);
}

.social-popup-link-tiktok {
    background: linear-gradient(145deg, #101010 0%, #252525 100%);
}

.social-popup-link-cults {
    background: linear-gradient(145deg, #89dcff 0%, #70c6f0 100%);
}

.social-popup-link-cults .cults-icon {
    width: 26px;
    height: 26px;
    color: #fff;
}

/* --- WhatsApp Float Button --- */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 99;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background-color: white;
    color: var(--color-text);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: var(--fw-semi);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- Responsive --- */
@media screen and (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero {
        padding-top: calc(var(--header-height) + 1rem);
        padding-bottom: 2.25rem;
    }
    
    .hero-badge {
        margin-inline: auto;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-img-box {
        height: 400px;
        margin-top: 2rem;
    }

    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-data .section-title {
        text-align: center;
    }

    .about-img-box {
        grid-row: 2;
        min-height: 300px;
    }

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

    .ig-track {
        --ig-visible: 2;
    }

    .ig-prev {
        left: -8px;
    }

    .ig-next {
        right: -8px;
    }

    .eco-cards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

@media screen and (max-width: 768px) {
    html,
    body {
        overflow-x: clip;
    }

    .hero-container {
        padding: 1.5rem;
    }

    .hero-title-black {
        font-size: 45px;
    }

    .whatsapp-btn {
        right: max(16px, env(safe-area-inset-right));
        bottom: max(16px, env(safe-area-inset-bottom));
    }

    .whatsapp-tooltip {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 100%;
        background-color: var(--color-bg);
        padding: 3rem;
        flex-direction: column;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        transition: right var(--transition-smooth);
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    .nav-menu.show-menu {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        width: min(100%, 320px);
        margin: 0 auto;
    }

    .nav-mobile-contact-item {
        display: block;
        width: 100%;
        margin-top: 0.25rem;
        text-align: center;
    }

    .nav-mobile-contact-btn {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0.7rem 1.6rem;
        font-size: 1.05rem;
        line-height: 1;
        color: var(--color-white);
        justify-content: center;
    }

    .nav-mobile-contact-btn::after {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .ig-showcase {
        padding: 1rem 0.65rem;
    }

    .ig-showcase-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .ig-track {
        --ig-visible: 1;
    }

    .ig-nav {
        display: none;
    }

    .eco-banner-subtitle {
        padding-inline: 0.5rem;
    }

    .eco-how-divider {
        gap: 0.55rem;
    }

    .eco-how-divider span {
        text-wrap: nowrap;
    }

    .eco-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .eco-process-card h3 {
        min-height: auto;
    }

    .eco-card-media {
        min-height: 82px;
    }

    .eco-banner-foot {
        padding: 0.85rem 0.85rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-desc {
        margin-inline: auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .social-popup {
        left: 0.8rem;
        right: 0.8rem;
        bottom: 0.8rem;
        width: auto;
        padding: 0.9rem 0.85rem 0.85rem;
        border-radius: 16px;
    }

    .social-popup-title {
        font-size: 1.06rem;
    }

    .social-popup-text {
        font-size: 0.88rem;
    }

    .social-popup-links {
        gap: 0.5rem;
    }

    .social-popup-link {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 1.5rem;
    }

    .social-popup-link-cults .cults-icon {
        width: 22px;
        height: 22px;
    }
}

@media screen and (max-width: 520px) {
    .eco-cards-grid {
        grid-template-columns: 1fr;
    }
}
