/* Estilos específicos da página inicial */

/* Header moderno e estiloso */
.header {
    background: rgba(248, 252, 250, 0.95);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 30px rgba(46, 125, 50, 0.1), 
        0 1px 0 rgba(255, 255, 255, 0.7) inset,
        0 -1px 0 rgba(76, 175, 80, 0.08) inset;
    border-bottom: 1px solid rgba(76, 175, 80, 0.12);
    min-height: 85px;
    padding: 1rem 0;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(76, 175, 80, 0.4) 20%, 
        rgba(102, 187, 106, 0.6) 50%, 
        rgba(76, 175, 80, 0.4) 80%, 
        transparent 100%);
    opacity: 0.7;
}

.header.scrolled {
    background: rgba(248, 252, 250, 0.98);
    box-shadow: 0 8px 40px rgba(46, 125, 50, 0.18), 0 2px 0 rgba(255, 255, 255, 0.7) inset;
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border-bottom: 1px solid rgba(76, 175, 80, 0.2);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-svg {
    height: 50px;
    width: auto;
    max-width: 250px;
    filter: drop-shadow(0 2px 4px rgba(46, 125, 50, 0.15));
    transition: all 0.3s ease;
}

.logo-link:hover .logo-svg {
    filter: drop-shadow(0 5px 12px rgba(76, 175, 80, 0.35));
    transform: translateY(-3px) scale(1.02);
}

.logo-link:hover .logo-icon {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.logo-icon {
    animation: float 4s ease-in-out infinite;
}

.leaf-decoration {
    animation: leafFloat 3s ease-in-out infinite;
}

@keyframes leafFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-2px) rotate(5deg);
        opacity: 1;
    }
}

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

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

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(44, 95, 141, 0.2));
}

.logo-text {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.25);
    border-radius: 10px;
    cursor: pointer;
    padding: 0.75rem;
    gap: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.menu-toggle:hover::before {
    left: 100%;
}

.menu-toggle:hover {
    background: rgba(76, 175, 80, 0.18);
    border-color: rgba(76, 175, 80, 0.4);
    transform: scale(1.05);
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: linear-gradient(90deg, #4caf50, #66bb6a);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(76, 175, 80, 0.3);
    position: relative;
}

.menu-toggle.active {
    background: rgba(76, 175, 80, 0.25);
    border-color: #4caf50;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
    background: linear-gradient(90deg, #4caf50, #66bb6a);
    box-shadow: 0 2px 5px rgba(76, 175, 80, 0.4);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
    background: linear-gradient(90deg, #4caf50, #66bb6a);
    box-shadow: 0 2px 5px rgba(76, 175, 80, 0.4);
}

.admin-link {
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 50%, #66bb6a 100%) !important;
    background-size: 200% 200% !important;
    color: #ffffff !important;
    padding: 0.9rem 1.8rem !important;
    border-radius: 12px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 
        0 4px 20px rgba(46, 125, 50, 0.4),
        0 2px 0 rgba(255, 255, 255, 0.15) inset,
        0 -1px 0 rgba(0, 0, 0, 0.1) inset !important;
    font-weight: 700 !important;
    position: relative !important;
    overflow: hidden !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    font-size: 0.875rem !important;
    border: none !important;
    margin-left: 0.5rem !important;
    animation: gradientShift 3s ease infinite !important;
    z-index: 1 !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.admin-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.admin-link:hover::before {
    left: 100%;
}

.admin-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    z-index: -1;
}

.admin-link:hover::after {
    opacity: 1;
}

.admin-link:hover {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #1b5e20 100%) !important;
    background-size: 200% 200% !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 
        0 8px 30px rgba(46, 125, 50, 0.5),
        0 4px 0 rgba(255, 255, 255, 0.2) inset,
        0 -2px 0 rgba(0, 0, 0, 0.15) inset !important;
    animation-play-state: paused !important;
}

.admin-link:active {
    transform: translateY(-1px) scale(1.02) !important;
}

/* Garantir que admin-link não herde efeitos do nav-link */
.nav-link.admin-link::before {
    display: block !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 12px !important;
    opacity: 1 !important;
}

.nav-link.admin-link::after {
    display: block !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%) !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: auto !important;
    height: auto !important;
    border-radius: 12px !important;
    transform: none !important;
    box-shadow: none !important;
}

.nav-social-mobile {
    display: none;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Container do Header */
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    position: relative;
    min-height: 65px;
}

.header .container::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(76, 175, 80, 0.15) 20%,
        rgba(102, 187, 106, 0.25) 50%,
        rgba(76, 175, 80, 0.15) 80%,
        transparent 100%);
    opacity: 0.6;
}

/* Navegação */
.nav {
    display: flex;
    gap: 0.15rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none !important;
    color: #3d5a47 !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.85rem 1.4rem;
    border-radius: 10px;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    letter-spacing: 0.2px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    z-index: 1;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(76, 175, 80, 0.08) 0%, 
        rgba(102, 187, 106, 0.1) 50%,
        rgba(76, 175, 80, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        #4caf50 30%,
        #66bb6a 70%,
        transparent 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px 3px 0 0;
    box-shadow: 0 -2px 8px rgba(76, 175, 80, 0.35);
}

.nav-link:hover {
    color: #2e7d32 !important;
    transform: translateY(-2px);
    text-shadow: 0 1px 3px rgba(76, 175, 80, 0.15);
}

.nav-link:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, 
        rgba(76, 175, 80, 0.12) 0%, 
        rgba(102, 187, 106, 0.15) 50%,
        rgba(76, 175, 80, 0.12) 100%);
}

.nav-link:hover::after {
    width: 75%;
    box-shadow: 0 -2px 10px rgba(76, 175, 80, 0.4);
}

