/* Custom CSS for Amazzontour */

:root {
    --color-brand-green: #003B1F;
    --color-brand-light: #0E6B38;
    --color-brand-accent: #2EAF4F;
    --color-brand-cream: #f4f1ea;
    --color-brand-dark: #1c1c1c;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-brand-cream);
    font-family: 'Lato', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

/* Glassmorphism Utilities */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.glass-dark {
    background: rgba(26, 71, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
}

/* Hero Section - Using requested radial gradient with reduced opacity */
.hero-bg {
    background: radial-gradient(circle at center, rgba(14, 107, 56, 0.4) 0%, rgba(0, 59, 31, 0.6) 100%), url('../assets/img/hero.png');
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.card-zoom {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-zoom:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-zoom:hover img {
    transform: scale(1.05);
}

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(45deg, var(--color-brand-accent), #0E6B38);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    filter: brightness(110%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(46, 175, 79, 0.4);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}