/* style.css - Premium, Elegant & Modern Styling for CTR Turismo e Câmbio */

:root {
    /* Colors - Slate & Greyish Blue Palette */
    --color-primary: #1e293b;      /* Slate 800 - Deep Blue-Grey */
    --color-primary-dark: #0f172a; /* Slate 900 - Deeper Blue-Grey */
    --color-primary-light: #334155;/* Slate 700 */
    --color-accent: #dfb73c;       /* Gold */
    --color-accent-hover: #c9a12e; /* Darker Gold */
    --color-whatsapp: #25d366;     /* WhatsApp Green */
    --color-whatsapp-hover: #20ba5a;
    
    /* Backgrounds - Darker Sections, No "too white" content */
    --bg-light: #f1f5f9;           /* Slate 100 - Elegant greyish blue background */
    --bg-medium: #e2e8f0;          /* Slate 200 - Contrast background */
    --bg-white: #ffffff;
    
    --border-color: rgba(15, 23, 42, 0.08);
    --border-color-light: rgba(255, 255, 255, 0.08);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout & Effects */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.04), 0 2px 4px -1px rgba(15, 23, 42, 0.02);
    --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.07), 0 4px 6px -2px rgba(15, 23, 42, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.09), 0 10px 10px -5px rgba(15, 23, 42, 0.03);
    --shadow-premium: 0 30px 60px -15px rgba(15, 23, 42, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: #334155;
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

.w-full {
    width: 100%;
}

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

.text-white {
    color: #ffffff;
}

.text-gold {
    color: var(--color-accent) !important;
}

.text-light {
    color: #cbd5e1;
}

.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary-dark);
    line-height: 1.25;
}

.section-padding {
    padding: 100px 0;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* Background overlays */
.bg-overlay-dark {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96) 0%, rgba(30, 41, 59, 0.92) 100%);
    z-index: 1;
}

.bg-overlay-light {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.tourism-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

/* Section Background types */
.dark-bg {
    position: relative;
    background-color: var(--color-primary-dark);
    color: #ffffff;
}

.dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4 {
    color: #ffffff;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(223, 183, 60, 0.3);
}

.btn-primary-glow {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    box-shadow: 0 0 20px rgba(223, 183, 60, 0.3);
}

.btn-primary-glow:hover {
    background-color: var(--color-accent-hover);
    box-shadow: 0 0 35px rgba(223, 183, 60, 0.7);
    transform: translateY(-3px);
}

.btn-outline-white {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* Header & Navigation - WHITE BACKGROUND (blends white serrilha of logo) */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
    transition: var(--transition);
}

.site-header.scrolled .nav-wrapper {
    height: 70px;
}

.logo-img {
    height: 68px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.site-header.scrolled .logo-img {
    height: 56px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-menu a:hover {
    color: var(--color-accent-hover);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-primary-dark);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 85px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 24px;
    display: none;
    box-shadow: var(--shadow-lg);
}

.site-header.scrolled .mobile-nav {
    top: 70px;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--color-primary-light);
    font-size: 1rem;
    font-weight: 600;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-cta-li {
    margin-top: 10px;
}

/* Hero Section - Split-Screen Layout */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
    background-color: #0f172a !important;
    padding: 140px 0 100px 0;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    margin-bottom: 25px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

.hero-visual-col {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Layered Overlapping Collage with micro-movements */
.collage-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.collage-card {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

.collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.collage-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--color-primary-dark);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.collage-card.card-1 {
    top: 0;
    left: 0;
    width: 80%;
    height: 320px;
    z-index: 2;
    border: 3px solid var(--color-accent);
    animation: float-slow 8s infinite ease-in-out;
}

.collage-card.card-2 {
    bottom: 0;
    right: 0;
    width: 70%;
    height: 280px;
    z-index: 1;
    border: 3px solid rgba(255, 255, 255, 0.15);
    animation: float-slow 8s infinite ease-in-out alternate;
    animation-delay: 2s;
}

.collage-card:hover {
    transform: scale(1.03) translateY(-5px);
    z-index: 3;
    box-shadow: 0 35px 70px -15px rgba(223, 183, 60, 0.15);
}

.collage-card.card-2:hover {
    border-color: var(--color-accent);
}

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

/* Scroll movement & Float Animations (as requested for "mais movimento") */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* Sobre Section */
.about-section {
    background-color: var(--bg-medium); /* Slate 200 grey-blue */
    border-bottom: 1px solid var(--border-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-description p.lead {
    font-size: 1.25rem;
    color: var(--color-primary-light);
    font-weight: 500;
    margin-bottom: 25px;
}

.about-description p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mvv-card {
    display: flex;
    gap: 20px;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.mvv-card:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(223, 183, 60, 0.2);
}

.mvv-icon-box {
    background-color: rgba(15, 23, 42, 0.05);
    color: var(--color-primary-dark);
    min-width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.mvv-card:hover .mvv-icon-box {
    background-color: var(--color-primary-dark);
    color: var(--color-accent);
    animation: float 2s infinite ease-in-out;
}

.mvv-info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.mvv-info p {
    font-size: 0.95rem;
    color: #64748b;
}

/* Serviços Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 50px 40px;
    border-radius: 16px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    background-color: rgba(30, 41, 59, 0.8);
    border-color: var(--color-accent);
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.card-icon-box {
    background-color: rgba(223, 183, 60, 0.1);
    color: var(--color-accent);
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 30px;
    transition: var(--transition);
}

.service-card:hover .card-icon-box {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    animation: float 2s infinite ease-in-out;
}

.service-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 30px;
    flex-grow: 1;
}

.card-cta {
    background: transparent;
    border: none;
    color: var(--color-accent);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-card:hover .card-cta {
    color: #ffffff;
    transform: translateX(8px);
}

/* Turismo Section */
.tourism-section {
    background-color: var(--bg-light); /* Slate 100 grey-blue */
}

.tourism-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tourism-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(15, 23, 42, 0.05);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tourism-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(223, 183, 60, 0.3);
}

.tourism-icon {
    color: var(--color-primary-dark);
    font-size: 2.2rem;
    margin-bottom: 25px;
    transition: var(--transition);
    display: inline-block;
}

.tourism-card:hover .tourism-icon {
    color: var(--color-accent);
    transform: scale(1.1) rotate(5deg);
}

.tourism-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.tourism-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* DHL Section */
.dhl-section .bg-overlay-dark {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.88) 100%) !important;
}

.dhl-wrapper {
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid var(--color-accent);
    border-radius: 20px;
    padding: 60px 80px;
    backdrop-filter: blur(12px);
    max-width: 900px;
    margin: 0 auto;
}

.dhl-logo-container {
    background-color: #ffffff;
    padding: 12px 24px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.dhl-logo {
    height: 70px;
    width: auto;
    display: block;
}

.dhl-content h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.dhl-content p.lead {
    font-size: 1.2rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 15px;
}

.dhl-content p {
    color: #cbd5e1;
    line-height: 1.7;
}

/* Cotação Section */
.quote-section {
    background-color: var(--bg-medium); /* Slate 200 grey-blue */
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.quote-cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.quote-actions-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.phone-link-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-primary-light);
}

.phone-link-wrapper i {
    color: var(--color-accent);
}

.phone-link {
    color: var(--color-primary-dark);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--color-accent);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

/* Lojas Section */
.stores-section {
    background-color: var(--bg-light); /* Slate 100 */
}

.stores-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.store-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 23, 42, 0.04);
    transition: var(--transition);
}

.store-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(223, 183, 60, 0.2);
}

