/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --brand-dark: #004d59;
    /* Principal Text/Theme */
    --brand-light: #008193;
    /* Highlights/Secondary */
    --accent: #f3a33b;
    /* Orange/Gold Action */
    --bg-light: #f3f6f6;
    /* Header/Light Backgrounds */
    --icon-bg: #e5f2f4;
    /* Icon Backgrounds */
    --whatsapp: #1EBE5D;

    --text-main: #004d59;
    --text-highlight: #008193;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    color: var(--brand-dark);
    font-weight: 700;
}

/* Utilities */
.text-brand-dark {
    color: var(--brand-dark) !important;
}

.text-brand-light {
    color: var(--brand-light) !important;
}

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

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

.bg-brand-light {
    background-color: var(--brand-light) !important;
}

/* Navigation */
.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 10px 0;
}

.nav-location-pill {
    background-color: #fff;
    border-radius: 50px;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--brand-dark);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Buttons */
.btn-whatsapp-pulse {
    background-color: var(--whatsapp);
    color: white;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    animation: pulse-green 2s infinite;
    text-decoration: none;
}

.btn-whatsapp-pulse:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-accent {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: capitalize;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(243, 163, 59, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-accent:hover {
    background-color: #e09228;
    transform: translateY(-3px);
    color: white;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Backgrounds */
.bg-warm-light {
    background-color: #f8f6f1;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    /* Space for fixed nav */
}

.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, #f8f6f1);
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 77, 89, 0.85);
    /* #004d59 with opacity */
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

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

.hero-pill {
    background-color: var(--accent);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 400;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.hero-highlight-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.85rem;
}

.product-icon-box {
    text-align: center;
    color: white;
}

.testimonial-card {
    width: 380px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.avatar-sm {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.5rem;
}

/* Features Generic */
.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

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

.icon-box-styled {
    width: 70px;
    height: 70px;
    background-color: var(--icon-bg);
    color: var(--brand-dark);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: var(--transition);
}

.feature-card:hover .icon-box-styled {
    transform: scale(1.1) rotate(5deg);
}

/* How to Buy Section (Comprar é fácil) */
.section-easy-buy {
    background-color: var(--brand-light);
    color: white;
    position: relative;
    overflow: hidden;
}

.circle-decoration-top {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.circle-decoration-bottom {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.step-circle-white {
    width: 80px;
    height: 80px;
    background-color: white;
    color: var(--brand-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.step-number-badge {
    position: absolute;
    top: 0;
    right: -5px;
    width: 30px;
    height: 30px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid var(--brand-light);
}

/* Final CTA Section */
.final-cta-section {
    background-color: white;
    padding: 80px 0;
    text-align: center;
}

/* Social Icons Header */
.social-header-link {
    width: 35px;
    height: 35px;
    background-color: var(--icon-bg);
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.social-header-link:hover {
    background-color: var(--brand-dark);
    color: white;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .navbar-fixed .container {
        flex-direction: column;
        gap: 10px;
    }

    .logo-container {
        margin-bottom: 5px;
    }
}

/* Marquee Animation */
.marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Process Animation Section */
.process-section {
    background-color: #e5f2f4;
    overflow: hidden;
    position: relative;
    padding: 80px 0;
}

.road-track-container {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: 60px auto 40px;
    height: 6px;
    background-color: #cbd5e1;
    border-radius: 10px;
}

.process-station {
    position: absolute;
    top: -50px;
    transform: translateX(-50%);
    text-align: center;
    z-index: 5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.process-station:hover {
    transform: translateX(-50%) scale(1.1);
}

.station-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin: 0 auto 12px;
    border: 3px solid var(--brand-light);
    color: var(--brand-dark);
    position: relative;
    z-index: 2;
}

.process-station:hover .station-icon {
    border-color: var(--accent);
    color: var(--accent);
}

.process-station h5 {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
    color: var(--brand-dark);
    white-space: nowrap;
}

/* Positioning */
.station-start {
    left: 0%;
}

.station-mid {
    left: 50%;
}

.station-end {
    left: 100%;
}

/* Truck Animation */
.truck-container {
    position: absolute;
    top: -30px;
    left: 0;
    transform: translateX(-50%);
    animation: drive-delivery 10s linear infinite;
    z-index: 10;
}

.truck-wrapper {
    position: relative;
    color: var(--accent);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.sand-pile-truck {
    position: absolute;
    top: -5px;
    left: 4px;
    opacity: 0;
    animation: sand-load 10s linear infinite;
}

.truck-icon-svg {
    width: 40px;
    height: 40px;
}

@keyframes drive-delivery {
    0% {
        left: 0%;
        opacity: 0;
        transform: translateX(-50%) scale(0.8);
    }

    5% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }

    40% {
        left: 50%;
        transform: translateX(-50%) scale(1);
    }

    50% {
        left: 50%;
        transform: translateX(-50%) scale(1);
    }

    /* Wait at mid */
    90% {
        left: 100%;
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }

    100% {
        left: 100%;
        opacity: 0;
        transform: translateX(-50%) scale(0.8);
    }
}

@keyframes sand-load {

    0%,
    40% {
        opacity: 0;
        transform: scale(0);
    }

    50%,
    90% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .road-track-container {
        width: 85%;
        margin-top: 50px;
    }

    .process-station h5 {
        font-size: 0.75rem;
    }

    .station-icon {
        width: 45px;
        height: 45px;
    }
}



/* Estilo dos cards dentro do modal */
.product-option-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.product-option-card:hover {
    border-color: var(--brand-light); /* use sua variável de cor aqui */
    background-color: #f8f9fa;
    transform: translateY(-2px);
    color: inherit;
}

.option-icon {
    width: 50px;
    height: 50px;
    background-color: #e0f2f1; /* Tom de azul claro/verde do ícone */
    color: #008080; /* Cor do ícone */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.option-icon svg {
    width: 24px;
    height: 24px;
}

/* Ajuste para o botão de fechar do Bootstrap */
.btn-close-white {
    filter: brightness(0) invert(1);
}