.nav-link.active {
    color: #2e7d32 !important;
    font-weight: 600;
    background: linear-gradient(135deg, 
        rgba(76, 175, 80, 0.15) 0%, 
        rgba(102, 187, 106, 0.18) 50%,
        rgba(76, 175, 80, 0.15) 100%);
    box-shadow: 
        0 2px 6px rgba(46, 125, 50, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.nav-link.active::before {
    opacity: 1;
}

.nav-link.active::after {
    width: 75%;
    height: 3px;
    box-shadow: 0 -2px 10px rgba(76, 175, 80, 0.45);
}

/* Hero Section Moderno - Layout com Imagem e Texto */
.hero-section-modern {
    min-height: 100vh;
    position: relative;
    margin-top: 85px;
    padding: 6rem 0;
    background: linear-gradient(180deg, 
        #f0f7f4 0%, 
        #e8f4f0 25%,
        #d4e8e0 50%,
        #c5e0d5 75%,
        #b8d8ca 100%);
    overflow: hidden;
}

.hero-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(76, 175, 80, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(56, 142, 60, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(129, 199, 132, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    animation: natureGlow 8s ease-in-out infinite alternate;
}

@keyframes natureGlow {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero-section-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20,20 Q30,10 40,20 T60,20' stroke='rgba(76,175,80,0.03)' fill='none' stroke-width='1'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='15' fill='rgba(56,142,60,0.02)'/%3E%3C/svg%3E");
    background-size: 200px 200px, 150px 150px;
    background-position: 0 0, 100px 100px;
    opacity: 0.4;
    animation: naturePattern 30s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes naturePattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(200px, 200px); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Conteúdo de Texto */
.hero-text-content {
    padding: 3rem 0;
    animation: fadeInUp 1.2s ease-out;
    position: relative;
}

.hero-text-content::before {
    content: '🌿';
    position: absolute;
    left: -20px;
    top: 0;
    font-size: 3rem;
    opacity: 0.2;
    animation: leafFloat 4s ease-in-out infinite;
    z-index: 0;
}

.hero-text-content::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        rgba(76, 175, 80, 0.8) 0%, 
        rgba(56, 142, 60, 0.6) 50%,
        rgba(76, 175, 80, 0.8) 100%);
    border-radius: 2px;
    opacity: 0.6;
    animation: lineGrow 1.2s ease-out 0.5s both;
}

@keyframes lineGrow {
    from {
        height: 0;
        top: 50%;
    }
    to {
        height: 100%;
        top: 0;
    }
}

@keyframes leafFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}


.hero-title-modern {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.hero-title-greeting {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #4a7c59;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero-title-main {
    display: block;
    font-family: 'Space Grotesk', 'Inter', 'Segoe UI', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, 
        #2e7d32 0%, 
        #4caf50 30%,
        #66bb6a 50%,
        #4caf50 70%,
        #2e7d32 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -2.5px;
    margin-bottom: 2rem;
    position: relative;
    animation: gradientShift 6s ease infinite;
    filter: drop-shadow(0 4px 20px rgba(46, 125, 50, 0.15));
    text-transform: none;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.8;
    color: #3d5a47;
    margin-bottom: 3rem;
    max-width: 100%;
    position: relative;
    padding-left: 2rem;
    padding-right: 1rem;
}

.hero-description::before {
    content: '🌱';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 1.5rem;
    opacity: 0.4;
    animation: plantGrow 3s ease-in-out infinite;
}

@keyframes plantGrow {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 3rem;
    max-width: 100%;
    position: relative;
    padding: 1.5rem 0;
}

.hero-features::after {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    right: -10px;
    bottom: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(44, 95, 141, 0.03), transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(74, 144, 164, 0.03), transparent 50%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

.hero-features:hover::after {
    opacity: 1;
}

.hero-features::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(44, 95, 141, 0.05), transparent 70%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.hero-features:hover::before {
    opacity: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 1.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 252, 250, 0.98) 100%);
    border: 2px solid rgba(76, 175, 80, 0.15);
    border-radius: 18px;
    box-shadow: 
        0 8px 30px rgba(46, 125, 50, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #2e7d32;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out both;
    backdrop-filter: blur(10px);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(76, 175, 80, 0.2), 
        rgba(102, 187, 106, 0.2),
        transparent);
    transition: left 0.6s ease;
    z-index: 0;
    border-radius: 16px;
}

.feature-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    filter: blur(10px);
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover::after {
    opacity: 0.3;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        filter: blur(8px);
    }
    50% {
        opacity: 0.5;
        filter: blur(12px);
    }
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(44, 95, 141, 0.2), 
        rgba(74, 144, 164, 0.2),
        transparent);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    border-radius: 14px;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 15px 50px rgba(46, 125, 50, 0.2),
        0 8px 25px rgba(76, 175, 80, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(248, 252, 250, 1) 100%);
}

.feature-item span:not(.feature-icon) {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.feature-item:hover span:not(.feature-icon) {
    color: #2e7d32;
}

.feature-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(46, 125, 50, 0.2));
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 1;
    display: inline-block;
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(8deg) translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(76, 175, 80, 0.4));
}

/* Efeito de pulso nos ícones */
@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.feature-item:active .feature-icon {
    animation: iconPulse 0.3s ease;
}


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

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    letter-spacing: 0.3px;
    cursor: pointer;
    z-index: 1;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-modern:hover::before {
    width: 400px;
    height: 400px;
}

.btn-modern span,
.btn-modern svg {
    position: relative;
    z-index: 2;
}

.btn-modern svg {
    width: 22px;
    height: 22px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.btn-modern:active {
    transform: scale(0.98);
}

.btn-primary-modern {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    background-size: 200% 200%;
    color: white;
    box-shadow: 
        0 8px 30px rgba(44, 95, 141, 0.4),
        0 4px 15px rgba(44, 95, 141, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset,
        0 -2px 0 rgba(0, 0, 0, 0.1) inset;
    animation: gradientMove 3s ease infinite;
    position: relative;
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.btn-primary-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        transparent 50%,
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.btn-primary-modern:hover::after {
    opacity: 1;
}

.btn-primary-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary-modern:hover::before {
    left: 100%;
}

.btn-primary-modern:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 
        0 18px 55px rgba(46, 125, 50, 0.5),
        0 8px 25px rgba(76, 175, 80, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.25) inset,
        0 -3px 0 rgba(0, 0, 0, 0.1) inset,
        0 0 35px rgba(76, 175, 80, 0.4);
    animation-play-state: paused;
    background: linear-gradient(135deg, #66bb6a, #81c784);
}

.btn-primary-modern:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 30px rgba(44, 95, 141, 0.4),
        0 4px 15px rgba(44, 95, 141, 0.25);
}

.btn-primary-modern:hover svg {
    transform: translateX(8px) scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.btn-outline-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px) saturate(180%);
    color: #2e7d32;
    border: 2px solid rgba(76, 175, 80, 0.3);
    box-shadow: 
        0 6px 20px rgba(46, 125, 50, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset,
        0 2px 0 rgba(255, 255, 255, 0.8) inset;
    position: relative;
}

.btn-outline-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(44, 95, 141, 0.05) 0%, 
        transparent 50%,
        rgba(74, 144, 164, 0.05) 100%);
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.btn-outline-modern:hover::after {
    opacity: 1;
}

.btn-outline-modern:hover {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    border-color: transparent;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 
        0 15px 45px rgba(46, 125, 50, 0.4),
        0 6px 20px rgba(76, 175, 80, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset,
        0 0 30px rgba(76, 175, 80, 0.3);
}

.btn-outline-modern:hover span,
.btn-outline-modern:hover svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.btn-outline-modern:active {
    transform: translateY(-2px) scale(1.02);
}

/* Conteúdo de Imagem */
.hero-image-content {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(46, 125, 50, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset,
        0 0 120px rgba(76, 175, 80, 0.15);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #ffffff, #f1f8f4);
    padding: 12px;
}

.hero-image-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 40px 100px rgba(46, 125, 50, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.25) inset,
        0 0 180px rgba(76, 175, 80, 0.2);
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-image-wrapper:hover::after {
    opacity: 1;
}

.hero-main-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 24px;
    filter: brightness(1.05) contrast(1.08) saturate(1.1);
}

.hero-image-wrapper:hover .hero-main-image {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.08);
}

.image-decoration {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.15), rgba(74, 144, 164, 0.15));
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
    filter: blur(40px);
    opacity: 0.7;
}

