/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Principais */
    --primary-green: #1a5f3f;
    --secondary-green: #2d7a4f;
    --light-green: #3d9970;
    --dark-green: #0f3d28;
    --accent-gold: #d4af37;
    --accent-yellow: #f4c430;

    /* Cores Neutras */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --black: #000000;

    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    --gradient-gold: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-yellow) 100%);

    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);

    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Fontes */
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 95, 63, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled {
    background: var(--primary-green);
    padding: 0.5rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-display);
}

.nav-brand i {
    color: var(--accent-gold);
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

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

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

.nav-menu a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--gradient-gold);
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary,
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark-gray);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-gold) 100%);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-large i {
    font-size: 1.3rem;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    border: 3px solid var(--primary-green);
    box-shadow: 0 4px 15px rgba(26, 95, 63, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 95, 63, 0.4);
    border-color: var(--secondary-green);
}

.btn-secondary i {
    transition: var(--transition-normal);
}

.btn-secondary:hover i {
    transform: scale(1.1);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp i {
    font-size: 1.4rem;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('background.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-title .subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.feature-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--dark-gray);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.section-header.light h2 {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-header.light .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== SOBRE SECTION ===== */
.sobre {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.sobre-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 16 / 9;
}

.sobre-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-slow);
}

.sobre-image:hover img {
    transform: scale(1.05);
}

.sobre-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--gradient-gold);
    color: var(--dark-gray);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.sobre-badge i {
    font-size: 1.5rem;
}

.sobre-content h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.highlight-text {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.sobre-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.feature-box h4 {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ===== PEIXES SECTION ===== */
.peixes {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: var(--white);
}

.peixes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.peixe-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.peixe-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.peixe-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.peixe-card:hover .peixe-image img {
    transform: scale(1.1);
}

.peixe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 95, 63, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.peixe-card:hover .peixe-overlay {
    opacity: 1;
}

.peixe-overlay i {
    font-size: 3rem;
    color: var(--accent-gold);
}

.peixe-info {
    padding: 1.5rem;
}

.peixe-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.peixe-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.temporada-info {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.temporada-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem 3rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--accent-gold);
}

.temporada-card i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.temporada-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.temporada-periodo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}


/* ===== ESTRUTURA SECTION ===== */
.estrutura {
    padding: 6rem 0;
    background: var(--white);
}

.estrutura-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.estrutura-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.estrutura-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-green);
    box-shadow: var(--shadow-lg);
}

.estrutura-card.highlight {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.estrutura-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-normal);
}

.estrutura-card:hover .estrutura-icon {
    transform: rotate(360deg);
}

.estrutura-card.highlight .estrutura-icon {
    background: rgba(255, 255, 255, 0.2);
}

.estrutura-icon i {
    font-size: 2.5rem;
    color: var(--dark-gray);
}

.estrutura-card.highlight .estrutura-icon i {
    color: var(--white);
}

.estrutura-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.estrutura-card.highlight h3 {
    color: var(--accent-gold);
}

.estrutura-card ul {
    list-style: none;
    text-align: left;
}

.estrutura-card ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
}

.estrutura-card.highlight ul li {
    color: rgba(255, 255, 255, 0.95);
}

.estrutura-card ul li i {
    color: var(--secondary-green);
    font-size: 1rem;
}

.estrutura-card.highlight ul li i {
    color: var(--accent-gold);
}

.all-inclusive-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-gold);
    color: var(--dark-gray);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.7);
    }
}

.cta-box {
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-xl);
}

.cta-box h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-box .btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    font-size: 1.2rem;
    padding: 1.3rem 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-box .btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cta-box .btn-whatsapp i {
    font-size: 1.5rem;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

/* ===== ACOMODAÇÕES SECTION ===== */
.acomodacoes {
    padding: 6rem 0;
    background: var(--light-gray);
}

.acomodacoes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.acomodacao-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    aspect-ratio: 1 / 1;
}

.acomodacao-item:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.acomodacao-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: var(--transition-slow);
}

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

/* ===== GALERIA SECTION ===== */
.galeria {
    padding: 6rem 0;
    background: var(--dark-green);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    aspect-ratio: 1 / 1;
}

.galeria-item:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.galeria-item.large {
    grid-column: span 1;
    grid-row: span 1;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: var(--transition-slow);
}

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

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 95, 63, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay i {
    font-size: 3rem;
    color: var(--accent-gold);
}


/* ===== COMO CHEGAR SECTION ===== */
.como-chegar {
    padding: 6rem 0;
    background: var(--light-gray);
}

.chegar-content {
    display: grid;
    gap: 4rem;
}

.chegar-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.step-card.highlight {
    background: var(--gradient-primary);
    color: var(--white);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-gray);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1rem;
}

.step-card.highlight .step-icon {
    background: rgba(255, 255, 255, 0.2);
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--secondary-green);
}

.step-card.highlight .step-icon i {
    color: var(--accent-gold);
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.step-card.highlight h3 {
    color: var(--accent-gold);
}

.step-duration {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--secondary-green);
    margin-bottom: 0.5rem;
}

.step-card.highlight .step-duration {
    color: var(--accent-gold);
}

.step-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.step-card.highlight p {
    color: rgba(255, 255, 255, 0.95);
}

