/* Reset & Base */
:root {
    --primary-color: #1B4332; /* Verde Floresta */
    --secondary-color: #40916C; /* Verde Oliva */
    --accent-color: #E65100; /* Laranja Vibrante */
    --accent-hover: #BF4400; /* Laranja Escuro */
    --bg-creme: #F5F1EB; /* Creme Natural */
    --white: #FFFFFF;
    --text-color: #1B4332; /* Using primary color for text too, or dark gray */
    --text-light: #4A5568;
    --whatsapp-green: #25D366;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    padding-top: 90px; /* Increased offset for taller header */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

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

.section {
    padding: 100px 0;
}

/* Typography */
h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; }

@media (min-width: 1024px) {
    h1 { font-size: 4.5rem; }
    h2 { font-size: 3rem; }
    h3 { font-size: 2rem; }
}

/* Badges */
.badge-section {
    display: inline-block;
    background-color: rgba(64, 145, 108, 0.1);
    color: var(--secondary-color);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

/* Buttons */
.btn-primary, .btn-outline, .btn-book, .btn-submit, .btn-footer, .btn-mobile-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
}

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

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

.btn-book {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
}

.btn-book:hover {
    background-color: var(--accent-hover);
}

.btn-submit, .btn-footer {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    width: 100%;
}

.btn-submit:hover, .btn-footer:hover {
    background-color: var(--accent-hover);
}

/* Header - ALWAYS WHITE/FIXED STYLE */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s ease;
    padding: 0.75rem 0; /* Increased padding */
    background-color: rgba(255, 255, 255, 0.95); /* Always white bg */
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg); /* Always shadow */
    height: 90px; /* Increased height */
   
}

/* Ensure logo size is controlled */
.logo-link img {
    height: 40px !important; /* Force smaller size overriding inline styles */
    width: auto;
}

/* Removed separate .scrolled state since it's now default */

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%; /* Garante que o container ocupe toda a altura do header */
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* gap-3 */
}

.logo-svg {
    transition: all 0.3s ease;
    width: 2.5rem; /* w-10 - Always compact size */
    height: 2.5rem; /* h-10 */
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-weight: 700;
    letter-spacing: -0.025em; /* tracking-tight */
    transition: all 0.3s ease;
    font-size: 1.125rem; /* text-lg - Always compact size */
    color: var(--primary-color); /* Always dark color */
}

.logo-subtitle {
    font-size: 0.75rem; /* text-xs */
    transition: all 0.3s ease;
    color: var(--secondary-color); /* Always colored */
    margin-bottom: 0;
}

/* Navigation Visibility & Responsive */
.nav-menu {
    display: none; /* Hidden by default on mobile */
}

.hamburger {
    display: block; /* Visible by default on mobile */
}

@media (min-width: 769px) {
    .nav-menu {
        display: block;
    }
    
    .nav-menu ul {
        display: flex;
        gap: 2rem; /* gap-8 */
        position: relative;
        align-items: center;
    }

    .nav-menu a {
        font-size: 0.875rem; /* text-sm */
        font-weight: 500;
        transition: all 0.3s ease;
        color: var(--primary-color); /* Always dark color */
    }
    
    .hamburger {
        display: none;
    }
}

/* Mobile Sub-links */
.mobile-sub-link {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0 0.5rem 1.5rem;
    display: block;
    transition: color 0.3s ease;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-sub-link:hover {
    color: var(--secondary-color);
    padding-left: 2rem;
}

/* Header Actions Responsive */
@media (max-width: 1023px) {
    .header-actions .btn-book {
        display: none; /* Hide "Reservar" button on mobile header, it's in the menu */
    }
    .phone-text {
        display: none;
    }
}

/* Dropdown Menu */
.dropdown-trigger {
    position: relative;
}

.dropdown-trigger:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 180px;
    box-shadow: var(--shadow-lg);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    z-index: 100;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    flex-direction: column;
    gap: 0;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background-color: #F3F4F6;
    color: var(--secondary-color);
}

.nav-menu a:hover {
    opacity: 0.7;
    color: var(--secondary-color);
}

.nav-menu a::after {
    display: none;
}

/* Header Actions */
.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem; /* text-sm */
    transition: all 0.3s ease;
    color: var(--primary-color); /* Always dark color */
}

@media (max-width: 768px) {
    .phone-link {
        display: none;
    }
}

.phone-text {
    display: none;
}

@media (min-width: 1280px) {
    .phone-text {
        display: inline;
    }
}

.btn-book {
    background-color: var(--accent-color); /* #E65100 */
    color: var(--white);
    padding: 0.625rem 1.5rem; /* px-6 py-2.5 */
    border-radius: 9999px; /* rounded-full */
    font-size: 0.875rem; /* text-sm */
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background-color: var(--accent-hover); /* #BF4400 */
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

/* Hamburger */
.hamburger {
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: color 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    gap: 6px;
    background: transparent;
    border: none;
    z-index: 60;
}

@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
}