.image-decoration-1 {
    width: 250px;
    height: 250px;
    top: -80px;
    right: -80px;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(44, 95, 141, 0.2), rgba(74, 144, 164, 0.1));
}

.image-decoration-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(74, 144, 164, 0.2), rgba(44, 95, 141, 0.1));
}

.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(44, 95, 141, 0.08) 0%, transparent 40%),
        linear-gradient(225deg, transparent 60%, rgba(74, 144, 164, 0.08) 100%);
    pointer-events: none;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-image-wrapper:hover .image-overlay-gradient {
    opacity: 1;
}

/* Cards Flutuantes */
.floating-card {
    position: absolute;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98), 
        rgba(248, 252, 250, 0.95));
    padding: 1.3rem 2rem;
    border-radius: 20px;
    box-shadow: 
        0 18px 55px rgba(46, 125, 50, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset,
        0 3px 12px rgba(76, 175, 80, 0.12);
    display: flex;
    align-items: center;
    gap: 1.3rem;
    animation: floatCard 4s ease-in-out infinite;
    z-index: 3;
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(76, 175, 80, 0.15);
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 
        0 25px 70px rgba(46, 125, 50, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.95) inset,
        0 5px 18px rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.3);
}

.card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    left: -20px;
    animation-delay: 1s;
}

.card-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

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

.card-content {
    display: flex;
    flex-direction: column;
}

.card-number {
    font-size: 1.7rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2e7d32, #4caf50, #66bb6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
}

.card-label {
    font-size: 0.9rem;
    color: #4a7c59;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* Decoração Inferior */
.hero-bottom-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    color: rgba(240, 247, 244, 1);
    z-index: 1;
    opacity: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-bottom-decoration svg {
    width: 100%;
    height: 100%;
    display: block;
    animation: waveFlow 10s ease-in-out infinite;
}

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

.hero-bottom-decoration path {
    transition: all 0.5s ease;
    filter: drop-shadow(0 -2px 10px rgba(46, 125, 50, 0.08));
}

.hero-bottom-decoration path:nth-child(1) {
    animation: waveFloat1 10s ease-in-out infinite;
}

.hero-bottom-decoration path:nth-child(2) {
    animation: waveFloat2 12s ease-in-out infinite;
    animation-delay: -3s;
}

.hero-bottom-decoration path:nth-child(3) {
    animation: waveFloat3 14s ease-in-out infinite;
    animation-delay: -6s;
}

@keyframes waveFloat1 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 1;
    }
    50% {
        transform: translateY(-3px) translateX(2px);
        opacity: 0.95;
    }
}

@keyframes waveFloat2 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-2px) translateX(-2px);
        opacity: 0.7;
    }
}

@keyframes waveFloat3 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-1px) translateX(1px);
        opacity: 0.5;
    }
}

/* Animações */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section antigo (manter para compatibilidade se necessário) */
.hero-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 95px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1e4263 0%, #2c5f8d 25%, #4a90a4 50%, #5aa3b8 75%, #6ab4cc 100%);
    background-image: url('https://hotelfazendasaojoao.com.br/wp-content/uploads/2024/08/IMG_8306-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 0;
    animation: backgroundZoom 20s ease-in-out infinite;
}

@keyframes backgroundZoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 211, 59, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    background-size: 100% 100%;
    animation: patternMove 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes patternMove {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    overflow: hidden;
    z-index: 2;
}

.wave-svg {
    width: 100%;
    height: 100%;
    animation: waveMove 8s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-50px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(30, 66, 99, 0.75) 0%, 
        rgba(44, 95, 141, 0.65) 25%,
        rgba(74, 144, 164, 0.6) 50%,
        rgba(90, 163, 184, 0.65) 75%,
        rgba(106, 180, 204, 0.7) 100%);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 33% 90%, white, transparent);
    background-size: 200% 200%;
    background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%, 50% 50%, 0% 50%;
    animation: particlesFloat 15s ease-in-out infinite;
    opacity: 0.6;
    z-index: 3;
}

@keyframes particlesFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    position: relative;
    z-index: 4;
    color: white;
    max-width: 900px;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInDown 1s ease 0.2s both;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-title-line1 {
    display: block;
    font-size: 2.5rem;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 0.5rem;
}