.step-arrow {
    font-size: 2rem;
    color: var(--secondary-green);
}

.mapa-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.mapa-container h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mapa-container h3 i {
    color: var(--accent-gold);
}

.mapa-wrapper {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

/* ===== DEPOIMENTOS SECTION ===== */
.depoimentos {
    padding: 6rem 0;
    background: var(--gradient-primary);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.depoimento-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.depoimento-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-xl);
}

.depoimento-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.depoimento-stars i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.depoimento-text {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.autor-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.autor-avatar i {
    font-size: 1.5rem;
    color: var(--dark-gray);
}

.autor-info h4 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.autor-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ===== CONTATO SECTION ===== */
.contato {
    padding: 6rem 0;
    background: var(--white);
}

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

.contato-info h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.contato-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contato-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: var(--transition-normal);
}

.contato-item:hover {
    background: var(--secondary-green);
    color: var(--white);
    transform: translateX(10px);
}

.contato-item i {
    font-size: 2rem;
    color: var(--secondary-green);
}

.contato-item:hover i {
    color: var(--accent-gold);
}

.contato-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--primary-green);
}

.contato-item:hover h4 {
    color: var(--white);
}

.contato-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

.contato-item:hover p {
    color: rgba(255, 255, 255, 0.95);
}

.contato-cta {
    margin-top: 2rem;
}

.contato-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    aspect-ratio: 4 / 5;
}

.contato-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 95, 63, 0.3), rgba(45, 122, 79, 0.3));
    z-index: 1;
}

.contato-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-slow);
}

.contato-image:hover img {
    transform: scale(1.05);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-green);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulse-float 2s infinite;
    cursor: pointer;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: ripple 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
}

.whatsapp-float i {
    font-size: 2.2rem;
    color: var(--white);
    position: relative;
    z-index: 1;
    animation: shake 3s infinite;
}

@keyframes pulse-float {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.8);
    }
}

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

@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: rotate(-5deg);
    }
    20%, 40%, 60%, 80% {
        transform: rotate(5deg);
    }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.scroll-top i {
    font-size: 1.5rem;
    color: var(--dark-gray);
}

.hamburger span {
    width: 25px;

    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
    }

    .peixes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .estrutura-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .acomodacoes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contato-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-green);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: var(--transition-normal);
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        padding: 5rem 0 3rem;
        min-height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 100px;
    }

    .hero-content {
        width: 100%;
        margin-top: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-features {
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .feature-item {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .feature-item i {
        font-size: 1.5rem;
    }

    .hero-buttons {
        margin-bottom: 2rem;
        justify-content: center;
    }

    .scroll-indicator {
        position: static !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 1.5rem auto 0 !important;
        padding-top: 1.5rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header {
        padding: 0 1rem;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sobre-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .peixes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .estrutura-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .acomodacoes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .chegar-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .contato-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links ul {
        text-align: center;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float i {
        font-size: 1.6rem;
    }

    .scroll-top {
        bottom: 1rem;
        left: 1rem;
        width: 45px;
        height: 45px;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 0;
        min-height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 90px;
    }

    .hero-content {
        padding: 1rem;
        text-align: center;
        width: 100%;
        margin-top: 2rem;
    }

    .hero-title {
        font-size: 1.9rem;
        margin-bottom: 1rem;
        line-height: 1.3;
        text-align: center;
    }

    .hero-title .subtitle {
        font-size: 1.1rem;
        display: block;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 2rem;
        width: 100%;
        align-items: center;
    }

    .feature-item {
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 320px;
        flex-direction: row;
        justify-content: center;
        text-align: center;
        gap: 0.8rem;
    }

    .feature-item i {
        font-size: 1.6rem;
        min-width: 35px;
    }

    .feature-item span {
        font-size: 0.9rem;
        text-align: left;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-bottom: 2rem;
        align-items: center;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 320px;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        justify-content: center;
    }

    .scroll-indicator {
        position: static !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 1rem auto 0 !important;
        padding-top: 1rem;
        font-size: 0.85rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .scroll-indicator span {
        text-align: center;
    }

    section {
        padding: 3rem 0 !important;
    }

    .section-header h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .section-tag {
        font-size: 0.8rem;
    }

    .btn-whatsapp,
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 1rem 1.8rem;
        font-size: 1rem;
    }

    .cta-box h3 {
        font-size: 1.3rem;
    }

    .cta-box p {
        font-size: 0.9rem;
    }

    .peixe-card,
    .estrutura-card {
        margin-bottom: 1rem;
    }

    .peixe-info h3,
    .estrutura-card h3 {
        font-size: 1.3rem;
    }

    .peixe-info p,
    .estrutura-card p {
        font-size: 0.9rem;
    }

    .acomodacoes-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contato-grid {
        grid-template-columns: 1fr;
    }

    .contato-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .contato-info h2 {
        font-size: 1.5rem;
    }

    .contato-info p {
        font-size: 0.9rem;
    }

    .depoimento-card {
        padding: 1.5rem;
    }

    .depoimento-text {
        font-size: 0.9rem;
    }

    .map-container {
        height: 300px;
    }
}
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary,
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: var(--font-primary);
    white-space: nowrap;
}