.bar {
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    inset: 0; /* top-0 left-0 right-0 bottom-0 */
    z-index: 1100; /* z-40 in React code, but we need it above header */
    display: none; /* controlled by JS */
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-backdrop {
    opacity: 1;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 20rem; /* w-80 */
    background-color: var(--white);
    box-shadow: 25px 0 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* type: 'tween' */
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-inner {
    padding: 1.5rem;
    padding-top: 5rem; /* pt-20 */
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 10;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--secondary-color);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* gap-4 */
}

.mobile-link {
    color: var(--primary-color);
    font-size: 1.125rem; /* text-lg */
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6; /* border-gray-100 */
    text-align: left;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--secondary-color);
}

.mobile-menu-footer {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    font-weight: 500;
}

.btn-mobile-book {
    background-color: var(--accent-color);
    color: var(--white);
    text-align: center;
    padding: 1rem;
    border-radius: 0.75rem; /* rounded-xl */
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 0; /* Reset previous margin */
}

.btn-mobile-book:hover {
    background-color: var(--accent-hover);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* margin-top is handled by body padding-top */
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 64rem; /* max-w-5xl */
    padding: 0 1rem; /* px-4 */
    text-align: center;
}

.hero-badge-glass {
    display: inline-block;
    padding: 0.5rem 1rem; /* px-4 py-2 */
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem; /* text-sm */
    font-weight: 500;
    margin-bottom: 1.5rem; /* mb-6 */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 2.25rem; /* text-4xl */
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 1.5rem; /* mb-6 */
}

@media (min-width: 640px) {
    .hero-title { font-size: 3rem; /* sm:text-5xl */ }
}
@media (min-width: 768px) {
    .hero-title { font-size: 3.75rem; /* md:text-6xl */ }
}
@media (min-width: 1024px) {
    .hero-title { font-size: 4.5rem; /* lg:text-7xl */ }
}

.text-gradient-green {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, #40916C, #95D5B2);
}

.hero-description {
    font-size: 1.125rem; /* text-lg */
    color: rgba(255, 255, 255, 0.8);
    max-width: 42rem; /* max-w-2xl */
    margin: 0 auto 2.5rem auto; /* mx-auto mb-10 */
    line-height: 1.625;
}

@media (min-width: 640px) {
    .hero-description { font-size: 1.25rem; /* sm:text-xl */ }
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* gap-4 */
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-cta-group { flex-direction: row; }
}

.btn-hero-primary {
    width: 100%;
    padding: 1rem 2rem; /* px-8 py-4 */
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem; /* text-lg */
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .btn-hero-primary { width: auto; }
}

.btn-hero-primary:hover {
    background-color: var(--accent-hover);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(230, 81, 0, 0.25); /* shadow-orange-500/25 */
}

.btn-hero-secondary {
    width: 100%;
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    color: var(--white);
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (min-width: 640px) {
    .btn-hero-secondary { width: auto; }
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Stats */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem; /* gap-8 */
    margin-top: 4rem; /* mt-16 */
    padding-top: 2rem; /* pt-8 */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
    .hero-stats { gap: 4rem; /* sm:gap-16 */ }
}

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

.stat-value {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700;
    color: var(--white);
}

@media (min-width: 640px) {
    .stat-value { font-size: 2.25rem; /* sm:text-4xl */ }
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem; /* text-sm */
    margin-top: 0.25rem;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

@media (min-width: 1024px) {
    .floating-card { display: block; }
}

.card-rating { top: 6rem; left: 2rem; }
.card-location { bottom: 10rem; right: 2rem; }

.glass-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 1rem; /* rounded-2xl */
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fc-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
}

.text-yellow { color: #FACC15; }
.text-white-70 { color: rgba(255, 255, 255, 0.7); font-size: 0.875rem; }

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: var(--delay, 0s);
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: var(--delay, 0s);
}

.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: var(--delay, 0s);
}

.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale-up {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    transition-delay: var(--delay, 0s);
}

.animate-scale-up.visible {
    opacity: 1;
    transform: scale(1);
}

.animate-float-in {
    animation: floatIn 0.8s ease-out forwards;
    animation-delay: var(--delay);
}

@keyframes floatIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator-btn {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: color 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: var(--delay);
}

.scroll-indicator-btn:hover {
    color: var(--white);
}

.bounce-animation {
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Chalés Section (Redesigned) */
.chales-section {
    background-color: var(--bg-creme);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .chales-section { padding: 7rem 0; }
}

.chales-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .chales-title { font-size: 3rem; }
}

.chales-subtitle {
    color: #4B5563;
    max-width: 42rem;
    margin: 0 auto;
    font-size: 1.125rem;
}