.hero-title-line2 {
    display: block;
    background: linear-gradient(135deg, #fff 0%, #ffd43b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.5s both;
    line-height: 1.6;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.7s both;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero span,
.btn-hero svg {
    position: relative;
    z-index: 1;
}

.btn-hero svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-hero:hover svg {
    transform: translateX(5px);
}

.btn-primary-hero {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    color: var(--primary-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-primary-hero:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    color: white;
}

.btn-secondary-hero {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary-hero:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 35px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Seção de Reservas */
.booking-section {
    padding: 6rem 0;
    background: linear-gradient(165deg, #eef9f2 0%, #e3f2e9 25%, #d8ebe0 50%, #e3f2e9 75%, #eef9f2 100%);
    background-size: 100% 400%;
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 30%, rgba(76, 175, 80, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 80% 70%, rgba(102, 187, 106, 0.08) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(129, 199, 132, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.booking-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(76, 175, 80, 0.05) 1.2px, transparent 1.2px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

.booking-section .container {
    position: relative;
    z-index: 1;
}

.booking-section .container::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, #4caf50 25%, #66bb6a 50%, #81c784 75%, transparent 100%);
    border-radius: 3px;
    opacity: 0.7;
    z-index: 2;
}

.booking-section .section-title {
    margin-bottom: 0.5rem;
}

.booking-section .section-subtitle {
    margin-bottom: 2.5rem;
    color: #3d6b47;
    font-weight: 500;
    font-size: 1.15rem;
}

.booking-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    margin-top: 2rem;
}

.booking-form-wrapper {
    min-width: 0;
}

.booking-section .booking-form {
    max-width: none;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 252, 250, 0.98) 100%);
    padding: 2.5rem 3rem;
    border-radius: 24px;
    box-shadow: 
        0 12px 48px rgba(46, 125, 50, 0.12),
        0 2px 0 rgba(255, 255, 255, 0.9) inset,
        0 -1px 0 rgba(76, 175, 80, 0.08) inset;
    border: 2px solid rgba(76, 175, 80, 0.12);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.booking-section .booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #2e7d32 0%, #4caf50 30%, #66bb6a 60%, #81c784 100%);
    border-radius: 24px 24px 0 0;
}

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

.booking-section .booking-form label {
    font-weight: 600;
    color: #2e3d32;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.booking-section .booking-form input[type="text"],
.booking-section .booking-form input[type="email"],
.booking-section .booking-form input[type="tel"],
.booking-section .booking-form input[type="date"],
.booking-section .booking-form select {
    padding: 0.9rem 1.1rem;
    border-radius: 14px;
    border: 2px solid rgba(76, 175, 80, 0.15);
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-section .booking-form input:focus,
.booking-section .booking-form select:focus {
    outline: none;
    border-color: rgba(76, 175, 80, 0.5);
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.12);
    background: #fff;
}

.booking-section .booking-form .form-row {
    gap: 1.5rem;
}

.booking-section .booking-form #availabilityMessage {
    border-radius: 12px;
    padding: 0.85rem 1rem;
}

.booking-section .booking-form .total-display {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, rgba(102, 187, 106, 0.05) 100%);
    padding: 2rem 2.5rem;
    border-radius: 20px;
    margin: 2rem 0;
    border: 2px solid rgba(76, 175, 80, 0.15);
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.08);
}

.booking-section .booking-form .total-display h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #2e7d32;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.booking-section .booking-form .total-amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.35rem;
}

.booking-section .booking-form .total-nights {
    color: #4a7c59;
    font-size: 1.05rem;
    font-weight: 500;
}

.booking-section .booking-form .btn-primary {
    padding: 1rem 2rem;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    box-shadow: 0 6px 24px rgba(46, 125, 50, 0.25);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-section .booking-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(46, 125, 50, 0.35);
}

.booking-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(46, 125, 50, 0.18),
        0 0 0 1px rgba(76, 175, 80, 0.1),
        0 8px 0 rgba(76, 175, 80, 0.08);
    border: 2px solid rgba(76, 175, 80, 0.15);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    align-self: stretch;
    min-height: 0;
}

.booking-image:hover {
    box-shadow: 
        0 28px 70px rgba(46, 125, 50, 0.22),
        0 0 0 2px rgba(76, 175, 80, 0.2),
        0 10px 0 rgba(76, 175, 80, 0.12);
    transform: scale(1.012);
}

.booking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.booking-image::after {
    content: 'Chalé Iguana — Suíte mais exclusiva';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    text-align: center;
    color: #4a7c59;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.accommodations-section .section-subtitle {
    position: relative;
    display: inline-block;
    padding: 0 3rem;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
    margin: 0 auto;
    width: auto;
}

.accommodations-section .section-subtitle::before,
.accommodations-section .section-subtitle::after {
    content: '🌿';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    opacity: 0.5;
    animation: leafFloat 3s ease-in-out infinite;
}

.accommodations-section .section-subtitle::before {
    left: 0;
}

.accommodations-section .section-subtitle::after {
    right: 0;
    animation-delay: 1.5s;
}

@keyframes leafFloat {
    0%, 100% {
        opacity: 0.4;
        transform: translateY(-50%) rotate(0deg);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-50%) rotate(10deg);
    }
}

.btn-block {
    width: 100%;
}

/* Acomodações */
.accommodations-section {
    padding: 8rem 0 6rem 0;
    margin-top: -50px;
    background: linear-gradient(180deg, 
        #f0f7f4 0%,
        #f8fcf9 15%,
        #ffffff 30%,
        #f8fcf9 50%,
        #f0f7f4 70%,
        #e8f4f0 100%);
    position: relative;
    overflow: hidden;
}

.accommodations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 15% 15%, rgba(76, 175, 80, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 85%, rgba(102, 187, 106, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(129, 199, 132, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: naturePulse 8s ease-in-out infinite alternate;
}

.accommodations-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60,20 Q40,40 60,60 Q80,40 60,20' fill='none' stroke='rgba(76,175,80,0.03)' stroke-width='1'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='20' fill='none' stroke='rgba(102,187,106,0.02)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 200px 200px, 150px 150px;
    background-position: 0 0, 100px 100px;
    opacity: 0.5;
    animation: naturePattern 25s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes naturePulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes naturePattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(200px, 200px); }
}

.accommodations-section .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.accommodations-section .section-title,
.accommodations-section .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.accommodations-section .section-title {
    animation: fadeInDown 0.8s ease-out;
    position: relative;
}

.accommodations-section .section-title::after {
    content: '🌿';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    opacity: 0.3;
    animation: leafSway 3s ease-in-out infinite;
}

.accommodations-section .section-title::before {
    content: '🌿';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    opacity: 0.3;
    animation: leafSway 3s ease-in-out infinite 1.5s;
}

@keyframes leafSway {
    0%, 100% {
        transform: translateY(-50%) rotate(0deg);
    }
    50% {
        transform: translateY(-50%) rotate(10deg);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gastronomia */
.gastronomy-section {
    padding: 6rem 0;
    background: linear-gradient(165deg, 
        #eef9f2 0%, 
        #e3f2e9 25%, 
        #d8ebe0 50%, 
        #e3f2e9 75%, 
        #eef9f2 100%);
    background-size: 100% 400%;
    position: relative;
    overflow: hidden;
}

.gastronomy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 30%, rgba(76, 175, 80, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 80% 70%, rgba(102, 187, 106, 0.1) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(129, 199, 132, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.gastronomy-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(76, 175, 80, 0.06) 1.2px, transparent 1.2px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.85;
}

/* Linha decorativa no topo da seção */
.gastronomy-section .container::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, 
        transparent 0%,
        #4caf50 25%,
        #66bb6a 50%,
        #81c784 75%,
        transparent 100%);
    border-radius: 3px;
    opacity: 0.7;
    animation: gastronomyLineGlow 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes gastronomyLineGlow {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 0.9; transform: translateX(-50%) scaleX(1.15); }
}

.gastronomy-section .container {
    position: relative;
    z-index: 1;
}

/* Título e subtítulo da gastronomia */
.gastronomy-section .section-title {
    margin-bottom: 0.5rem;
    text-align: left;
}

.gastronomy-section .section-subtitle {
    display: block;
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: #3d6b47;
    letter-spacing: 0.3px;
}

/* Badge decorativo acima do título */
.gastronomy-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    margin-bottom: 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2e7d32;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(129, 199, 132, 0.1) 100%);
    border: 1px solid rgba(76, 175, 80, 0.25);
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(46, 125, 50, 0.08);
    animation: gastronomyBadgeFade 0.6s ease-out both;
}

@keyframes gastronomyBadgeFade {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.gastronomy-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

/* Card do texto - área esquerda */
.gastronomy-text {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 252, 250, 0.98) 100%);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 
        0 10px 40px rgba(46, 125, 50, 0.1),
        0 2px 0 rgba(255, 255, 255, 0.9) inset,
        0 -1px 0 rgba(76, 175, 80, 0.08) inset;
    border: 2px solid rgba(76, 175, 80, 0.12);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    animation: gastronomyTextFade 0.8s ease-out both;
}