.store-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.store-card:hover .store-img {
    transform: scale(1.08);
}

.store-city-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-primary-dark);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

.store-info {
    padding: 30px;
}

.store-info h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
}

.store-address, .store-phone {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.store-address i, .store-phone i {
    color: var(--color-accent);
    margin-top: 4px;
}

.btn-whatsapp-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    background-color: rgba(37, 211, 102, 0.08);
    color: var(--color-whatsapp);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 6px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-whatsapp-card:hover {
    background-color: var(--color-whatsapp);
    color: #ffffff;
    border-color: var(--color-whatsapp);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

/* Fale Conosco / Contato Section - DARK BLUE-GREY BACKGROUND (Not white!) */
.contact-section {
    background-color: var(--color-primary-dark) !important;
    position: relative;
    z-index: 1;
}

.contact-section h2.section-title {
    color: #ffffff !important;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
}

.contact-form-box {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 50px;
}

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

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(15, 23, 42, 0.2);
    border-radius: 8px;
    color: #ffffff;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--color-accent);
    background-color: rgba(15, 23, 42, 0.4);
}

.contact-info-box h2 {
    margin-bottom: 15px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-link-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-link-item i {
    font-size: 1.5rem;
    color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.03);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-link-item span {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-link-item a {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.contact-link-item a:hover {
    color: var(--color-accent);
}

.social-channels h3 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.03);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    border-color: var(--color-accent);
    transform: translateY(-4px);
}

/* Site Footer - Elegant transition to pure white */
.site-footer {
    background-color: #09111e;
    border-top: 1px solid var(--border-color-light);
    color: #94a3b8;
    padding: 70px 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 100px;
    padding-bottom: 60px;
}

.footer-brand .footer-logo {
    height: 48px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 450px;
}

.footer-links h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

/* Corretora Section with pure white background (blends corretora SAC logo perfectly) */
.corretora-footer-box {
    background-color: #ffffff;
    padding: 40px 0 10px 0;
    border-top: 1px solid #e2e8f0;
}

.corretora-img {
    max-width: 420px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-bottom-white {
    background-color: #ffffff;
    padding: 10px 0 40px 0;
    color: #64748b;
}

.footer-bottom-white p {
    font-size: 0.85rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.floating-whatsapp-btn:hover {
    background-color: var(--color-whatsapp-hover);
    transform: scale(1.1);
}

.btn-ripple {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    animation: ripple 2.5s infinite;
}

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

/* Modal WhatsApp */
.whatsapp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
}

.modal-card {
    background-color: var(--bg-white);
    width: 100%;
    max-width: 520px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    overflow: hidden;
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-modal.open .modal-card {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 1.3rem;
    color: #64748b;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close-btn:hover {
    color: var(--color-primary-dark);
    transform: rotate(90deg);
}

.modal-header {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #1e293b 100%);
    color: #ffffff;
    padding: 35px 35px 25px 35px;
    text-align: center;
}

.modal-header-icon {
    font-size: 3rem;
    color: var(--color-whatsapp);
    margin-bottom: 12px;
}

.modal-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.modal-header p {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.modal-body {
    padding: 24px;
}

.modal-store-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-separator {
    display: flex;
    align-items: center;
    margin: 10px 0 5px 0;
    color: #94a3b8;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.modal-separator::before, .modal-separator::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: rgba(15, 23, 42, 0.08);
}

.modal-separator::before { margin-right: 10px; }
.modal-separator::after { margin-left: 10px; }

.modal-store-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background-color: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.modal-store-item:hover {
    background-color: rgba(37, 211, 102, 0.05);
    border-color: var(--color-whatsapp);
    transform: translateX(5px);
}

.store-logo-icon {
    background-color: var(--color-primary-light);
    color: var(--color-accent);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.modal-store-item:hover .store-logo-icon {
    background-color: var(--color-whatsapp);
    color: #ffffff;
}

/* Highlight style for general tourism sector */
.turismo-item:hover {
    background-color: rgba(223, 183, 60, 0.06);
    border-color: var(--color-accent);
}

.turismo-icon {
    background-color: var(--color-primary-dark);
    color: var(--color-accent);
}

.turismo-item:hover .store-logo-icon {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
}

.store-details {
    flex-grow: 1;
}

.store-details .store-name {
    display: block;
    font-weight: 700;
    color: var(--color-primary-dark);
    font-size: 0.95rem;
}

.store-details .store-desc {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 2px;
}

.arrow-go {
    color: #cbd5e1;
    font-size: 0.85rem;
    transition: var(--transition);
}

.modal-store-item:hover .arrow-go {
    color: var(--color-whatsapp);
    transform: translateX(4px);
}

.modal-store-item.turismo-item:hover .arrow-go {
    color: var(--color-accent);
}

/* Animations for scroll triggers */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

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

    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-cards {
        order: -1;
    }
    
    .services-grid, .tourism-grid, .stores-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-section {
        padding: 120px 0 60px 0;
        text-align: center;
    }
    
    .hero-text-col {
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .hero-visual-col {
        height: 340px;
        margin-top: 20px;
    }

    .collage-card.card-1 {
        width: 75%;
        height: 220px;
    }

    .collage-card.card-2 {
        width: 65%;
        height: 190px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .services-grid, .tourism-grid, .stores-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .dhl-wrapper {
        padding: 40px 30px;
    }
    
    .contact-form-box {
        padding: 30px 20px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .floating-whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   Floating Scroll Elements - 3D Plane & Coins Animation
   ========================================================================== */
.floating-scroll-plane {
    position: fixed;
    top: 0;
    left: 0;
    font-size: 3.5rem;
    color: var(--color-accent);
    z-index: 1001; /* Above header */
    pointer-events: none;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
    will-change: transform;
    transform: translate(-200px, -200px) rotate(45deg);
    transition: transform 0.1s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.scroll-coin {
    position: fixed;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fffbeb 0%, #fbbf24 35%, #d97706 75%, #78350f 100%);
    box-shadow: 
        0 20px 35px rgba(0, 0, 0, 0.3),
        inset 0 -3px 6px rgba(0, 0, 0, 0.4),
        inset 0 3px 6px rgba(255, 255, 255, 0.6);
    z-index: 1001;
    pointer-events: none;
    will-change: transform;
    transition: transform 0.1s cubic-bezier(0.1, 0.8, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coin-inner {
    width: 86%;
    height: 86%;
    border-radius: 50%;
    border: 2px dashed #fef08a; /* coin serrated rim edge */
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 35% 35%, #fbbf24, #b45309);
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.4), inset 0 -2px 4px rgba(0,0,0,0.3);
}

.coin-inner i {
    font-size: 1.4rem;
    color: #fef08a;
    font-weight: 900;
    text-shadow: 1px 2px 0px #78350f, -1px -1px 0px rgba(255,255,255,0.6);
}

/* Base placements for coins */
.scroll-coin.coin-1 {
    top: 25%;
    right: 45px;
}

.scroll-coin.coin-2 {
    top: 70%;
    left: 45px;
}

/* Hide these decorative items on small mobile screens to keep layout clean */
@media (max-width: 1024px) {
    .floating-scroll-plane, .scroll-coin {
        display: none !important;
    }
}