.chales-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .chales-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .chales-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1280px) {
    .chales-grid {
        gap: 2rem;
    }
}

.chales-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-cta-large:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(230, 81, 0, 0.25);
}

/* Chalet Card */
.chale-card-modern {
    background-color: var(--white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.chale-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: rgba(64, 145, 108, 0.2);
}

/* Image Area */
.card-image-wrapper {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.chale-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.card-badge-popular {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    z-index: 10;
}

.capacity-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    color: var(--white);
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

/* Content Area */
.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-header {
    margin-bottom: 1rem;
}

.chale-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.amenities-compact {
    display: flex;
    gap: 0.75rem;
    color: #6B7280;
    font-size: 0.875rem;
}

.amenities-compact i {
    color: var(--secondary-color);
    background-color: rgba(64, 145, 108, 0.1);
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.chale-card-modern:hover .amenities-compact i {
    background-color: var(--secondary-color);
    color: var(--white);
}

.chale-desc {
    color: #4B5563;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Price Container */
.price-container {
    background-color: #F8FAFC;
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-divider {
    height: 1px;
    background-color: #E2E8F0;
    width: 100%;
}

.price-label {
    font-size: 0.8rem;
    color: #64748B;
    font-weight: 600;
    text-transform: uppercase;
}

.price-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.price-row.highlight .price-value {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.price-row.highlight .price-label {
    color: var(--accent-color);
}

/* Button */
.btn-card-modern {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-card-modern:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(64, 145, 108, 0.3);
}

.btn-card-modern i {
    transition: transform 0.3s ease;
}

.btn-card-modern:hover i {
    transform: translateX(4px);
}

/* Benefits Section */
.benefits-section {
    background-color: var(--white);
    position: relative;
    padding: 5rem 0; /* py-20 */
    overflow: hidden;
}

@media (min-width: 640px) {
    .benefits-section { padding: 7rem 0; /* sm:py-28 */ }
}

.bg-decoration-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem; /* w-96 */
    height: 24rem; /* h-96 */
    background-color: rgba(64, 145, 108, 0.05); /* bg-[#40916C]/5 */
    border-radius: 50%;
    filter: blur(64px); /* blur-3xl */
    pointer-events: none;
}

.bg-decoration-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24rem; /* w-96 */
    height: 24rem; /* h-96 */
    background-color: rgba(230, 81, 0, 0.05); /* bg-[#E65100]/5 */
    border-radius: 50%;
    filter: blur(64px); /* blur-3xl */
    pointer-events: none;
}

.benefits-container {
    position: relative;
    max-width: 80rem; /* max-w-7xl */
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .benefits-container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
    .benefits-container { padding: 0 2rem; }
}

.badge-benefits {
    display: inline-block;
    padding: 0.375rem 1rem;
    background-color: rgba(64, 145, 108, 0.1);
    color: var(--secondary-color);
    font-size: 0.875rem; /* text-sm */
    font-weight: 500;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.benefits-title {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .benefits-title { font-size: 2.25rem; /* sm:text-4xl */ }
}
@media (min-width: 1024px) {
    .benefits-title { font-size: 3rem; /* lg:text-5xl */ }
}

.benefits-subtitle {
    color: #4B5563; /* text-gray-600 */
    max-width: 42rem; /* max-w-2xl */
    margin: 0 auto;
    font-size: 1.125rem; /* text-lg */
}

/* --- Modern Benefits Section --- */
.benefits-section {
    background-color: #FAFAFA; /* Levemente diferente do branco puro */
    position: relative;
    overflow: hidden;
}

/* Background Decorations */
.bg-decoration-top {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(64, 145, 108, 0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.bg-decoration-bottom {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(230, 81, 0, 0.03) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Container */
.benefits-container {
    position: relative;
    z-index: 1;
}

/* Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 5rem;
}

@media (min-width: 768px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

/* Card */
.benefit-card {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at top right, var(--card-accent-color, rgba(64, 145, 108, 0.1)), transparent 70%);
    opacity: 0.5;
    transition: all 0.5s ease;
    border-radius: 0 0 0 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.12);
    border-color: transparent;
}

.benefit-card:hover::before {
    width: 100%;
    height: 100%;
    opacity: 0.1;
    border-radius: 0;
}

/* Icon Wrapper */
.benefit-icon-wrapper {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
    background: var(--white);
    box-shadow: 0 8px 16px -4px rgba(0,0,0,0.1);
}

.benefit-card:hover .benefit-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 20px -5px rgba(0,0,0,0.15);
}

.benefit-icon-wrapper i {
    font-size: 1.75rem;
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

/* Typography */
.benefit-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.benefit-card p {
    color: #6B7280;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* Specific Colors per Card (using CSS variables inline or specific classes) */
.benefit-card:nth-child(1) { --card-accent-color: rgba(37, 99, 235, 0.15); } /* Blue */
.benefit-card:nth-child(2) { --card-accent-color: rgba(147, 51, 234, 0.15); } /* Purple */
.benefit-card:nth-child(3) { --card-accent-color: rgba(22, 163, 74, 0.15); } /* Green */
.benefit-card:nth-child(4) { --card-accent-color: rgba(220, 38, 38, 0.15); } /* Red */
.benefit-card:nth-child(5) { --card-accent-color: rgba(217, 119, 6, 0.15); } /* Amber */
.benefit-card:nth-child(6) { --card-accent-color: rgba(71, 85, 105, 0.15); } /* Slate */

/* Icons Specifics - Overriding text fill for specific gradients if needed, but keeping it simple first */
/* Let's remove the specific background classes from HTML or override them */
.benefit-icon-wrapper.icon-blue i { background: -webkit-linear-gradient(45deg, #2563EB, #60A5FA); -webkit-background-clip: text; }
.benefit-icon-wrapper.icon-purple i { background: -webkit-linear-gradient(45deg, #9333EA, #C084FC); -webkit-background-clip: text; }
.benefit-icon-wrapper.icon-green i { background: -webkit-linear-gradient(45deg, #16A34A, #4ADE80); -webkit-background-clip: text; }
.benefit-icon-wrapper.icon-red i { background: -webkit-linear-gradient(45deg, #DC2626, #F87171); -webkit-background-clip: text; }
.benefit-icon-wrapper.icon-amber i { background: -webkit-linear-gradient(45deg, #D97706, #FBBF24); -webkit-background-clip: text; }
.benefit-icon-wrapper.icon-slate i { background: -webkit-linear-gradient(45deg, #475569, #94A3B8); -webkit-background-clip: text; }

/* Removing old background colors from wrapper if present */
.benefit-icon-wrapper.icon-blue, .benefit-icon-wrapper.icon-purple,
.benefit-icon-wrapper.icon-green, .benefit-icon-wrapper.icon-red,
.benefit-icon-wrapper.icon-amber, .benefit-icon-wrapper.icon-slate {
    background-color: var(--white);
}

/* Number badge (optional element to add in HTML) */
.benefit-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.05;
    color: var(--primary-color);
    line-height: 1;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-number {
    opacity: 0.15;
    transform: scale(1.2);
}

/* Sustainability Banner */
.sustainability-banner {
    margin-top: 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, #1B4332, #2D6A4F);
    border-radius: 2rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(27, 67, 50, 0.4);
}

@media (min-width: 640px) {
    .sustainability-banner { padding: 4rem; }
}

.sust-bg-icon {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.1;
    font-size: 16rem; /* w-64 h-64 approx */
    transform: translate(20%, -20%);
    pointer-events: none;
}

.sust-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem; /* gap-8 */
}

@media (min-width: 1024px) {
    .sust-content { flex-direction: row; text-align: left; }
}

.sust-icon-box {
    width: 5rem; /* w-20 */
    height: 5rem; /* h-20 */
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1rem; /* rounded-2xl */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sust-icon-box i {
    font-size: 2.5rem; /* w-10 h-10 approx */
    color: var(--white);
}

.sust-text-group {
    flex: 1;
    text-align: center;
}

@media (min-width: 1024px) {
    .sust-text-group { text-align: left; }
}

.sust-text-group h3 {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    margin-bottom: 0.75rem; /* mb-3 */
}

@media (min-width: 640px) {
    .sust-text-group h3 { font-size: 1.875rem; /* sm:text-3xl */ }
}

.sust-text-group p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem; /* text-lg */
    max-width: 42rem; /* max-w-2xl */
}

.sust-cta {
    flex-shrink: 0;
}

.btn-sust {
    display: inline-block;
    padding: 0.75rem 1.5rem; /* px-6 py-3 */
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 9999px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-sust:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* About Section */
.about-section {
    background-color: #F5F1EB;
    padding: 5rem 0;
    overflow: hidden;
}

@media (min-width: 640px) {
    .about-section { padding: 7rem 0; }
}

.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

/* Image Composition */
.about-image-composition {
    position: relative;
    padding-bottom: 2rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .about-image-composition {
        padding-right: 2rem;
        padding-bottom: 3rem;
    }
}

.main-image-frame {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
    width: 85%;
    aspect-ratio: 4/5;
    z-index: 1;
}

.main-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-image-composition:hover .main-image-frame img {
    transform: scale(1.05);
}

.secondary-image-frame {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    aspect-ratio: 1;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 6px solid #F5F1EB;
    box-shadow: 0 15px 30px -5px rgba(0,0,0,0.2);
    z-index: 2;
}

.secondary-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Experience Floating Card */
.experience-floating-card {
    position: absolute;
    top: 10%;
    right: -1rem;
    background-color: var(--white);
    padding: 1.25rem;
    border-radius: 1rem;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.15);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

@media (min-width: 640px) {
    .experience-floating-card { 
        right: -2rem;
        padding: 1.5rem;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.exp-card-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.exp-number-box {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(230, 81, 0, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exp-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.exp-text p {
    margin: 0;
    line-height: 1.2;
}

.exp-label {
    color: #6B7280;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.exp-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
}

/* About Content */
.badge-about {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(27, 67, 50, 0.1);
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.025em;
}

.about-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: left;
}

@media (min-width: 640px) {
    .about-title { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
    .about-title { font-size: 3rem; }
}

.about-text-content {
    margin-bottom: 2.5rem;
}

.lead-text {
    font-size: 1.125rem;
    color: #374151;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.secondary-text {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.7;
}

/* Features Grid Modern */
.about-features-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.icon-circle-soft {
    width: 3rem;
    height: 3rem;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    color: var(--secondary-color);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.feature-box:hover .icon-circle-soft {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.feature-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.feature-info p {
    font-size: 0.875rem;
    color: #6B7280;
    margin: 0;
    line-height: 1.4;
}

.btn-about-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(27, 67, 50, 0.3);
}

.btn-about-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(27, 67, 50, 0.4);
}

.btn-about-primary i {
    transition: transform 0.3s ease;
}

.btn-about-primary:hover i {
    transform: translateX(5px);
}

/* Animations (Reusable) */
.animate-slide-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}

.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease-out;
}

.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Gallery Section */
.gallery-section {
    background-color: var(--primary-color);
    padding: 5rem 0; /* py-20 */
}

@media (min-width: 640px) {
    .gallery-section { padding: 7rem 0; /* sm:py-28 */ }
}

.gallery-container {
    max-width: 80rem; /* max-w-7xl */
}

.section-header {
    text-align: center;
    margin-bottom: 4rem; /* mb-16 */
}

.section-header-light {
    text-align: center;
    margin-bottom: 4rem; /* mb-16 */
}

.badge-gallery {
    display: inline-block;
    padding: 0.375rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.875rem; /* text-sm */
    font-weight: 500;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.gallery-title {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .gallery-title { font-size: 2.25rem; /* sm:text-4xl */ }
}
@media (min-width: 1024px) {
    .gallery-title { font-size: 3rem; /* lg:text-5xl */ }
}

.gallery-subtitle {
    color: rgba(255, 255, 255, 0.7);
    max-width: 42rem; /* max-w-2xl */
    margin: 0 auto;
    font-size: 1.125rem; /* text-lg */
}

/* Gallery Masonry */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem; /* gap-4 */
}

@media (min-width: 768px) {
    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 12rem; /* h-48 */
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem; /* rounded-2xl */
    border: none;
    padding: 0;
    cursor: pointer;
    width: 100%;
    height: 12rem; /* h-48 */
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s ease;
}

@media (min-width: 768px) {
    .gallery-item { height: 16rem; /* md:h-64 */ }
    
    .gallery-item.item-large {
        grid-column: span 2;
        grid-row: span 2;
        height: 100%; /* md:h-full */
    }
}

/* Specific heights for mobile layout to match masonry */
.gallery-item.item-large {
    height: 16rem; /* h-64 */
}

@media (min-width: 768px) {
    .gallery-item.item-large { height: 100%; }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    background-color: rgba(0, 0, 0, 0.3);
}

.gallery-tag {
    position: absolute;
    bottom: 1rem; /* bottom-4 */
    left: 1rem; /* left-4 */
    padding: 0.25rem 0.75rem; /* px-3 py-1 */
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    font-size: 0.875rem; /* text-sm */
    font-weight: 500;
    border-radius: 9999px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-tag {
    opacity: 1;
}

/* Animations */
.animate-scale-up {
    animation: scaleUp 0.4s ease-out forwards;
    animation-delay: var(--delay);
}

@keyframes scaleUp {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Lightbox Overlay */
.lightbox, .lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active, .lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem; /* top-6 */
    right: 1.5rem; /* right-6 */
    color: rgba(255, 255, 255, 0.8);
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--white);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
    padding: 1rem;
}

.lightbox-prev:hover, .lightbox-next:hover {
    color: var(--white);
}

.lightbox-prev { left: 1rem; /* left-4 */ }
.lightbox-next { right: 1rem; /* right-4 */ }

@media (min-width: 768px) {
    .lightbox-prev { left: 2rem; /* md:left-8 */ }
    .lightbox-next { right: 2rem; /* md:right-8 */ }
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 100%;
    max-height: 80vh;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
}

/* --- Depoimentos Section (NEW) --- */
.testimonials-section {
    position: relative;
    background-color: var(--white);
    padding: 5rem 0;
    overflow: hidden;
}

@media (min-width: 640px) {
    .testimonials-section { padding: 7rem 0; }
}

.testimonials-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(27, 67, 50, 0.05), transparent);
    pointer-events: none;
}

.testimonials-container {
    position: relative;
    max-width: 80rem; /* max-w-7xl */
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .testimonials-container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
    .testimonials-container { padding: 0 2rem; }
}

.badge-testimonials {
    display: inline-block;
    padding: 0.375rem 1rem;
    background-color: rgba(230, 81, 0, 0.1); /* bg-[#E65100]/10 */
    color: var(--accent-color); /* text-[#E65100] */
    font-size: 0.875rem; /* text-sm */
    font-weight: 500;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.testimonials-title {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .testimonials-title { font-size: 2.25rem; /* sm:text-4xl */ }
}
@media (min-width: 1024px) {
    .testimonials-title { font-size: 3rem; /* lg:text-5xl */ }
}

.testimonials-subtitle {
    color: #4B5563; /* text-gray-600 */
    max-width: 42rem; /* max-w-2xl */
    margin: 0 auto;
    font-size: 1.125rem; /* text-lg */
}

/* Rating Summary */
.rating-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem; /* mb-12 */
}

.stars-row {
    display: flex;
}

.rating-value {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    color: var(--primary-color);
}

.rating-count {
    color: #6B7280; /* text-gray-500 */
}

/* Testimonial Carousel Wrapper */
.testimonial-carousel-wrapper {
    position: relative;
    max-width: 56rem; /* max-w-4xl */
    margin: 0 auto;
}

/* Testimonial Card */
.testimonial-card-modern {
    background-color: var(--white);
    border-radius: 1.5rem; /* rounded-3xl */
    padding: 2rem; /* p-8 */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* shadow-xl */
    border: 1px solid #F3F4F6; /* border-gray-100 */
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (min-width: 640px) {
    .testimonial-card-modern { padding: 3rem; /* sm:p-12 */ }
}

/* Animations for card switch */
.testimonial-card-modern.fade-out {
    opacity: 0;
    transform: translateX(-50px);
}

.testimonial-card-modern.fade-in {
    opacity: 0;
    transform: translateX(50px);
}

.quote-icon {
    margin-bottom: 1.5rem; /* mb-6 */
}

.quote-icon i {
    font-size: 3rem; /* w-12 h-12 approx */
    color: rgba(64, 145, 108, 0.2); /* text-[#40916C]/20 */
}

.testimonial-text {
    color: #374151; /* text-gray-700 */
    font-size: 1.125rem; /* text-lg */
    line-height: 1.625;
    margin-bottom: 2rem; /* mb-8 */
}

@media (min-width: 640px) {
    .testimonial-text { font-size: 1.25rem; /* sm:text-xl */ }
}

.testimonial-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 640px) {
    .testimonial-footer { flex-direction: row; }
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar-img {
    width: 3.5rem; /* w-14 */
    height: 3.5rem; /* h-14 */
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    text-align: left;
}

.author-name {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.author-source {
    color: #6B7280; /* text-gray-500 */
    font-size: 0.875rem; /* text-sm */
    margin-bottom: 0;
}

.testimonial-rating {
    display: flex;
}

/* Controls */
.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem; /* mt-8 */
}

.nav-btn {
    width: 3rem; /* w-12 */
    height: 3rem; /* h-12 */
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid #E5E7EB; /* border-gray-200 */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #4B5563; /* text-gray-600 */
}

.nav-btn:hover {
    background-color: #F9FAFB; /* hover:bg-gray-50 */
    border-color: var(--secondary-color); /* hover:border-[#40916C] */
    color: var(--secondary-color);
}

.dots-container {
    display: flex;
    gap: 0.5rem; /* gap-2 */
}

.dot-indicator {
    width: 0.625rem; /* w-2.5 */
    height: 0.625rem; /* h-2.5 */
    border-radius: 9999px;
    background-color: #D1D5DB; /* bg-gray-300 */
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-indicator:hover {
    background-color: #9CA3AF; /* hover:bg-gray-400 */
}

.dot-indicator.active {
    background-color: var(--secondary-color); /* bg-[#40916C] */
    width: 2rem; /* w-8 */
}

/* --- FAQ Section (NEW) --- */
.faq-section {
    background-color: var(--bg-creme);
    padding: 5rem 0;
}

@media (min-width: 640px) {
    .faq-section { padding: 7rem 0; }
}

.badge-faq {
    display: inline-block;
    padding: 0.375rem 1rem;
    background-color: rgba(64, 145, 108, 0.1);
    color: var(--secondary-color);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.faq-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .faq-title { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
    .faq-title { font-size: 3rem; }
}

.faq-subtitle {
    color: #4B5563;
    max-width: 42rem;
    margin: 0 auto;
    font-size: 1.125rem;
}

.faq-list {
    max-width: 48rem; /* max-w-3xl */
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--white);
    border-radius: 1rem;
    border: 1px solid #E5E7EB;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(64, 145, 108, 0.3);
}

.faq-item.active {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #F9FAFB;
}

.question-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
}

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #4B5563;
    line-height: 1.625;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-creme);
    padding: 5rem 0; /* py-20 */
}

@media (min-width: 640px) {
    .contact-section { padding: 7rem 0; /* sm:py-28 */ }
}

.badge-contact {
    display: inline-block;
    padding: 0.375rem 1rem;
    background-color: rgba(27, 67, 50, 0.1);
    color: var(--primary-color);
    font-size: 0.875rem; /* text-sm */
    font-weight: 500;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.contact-title {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .contact-title { font-size: 2.25rem; /* sm:text-4xl */ }
}
@media (min-width: 1024px) {
    .contact-title { font-size: 3rem; /* lg:text-5xl */ }
}

.contact-subtitle {
    color: #4B5563; /* text-gray-600 */
    max-width: 42rem; /* max-w-2xl */
    margin: 0 auto;
    font-size: 1.125rem; /* text-lg */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem; /* gap-12 */
    margin-top: 4rem; /* mt-16 */
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem; /* lg:gap-16 */
    }
}

/* Contact Info Side */
.contact-info-title {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem; /* mb-8 */
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* space-y-6 */
    margin-bottom: 2.5rem; /* mb-10 */
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem; /* gap-4 */
}

.contact-icon-box {
    width: 3rem; /* w-12 */
    height: 3rem; /* h-12 */
    background-color: var(--primary-color);
    border-radius: 0.75rem; /* rounded-xl */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-box i {
    color: var(--white);
    font-size: 1.25rem; /* w-5 h-5 */
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.875rem; /* text-sm */
    color: #6B7280; /* text-gray-500 */
    margin-bottom: 0;
}

.contact-link, .contact-text {
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.btn-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem; /* gap-3 */
    padding: 1rem 1.5rem; /* px-6 py-4 */
    background-color: #25D366;
    color: var(--white);
    border-radius: 0.75rem; /* rounded-xl */
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 2.5rem; /* mt-10 equiv */
}

.btn-whatsapp-cta:hover {
    background-color: #20BD5A;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp-cta i {
    font-size: 1.5rem; /* w-6 h-6 */
}

.map-container {
    height: 16rem; /* h-64 */
    border-radius: 1rem; /* rounded-2xl */
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Contact Form Side */
.contact-card {
    background-color: var(--white);
    padding: 2rem; /* p-8 */
    border-radius: 1.5rem; /* rounded-3xl */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); /* shadow-xl */
}

@media (min-width: 640px) {
    .contact-card { padding: 2.5rem; /* sm:p-10 */ }
}

.form-title {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem; /* mb-6 */
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem; /* space-y-5 */
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .form-row { grid-template-columns: repeat(2, 1fr); }
}

.form-group label {
    display: block;
    font-size: 0.875rem; /* text-sm */
    font-weight: 500;
    color: #374151; /* text-gray-700 */
    margin-bottom: 0.5rem; /* mb-2 */
}

.form-input, .form-textarea {
    width: 100%;
    border-radius: 0.75rem; /* rounded-xl */
    border: 1px solid #E5E7EB; /* border-gray-200 */
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input {
    height: 3rem; /* h-12 */
}

.form-textarea {
    resize: none;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(64, 145, 108, 0.2);
}

.btn-submit-modern {
    width: 100%;
    height: 3.5rem; /* h-14 */
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 0.75rem; /* rounded-xl */
    font-weight: 600;
    font-size: 1.125rem; /* text-lg */
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-submit-modern:hover {
    background-color: var(--secondary-color);
}

.btn-submit-modern:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-text, .btn-loader {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    background-color: var(--primary-color); /* #1B4332 */
    color: var(--white);
    padding-top: 4rem; /* py-16 */
    padding-bottom: 0; /* Removed extra padding so bottom bar is at the very bottom */
}

.footer-container-main {
    padding-bottom: 4rem;
}

.footer-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem; /* gap-10 */
}

@media (min-width: 768px) {
    .footer-grid-layout { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer-grid-layout {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem; /* lg:gap-8 */
    }
}

/* Brand Column */
.footer-logo-bg {
    background-color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.footer-logo-box {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* gap-3 */
    margin-bottom: 1.5rem; /* mb-6 */
}

.footer-svg-icon {
    width: 3rem; /* w-12 */
    height: 3rem; /* h-12 */
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.footer-brand-name {
    font-weight: 700;
    font-size: 1.25rem; /* text-xl */
    color: var(--white);
}

.footer-brand-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem; /* text-sm */
    margin-bottom: 0;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem; /* text-sm */
    line-height: 1.625;
    margin-bottom: 1.5rem; /* mb-6 */
}

.footer-cnpj {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem; /* text-xs */
}

/* Links & Contact Columns */
.footer-heading {
    font-weight: 700;
    font-size: 1.125rem; /* text-lg */
    margin-bottom: 1.5rem; /* mb-6 */
    color: var(--white);
}

.footer-nav-list, .footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* space-y-3 */
}

.footer-nav-list a, .footer-contact-list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem; /* text-sm */
    transition: color 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem; /* gap-3 */
}

.footer-nav-list a:hover, .footer-contact-list a:hover {
    color: var(--white);
}

.footer-contact-list i {
    font-size: 1rem; /* w-4 h-4 */
    margin-top: 0.125rem;
}

/* Social Column */
.footer-social-icons {
    display: flex;
    gap: 0.75rem; /* gap-3 */
    margin-bottom: 2rem; /* mb-8 */
}

.footer-social-icons a {
    width: 2.5rem; /* w-10 */
    height: 2.5rem; /* h-10 */
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem; /* rounded-lg */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background-color 0.3s ease;
}

.footer-social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-footer-cta {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem; /* px-6 py-3 */
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 0.75rem; /* rounded-xl */
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-footer-cta:hover {
    background-color: var(--accent-hover);
}

/* Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0; /* py-6 */
    margin-top: 3rem; /* Space from main footer content */
    background-color: rgba(0, 0, 0, 0.2); /* Slight darkening for separation */
}

.footer-bottom-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.copyright-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem; /* text-sm */
    margin-bottom: 0;
}

.legal-links {
    display: flex;
    gap: 1.5rem; /* gap-6 */
}

.legal-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem; /* text-sm */
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--white);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 5rem; /* Raised position to avoid footer overlap */
    right: 1.5rem; /* right-6 */
    width: 3.5rem; /* w-14 */
    height: 3.5rem; /* h-14 */
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem; /* w-7 h-7 equivalent icon size */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
    z-index: 1000; /* z-40 */
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20BD5A;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* shadow-xl */
    transform: scale(1.1);
}

.whatsapp-ping {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.3;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
    z-index: -1;
}

.animate-scale-in {
    animation: scaleInBounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; /* spring-like */
    animation-delay: 2s;
    opacity: 0;
    transform: scale(0);
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

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

/* Responsive Utilities */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
}

/* --- CHALET DETAILS PAGES --- */

/* Chalet Hero */
.chalet-hero {
    height: 60vh;
    min-height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 2rem;
}

.chalet-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.chalet-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5), rgba(0,0,0,0.8));
    z-index: 0;
}

.chalet-hero-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    padding: 0 1.5rem;
}

.chalet-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
    .chalet-title { font-size: 3.5rem; }
}

.chalet-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.chalet-subtitle span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chalet-subtitle span::after {
    content: "•";
    margin-left: 1rem;
    opacity: 0.6;
}

.chalet-subtitle span:last-child::after {
    display: none;
}

/* Details Grid */
.chalet-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

@media (min-width: 1024px) {
    .chalet-details-grid {
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }
}

/* Info Section */
.chalet-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-block h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    border-bottom: 2px solid rgba(64, 145, 108, 0.1);
    padding-bottom: 0.75rem;
}

.info-text {
    color: #4B5563;
    font-size: 1.0625rem;
    line-height: 1.8;
}

/* Amenities Grid */
.amenities-list-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .amenities-list-modern { grid-template-columns: repeat(3, 1fr); }
}

.amenity-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #F9FAFB;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.amenity-card:hover {
    background-color: var(--white);
    border-color: rgba(64, 145, 108, 0.2);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.amenity-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(64, 145, 108, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.amenity-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #374151;
}

/* Sticky Booking Sidebar */
.booking-sidebar {
    position: sticky;
    top: 6rem; /* Top offset + header height */
    align-self: start;
}

.booking-card-sticky {
    background-color: var(--white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #F3F4F6;
}

.booking-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-display {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.period {
    color: #6B7280;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.booking-note {
    font-size: 0.875rem;
    color: #6B7280;
}

.booking-features {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4B5563;
    font-size: 0.9375rem;
}

.booking-feature i {
    color: var(--whatsapp-green);
    font-size: 1rem;
}

.booking-trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #F3F4F6;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.trust-badge i {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.trust-badge span {
    font-size: 0.75rem;
    color: #6B7280;
    font-weight: 500;
}

/* Reviews Mini */
.reviews-mini-section {
    margin-top: 3rem;
}

.review-card-mini {
    background-color: #F9FAFB;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.reviewer-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.reviewer-info h4 {
    font-size: 0.9375rem;
    margin: 0;
    color: var(--primary-color);
}

.review-stars {
    color: #FACC15;
    font-size: 0.75rem;
}

.review-text {
    font-size: 0.875rem;
    color: #4B5563;
    font-style: italic;
    line-height: 1.6;
}