.gastronomy-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, 
        #2e7d32 0%, 
        #4caf50 30%,
        #66bb6a 60%,
        #81c784 100%);
    border-radius: 24px 24px 0 0;
}

@keyframes gastronomyTextFade {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gastronomy-text p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: #4a7c59;
    margin-bottom: 2rem;
}

/* Lista de recursos - estilo card para cada item */
.gastronomy-section .features-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.gastronomy-section .features-list li {
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: #2e3d32;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, 
        rgba(76, 175, 80, 0.06) 0%, 
        rgba(102, 187, 106, 0.04) 100%);
    border: 1px solid rgba(76, 175, 80, 0.12);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    animation: gastronomyItemFade 0.6s ease-out both;
}

.gastronomy-section .features-list .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.15rem;
    line-height: 1;
    flex-shrink: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 252, 250, 0.95) 100%);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.1), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    border: 1px solid rgba(76, 175, 80, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gastronomy-section .features-list li:nth-child(1) { animation-delay: 0.1s; }
.gastronomy-section .features-list li:nth-child(2) { animation-delay: 0.15s; }
.gastronomy-section .features-list li:nth-child(3) { animation-delay: 0.2s; }
.gastronomy-section .features-list li:nth-child(4) { animation-delay: 0.25s; }
.gastronomy-section .features-list li:nth-child(5) { animation-delay: 0.3s; }

@keyframes gastronomyItemFade {
    from {
        opacity: 0;
        transform: translateX(-12px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gastronomy-section .features-list li:hover {
    background: linear-gradient(135deg, 
        rgba(76, 175, 80, 0.12) 0%, 
        rgba(102, 187, 106, 0.1) 100%);
    border-color: rgba(76, 175, 80, 0.25);
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.12);
}

.gastronomy-section .features-list li:hover .feature-icon {
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(46, 125, 50, 0.18), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.gastronomy-section .features-list li:last-child {
    border-bottom: none;
}

/* Área da imagem / slider */
.gastronomy-image {
    position: relative;
    height: 100%;
    animation: gastronomyImageFade 0.9s ease-out 0.2s both;
}

@keyframes gastronomyImageFade {
    from {
        opacity: 0;
        transform: translateX(24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gastronomy-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(46, 125, 50, 0.18),
        0 0 0 1px rgba(76, 175, 80, 0.1),
        0 8px 0 rgba(76, 175, 80, 0.08);
    border: 2px solid rgba(76, 175, 80, 0.15);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.gastronomy-slider:hover {
    box-shadow: 
        0 28px 70px rgba(46, 125, 50, 0.22),
        0 0 0 2px rgba(76, 175, 80, 0.2),
        0 10px 0 rgba(76, 175, 80, 0.12);
    transform: scale(1.008);
}

.gastronomy-slider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.5) 0%, 
        rgba(0, 0, 0, 0.2) 40%,
        transparent 100%);
    pointer-events: none;
    z-index: 5;
}

.gastronomy-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* Setas de navegação do slider */
.gastronomy-slider-prev,
.gastronomy-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    border: 2px solid rgba(76, 175, 80, 0.2);
    border-radius: 50%;
    color: #2e7d32;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.15), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.gastronomy-slider-prev {
    left: 16px;
}

.gastronomy-slider-next {
    right: 16px;
}

.gastronomy-slider-prev:hover,
.gastronomy-slider-next:hover {
    background: #fff;
    border-color: rgba(76, 175, 80, 0.4);
    color: #1b5e20;
    box-shadow: 0 6px 28px rgba(46, 125, 50, 0.22), 0 1px 0 rgba(255, 255, 255, 1) inset;
    transform: translateY(-50%) scale(1.08);
}

.gastronomy-slider-prev:active,
.gastronomy-slider-next:active {
    transform: translateY(-50%) scale(0.98);
}

.gastronomy-slider-prev svg,
.gastronomy-slider-next svg {
    flex-shrink: 0;
}

.gastronomy-slider-images {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.gastronomy-slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gastronomy-slider-image.active {
    opacity: 1;
    z-index: 1;
}

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

/* Indicadores do slider - estilo moderno */
.gastronomy-slider-indicators {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.gastronomy-slider-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.gastronomy-slider-indicator.active {
    background: #fff;
    transform: scale(1.35);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    border-color: #fff;
}

.gastronomy-slider-indicator:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.9);
}

.gastronomy-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: var(--shadow-lg);
}

.image-placeholder p {
    margin-top: 1rem;
    font-size: 1.2rem;
}

/* Lazer */
.leisure-section {
    padding: 6rem 0;
    background: linear-gradient(165deg, 
        #eef9f2 0%, 
        #e8f5ed 20%,
        #f0faf4 50%,
        #e8f5ed 80%,
        #eef9f2 100%);
    position: relative;
    overflow: hidden;
}

.leisure-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 70% 45% at 10% 20%, rgba(76, 175, 80, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 90% 80%, rgba(102, 187, 106, 0.08) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(129, 199, 132, 0.04) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* Linha decorativa no topo */
.leisure-section .container::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, 
        transparent 0%,
        #4caf50 30%,
        #66bb6a 50%,
        #81c784 70%,
        transparent 100%);
    border-radius: 3px;
    opacity: 0.7;
    animation: leisureLineGlow 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes leisureLineGlow {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 0.95; transform: translateX(-50%) scaleX(1.2); }
}

.leisure-section .container {
    position: relative;
    z-index: 1;
}

.leisure-section .section-subtitle {
    margin-bottom: 2.5rem;
}

.leisure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.leisure-card {
    text-align: center;
    padding: 2.25rem 2rem;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 252, 250, 0.98) 100%);
    border-radius: 24px;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(76, 175, 80, 0.12);
    box-shadow: 
        0 8px 32px rgba(46, 125, 50, 0.08),
        0 2px 0 rgba(255, 255, 255, 0.9) inset,
        0 -1px 0 rgba(76, 175, 80, 0.06) inset;
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
    animation: leisureCardFade 0.7s ease-out both;
}

.leisure-card:nth-child(1) { animation-delay: 0.05s; }
.leisure-card:nth-child(2) { animation-delay: 0.1s; }
.leisure-card:nth-child(3) { animation-delay: 0.15s; }
.leisure-card:nth-child(4) { animation-delay: 0.2s; }
.leisure-card:nth-child(5) { animation-delay: 0.25s; }
.leisure-card:nth-child(6) { animation-delay: 0.3s; }

@keyframes leisureCardFade {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.leisure-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        #2e7d32 0%, 
        #4caf50 40%,
        #66bb6a 60%,
        #81c784 100%);
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.leisure-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 24px 56px rgba(46, 125, 50, 0.18),
        0 4px 0 rgba(76, 175, 80, 0.08),
        0 2px 0 rgba(255, 255, 255, 0.95) inset;
    border-color: rgba(76, 175, 80, 0.25);
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(248, 252, 250, 1) 100%);
}

.leisure-card:hover::before {
    opacity: 1;
}

/* Imagem em container estilizado */
.leisure-icon {
    margin-bottom: 1.25rem;
    width: 142px;
    height: 142px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(76, 175, 80, 0.08) 0%, 
        rgba(102, 187, 106, 0.06) 100%);
    border-radius: 24px;
    border: 2px solid rgba(76, 175, 80, 0.12);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.leisure-card:hover .leisure-icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, 
        rgba(76, 175, 80, 0.14) 0%, 
        rgba(102, 187, 106, 0.1) 100%);
    border-color: rgba(76, 175, 80, 0.25);
    box-shadow: 0 8px 24px rgba(46, 125, 50, 0.15);
}

.leisure-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.6rem;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.4px;
    transition: filter 0.3s ease;
}

.leisure-card:hover h3 {
    filter: drop-shadow(0 2px 6px rgba(76, 175, 80, 0.2));
}

.leisure-card p {
    color: #4a7c59;
    line-height: 1.65;
    font-size: 1rem;
    font-weight: 500;
}

/* Galeria */
.gallery-section {
    padding: 6rem 0;
    background: linear-gradient(165deg, #eef9f2 0%, #e3f2e9 25%, #d8ebe0 50%, #e3f2e9 75%, #eef9f2 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 30%, rgba(76, 175, 80, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 80% 70%, rgba(102, 187, 106, 0.08) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(129, 199, 132, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.gallery-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(76, 175, 80, 0.05) 1.2px, transparent 1.2px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.85;
}

.gallery-section .container {
    position: relative;
    z-index: 1;
}

.gallery-section .container::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, #4caf50 25%, #66bb6a 50%, #81c784 75%, transparent 100%);
    border-radius: 3px;
    opacity: 0.7;
    z-index: 2;
}

.gallery-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    margin-bottom: 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2e7d32;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(129, 199, 132, 0.1) 100%);
    border: 1px solid rgba(76, 175, 80, 0.25);
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(46, 125, 50, 0.08);
    animation: galleryBadgeFade 0.6s ease-out both;
}

@keyframes galleryBadgeFade {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.gallery-section .section-title {
    margin-bottom: 0.5rem;
}

.gallery-section .section-subtitle {
    margin-bottom: 2.5rem;
    color: #3d6b47;
    font-weight: 500;
    font-size: 1.15rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 2px solid rgba(76, 175, 80, 0.12);
    box-shadow: 
        0 8px 24px rgba(46, 125, 50, 0.12),
        0 2px 0 rgba(255, 255, 255, 0.8) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: galleryItemFade 0.7s ease-out both;
}

.gallery-item:nth-child(1) { animation-delay: 0.05s; }
.gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-item:nth-child(3) { animation-delay: 0.15s; }
.gallery-item:nth-child(4) { animation-delay: 0.2s; }
.gallery-item:nth-child(5) { animation-delay: 0.25s; }
.gallery-item:nth-child(6) { animation-delay: 0.3s; }

@keyframes galleryItemFade {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 40%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 48px rgba(46, 125, 50, 0.2),
        0 0 0 2px rgba(76, 175, 80, 0.2),
        0 4px 0 rgba(76, 175, 80, 0.08);
    border-color: rgba(76, 175, 80, 0.25);
}

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

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.08);
}

.gallery-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2e7d32, #4caf50, #66bb6a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-image-placeholder {
    background: linear-gradient(135deg, #4caf50, #66bb6a, #81c784);
}

.gallery-image-placeholder span {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.gallery-image-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Contato */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(165deg, #eef9f2 0%, #e3f2e9 25%, #d8ebe0 50%, #e3f2e9 75%, #eef9f2 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 30%, rgba(76, 175, 80, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 80% 70%, rgba(102, 187, 106, 0.08) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(129, 199, 132, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(76, 175, 80, 0.05) 1.2px, transparent 1.2px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-section .container::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, #4caf50 25%, #66bb6a 50%, #81c784 75%, transparent 100%);
    border-radius: 3px;
    opacity: 0.7;
    z-index: 2;
}

.contact-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    margin-bottom: 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2e7d32;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(129, 199, 132, 0.1) 100%);
    border: 1px solid rgba(76, 175, 80, 0.25);
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(46, 125, 50, 0.08);
    animation: contactBadgeFade 0.6s ease-out both;
}

@keyframes contactBadgeFade {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.contact-section .section-title { margin-bottom: 0.5rem; }
.contact-section .section-subtitle {
    margin-bottom: 2rem;
    color: #3d6b47;
    font-weight: 500;
    font-size: 1.15rem;
}

.contact-toast {
    position: relative;
    max-width: 480px;
    margin: 0 auto 1.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.contact-toast--show {
    opacity: 1;
    transform: translateY(0);
}

.contact-toast--success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(102, 187, 106, 0.15));
    border: 2px solid rgba(76, 175, 80, 0.35);
    color: #1b5e20;
}

.contact-toast--info {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(76, 175, 80, 0.2);
    color: #2e3d32;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    margin-top: 2.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    min-height: 100%;
}

.contact-item {
    display: flex;
    gap: 1.1rem;
    align-items: start;
    padding: 1.1rem 1.35rem;
    padding-left: 1.5rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.97) 0%, rgba(250, 253, 251, 0.98) 100%);
    border-radius: 20px;
    border: 2px solid rgba(76, 175, 80, 0.1);
    box-shadow: 
        0 6px 24px rgba(46, 125, 50, 0.1),
        0 2px 0 rgba(255, 255, 255, 0.95) inset;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    animation: contactItemFade 0.6s ease-out both;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    border-radius: 0 4px 4px 0;
    background: linear-gradient(180deg, #4caf50, #66bb6a);
    opacity: 0.6;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.contact-item:hover::before {
    height: 80%;
    opacity: 1;
}

.contact-item:nth-child(1) { animation-delay: 0.05s; }
.contact-item:nth-child(2) { animation-delay: 0.1s; }
.contact-item:nth-child(3) { animation-delay: 0.15s; }
.contact-item:nth-child(4) { animation-delay: 0.2s; }

@keyframes contactItemFade {
    from { opacity: 0; transform: translateX(-16px); }
    to { opacity: 1; transform: translateX(0); }
}

.contact-item:hover {
    border-color: rgba(76, 175, 80, 0.22);
    box-shadow: 
        0 12px 36px rgba(46, 125, 50, 0.14),
        0 2px 0 rgba(255, 255, 255, 0.98) inset;
    transform: translateX(6px);
}

.contact-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.14) 0%, rgba(102, 187, 106, 0.1) 100%);
    border-radius: 14px;
    border: 1px solid rgba(76, 175, 80, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.2);
}

.contact-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #1b5e20;
    margin-bottom: 0.35rem;
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.contact-item p {
    color: #4a7c59;
    line-height: 1.55;
    margin: 0;
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 253, 251, 0.99) 100%);
    padding: 2.25rem 2.5rem;
    border-radius: 24px;
    box-shadow: 
        0 14px 52px rgba(46, 125, 50, 0.12),
        0 0 0 1px rgba(76, 175, 80, 0.08),
        0 2px 0 rgba(255, 255, 255, 0.95) inset;
    border: 2px solid rgba(76, 175, 80, 0.12);
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
    animation: contactFormFade 0.7s ease-out 0.15s both;
}

.contact-form-wrapper:hover {
    box-shadow: 
        0 18px 56px rgba(46, 125, 50, 0.14),
        0 0 0 1px rgba(76, 175, 80, 0.12),
        0 2px 0 rgba(255, 255, 255, 0.98) inset;
}

@keyframes contactFormFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #2e7d32 0%, #4caf50 30%, #66bb6a 60%, #81c784 100%);
    border-radius: 24px 24px 0 0;
}

.contact-form-hint {
    font-size: 0.9rem;
    color: #3d6b47;
    margin-bottom: 1rem;
    padding: 0.65rem 1rem;
    font-weight: 500;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, rgba(102, 187, 106, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(76, 175, 80, 0.12);
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    font-weight: 600;
    color: #2e3d32;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 2px solid rgba(76, 175, 80, 0.15);
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.98rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 82px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(76, 175, 80, 0.5);
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.12);
    background: #fff;
}

.contact-form .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.25rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    border: none;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form .btn-whatsapp:hover {
    background: linear-gradient(135deg, #2ee670 0%, #159d8e 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.45);
}

.contact-form .btn-whatsapp-icon {
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0d2818 0%, #13401b 35%, #1a4d24 70%, #0d2818 100%);
    color: #fff;
    padding: 0 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 60% 50% at 20% 20%, rgba(76, 175, 80, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 85% 80%, rgba(102, 187, 106, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.footer-accent {
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #4caf50 20%, #66bb6a 50%, #81c784 80%, transparent 100%);
    opacity: 0.9;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding: 3.5rem 0 3rem;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.85rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 0.98rem;
    margin: 0;
}

.footer-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.35rem;
}

.footer-section {
    padding: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #66bb6a, #81c784);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.footer-social-link:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.footer-social-instagram:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.footer-social-whatsapp:hover {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-color: transparent;
}

.footer-social-icon {
    flex-shrink: 0;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0 0 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-contact p:last-child {
    margin-bottom: 0;
}

.footer-contact-icon {
    flex-shrink: 0;
    opacity: 0.9;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-portfolio {
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 0.25rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-credits {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.875rem;
    margin: 0;
}

.footer-heart {
    display: inline-block;
    animation: footerHeart 1.2s ease-in-out infinite;
}

@keyframes footerHeart {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.9; }
}

/* fallback para .social-link ( WhatsApp link atualizado por JS ) */
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.35s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
}

.social-icon {
    font-size: 1.25rem;
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 100px;
    right: 30px;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #66bb6a, #81c784);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .gastronomy-content,
    .contact-content,
    .booking-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .booking-image {
        min-height: 0;
        align-self: stretch;
    }
    
    .booking-image img {
        height: auto;
        min-height: 280px;
        max-height: 340px;
    }
    
    .gastronomy-section {
        padding: 4rem 0;
    }
    
    .gastronomy-text {
        padding: 2rem;
    }
    
    .gastronomy-slider {
        min-height: 400px;
        border-radius: 20px;
    }
    
    .gastronomy-slider-wrapper {
        min-height: 400px;
    }
    
    .gastronomy-slider-images {
        min-height: 400px;
    }

    .gastronomy-slider-prev,
    .gastronomy-slider-next {
        width: 42px;
        height: 42px;
    }

    .gastronomy-slider-prev { left: 12px; }
    .gastronomy-slider-next { right: 12px; }
    
    .rooms-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contact-section {
        padding: 4.5rem 0;
    }
    
    .contact-content {
        gap: 2.5rem;
    }
    
    .contact-info {
        justify-content: flex-start;
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1rem 1.2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 2.25rem;
        margin-top: 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        padding: 3rem 1.5rem 2.5rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text-content {
        animation: fadeInUp 1s ease-out;
    }
    
    .hero-image-content {
        animation: fadeInUp 1s ease-out 0.2s both;
    }
    
    .hero-title-main {
        font-size: 3rem;
    }
    
    .hero-description {
        max-width: 100%;
        margin: 0 auto 2rem;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        justify-items: stretch;
    }
    
    .hero-buttons-modern {
        justify-content: center;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .logo-svg {
        height: 45px;
        max-width: 160px;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 252, 250, 0.98) 100%);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 1.25rem 1rem;
        box-shadow: 0 12px 48px rgba(46, 125, 50, 0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid rgba(76, 175, 80, 0.12);
        max-height: min(85vh, 520px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 0 0 20px 20px;
    }
    
    .nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-link {
        padding: 1rem 1.25rem;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(76, 175, 80, 0.1);
        transition: all 0.3s ease;
        border-radius: 12px;
        margin-bottom: 0.35rem;
    }
    
    .nav-link:hover {
        background: linear-gradient(90deg, rgba(76, 175, 80, 0.1), rgba(102, 187, 106, 0.08));
        padding-left: 1.5rem;
        transform: translateX(4px);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-social-mobile {
        display: flex !important;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        padding: 1rem 0 0.5rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        border-top: 2px solid rgba(76, 175, 80, 0.15);
    }
    
    .nav-social-mobile .nav-social-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.25rem;
        border-radius: 14px;
        font-size: 0.95rem;
        font-weight: 600;
        border: 2px solid rgba(76, 175, 80, 0.15);
        margin-bottom: 0;
        text-align: center;
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
    
    .nav-social-mobile .nav-social-link.nav-instagram {
        background: linear-gradient(135deg, rgba(240, 148, 51, 0.08), rgba(225, 48, 108, 0.08));
        color: #c13584;
    }
    
    .nav-social-mobile .nav-social-link.nav-instagram:hover {
        background: linear-gradient(135deg, #f09433, #e1306c);
        color: #fff;
        border-color: transparent;
    }
    
    .nav-social-mobile .nav-social-link.nav-whatsapp {
        background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(18, 140, 126, 0.1));
        color: #128c7e;
    }
    
    .nav-social-mobile .nav-social-link.nav-whatsapp:hover {
        background: linear-gradient(135deg, #25d366, #128c7e);
        color: #fff;
        border-color: transparent;
    }
    
    .nav-social-icon {
        flex-shrink: 0;
    }
    
    .hero-section-modern {
        margin-top: 85px;
        padding: 2rem 0;
    }
    
    .hero-container {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .hero-title-greeting {
        font-size: 1.2rem;
    }
    
    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-main-image {
        height: 400px;
    }
    
    .hero-image-wrapper {
        transform: none;
    }
    
    .hero-image-wrapper:hover {
        transform: translateY(-3px);
    }
    
    .btn-modern {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        width: 100%;
        justify-content: center;
    }
    
    .hero-section {
        margin-top: 85px;
        min-height: 500px;
        height: auto;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr !important;
        gap: 1.75rem !important;
    }
    
    .gallery-section {
        padding: 4.5rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .gallery-item {
        border-radius: 18px;
    }
    
    .contact-content {
        gap: 2.75rem;
    }
    
    .contact-info {
        gap: 1.15rem;
    }
    
    .contact-form-wrapper {
        margin-top: 0.75rem;
    }
    
    .leisure-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .leisure-section {
        padding: 4rem 0;
    }
    
    .leisure-card {
        padding: 1.75rem 1.5rem;
        border-radius: 20px;
    }
    
    .leisure-icon {
        width: 112px;
        height: 112px;
        border-radius: 24px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 1.25rem 2rem;
    }
    
    .footer-brand {
        grid-column: auto;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-logo {
        font-size: 1.35rem;
    }
    
    .footer-tagline {
        font-size: 0.95rem;
        line-height: 1.65;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-heading {
        margin-bottom: 1.15rem;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links li {
        margin-bottom: 0.75rem;
    }
    
    .footer-social {
        justify-content: center;
        gap: 0.85rem;
    }
    
    .footer-social-link {
        flex: 0 1 auto;
        min-width: 130px;
        justify-content: center;
    }
    
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-contact p {
        justify-content: center;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 1rem 0;
    }
    
    .footer-portfolio {
        font-size: 0.78rem;
        padding: 0.5rem 1rem;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-copyright,
    .footer-credits {
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .logo-svg {
        height: 40px;
        max-width: 140px;
    }
    
    .hero-section-modern {
        padding: 1.5rem 0;
    }
    
    .hero-container {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .hero-title-greeting {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .hero-title-main {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero-badge-modern {
        font-size: 0.8rem;
        padding: 0.5rem 1.2rem;
    }
    
    .hero-main-image {
        height: 300px;
    }
    
    .image-decoration-1,
    .image-decoration-2 {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gastronomy-text p,
    .features-list li {
        font-size: 1rem;
    }
    
    .gastronomy-section {
        padding: 3rem 0;
    }
    
    .gastronomy-text {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .gastronomy-section .features-list li {
        padding: 0.85rem 1rem;
    }
    
    .gastronomy-slider {
        min-height: 320px;
        border-radius: 18px;
    }
    
    .gastronomy-slider-wrapper,
    .gastronomy-slider-images {
        min-height: 320px;
    }
    
    .gastronomy-slider-indicators {
        bottom: 16px;
        padding: 8px 16px;
        gap: 10px;
    }
    
    .gastronomy-slider-indicator {
        width: 8px;
        height: 8px;
    }

    .gastronomy-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.85rem;
        letter-spacing: 0.12em;
        margin-bottom: 0.65rem;
    }
    
    .gallery-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.85rem;
        letter-spacing: 0.12em;
        margin-bottom: 0.65rem;
    }
    
    .gallery-section {
        padding: 3.5rem 0;
    }
    
    .gallery-section .section-subtitle {
        margin-bottom: 1.5rem;
    }
    
    .gallery-item {
        border-radius: 16px;
    }

    .gastronomy-section .features-list .feature-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }

    .gastronomy-slider-prev,
    .gastronomy-slider-next {
        width: 38px;
        height: 38px;
    }

    .gastronomy-slider-prev { left: 10px; }
    .gastronomy-slider-next { right: 10px; }

    .gastronomy-slider-prev svg,
    .gastronomy-slider-next svg {
        width: 18px;
        height: 18px;
    }
    
    .contact-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.85rem;
        letter-spacing: 0.12em;
        margin-bottom: 0.65rem;
    }
    
    .contact-section .section-subtitle {
        margin-bottom: 1.5rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .accommodations-section {
        padding: 3rem 0;
    }
    
    .contact-content {
        gap: 3rem;
    }
    
    .contact-info {
        gap: 1.25rem;
    }
    
    .contact-form-hint {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .contact-item {
        padding: 0.9rem 1.1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem 1.75rem;
        margin-top: 1rem;
    }
    
    .contact-form .btn-whatsapp {
        padding: 0.9rem 1.25rem;
        font-size: 1rem;
    }
    
    .footer-content {
        gap: 1.75rem;
        padding: 2rem 1rem 1.75rem;
    }
    
    .footer-logo {
        font-size: 1.2rem;
    }
    
    .footer-tagline {
        font-size: 0.88rem;
        line-height: 1.55;
    }
    
    .footer-heading {
        font-size: 0.7rem;
        margin-bottom: 0.9rem;
    }
    
    .footer-links li {
        margin-bottom: 0.6rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-social {
        flex-direction: column;
        gap: 0.65rem;
    }
    
    .footer-social-link {
        width: 100%;
        min-width: auto;
        padding: 0.7rem 1rem;
    }
    
    .footer-contact p {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 1.25rem 0.75rem 0;
        gap: 0.85rem;
    }
    
    .footer-portfolio {
        font-size: 0.7rem;
        padding: 0.45rem 0.65rem;
    }
    
    .footer-bottom-inner {
        gap: 0.4rem;
    }
    
    .footer-copyright,
    .footer-credits {
        font-size: 0.8rem;
    }
}

