/* =========================================
   VARIÁVEIS DE CORES E FONTES
   ========================================= */
:root {
    --primary-color: #fe6504;
    --primary-hover: #e05602;
    --primary-light: #ff8533;
    --dark-color: #0c0d10;
    /* Gunmetal Black - Sóbrio e Moderno */
    --light-color: #f8f9fa;
    --text-color: #333333;
    --text-muted: #666666;
    --white: #ffffff;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);

    --border-radius: 12px;
}

/* =========================================
   RESET E BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
}

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

ul {
    list-style: none;
}

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

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

.section-padding {
    padding: 100px 0;
}

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

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

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

.text-light {
    color: #e0e0e0;
}

.mb-4 {
    margin-bottom: 24px;
}

.mt-4 {
    margin-top: 24px;
}

.mt-5 {
    margin-top: 48px;
}

/* =========================================
   TIPOGRAFIA & TÍTULOS DE SEÇÃO
   ========================================= */
.section-subtitle {
    display: block;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.text-center .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-description-lg {
    margin: 30px 0;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* =========================================
   BOTÕES
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(254, 101, 4, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(254, 101, 4, 0.4);
}

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

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

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    /* Ajuste conforme necessário */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 50px;
}

.footer-col .logo-img {
    height: 70px;
    margin-bottom: 20px;
}

.logo span {
    color: var(--primary-color);
    font-weight: 400;
}

.navbar.scrolled .logo {
    color: var(--dark-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
}

.navbar.scrolled .nav-links li a {
    color: var(--dark-color);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.navbar.scrolled .nav-btn {
    box-shadow: none;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

.navbar.scrolled .hamburger {
    color: var(--dark-color);
}

/* =========================================
   HERO / BANNER
   ========================================= */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    /* Preto leve e uniforme para legibilidade */
    z-index: 2;
    /* Garante que fique acima das imagens do slider */
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    color: var(--white);
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Animações Iniciais */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

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

/* =========================================
   ESTATÍSTICAS (STATS)
   ========================================= */
.stats {
    background: var(--dark-color);
    padding: 50px 0;
    color: var(--white);
    margin-top: -1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   SOBRE (ABOUT)
   ========================================= */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    position: relative;
    border-radius: var(--border-radius);
}

.about-img img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    height: 100%;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 30px 40px;
    border-radius: var(--border-radius);
    text-align: center;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
}

.experience-badge span {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

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

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

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

.about-content p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

/* =========================================
   PACOTES (PACKAGES)
   ========================================= */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.package-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.package-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.location-rating {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 600;
}

.location-rating i {
    color: var(--primary-color);
}

.package-info h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.package-card .btn-outline {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.package-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    flex: 1;
}

.package-dates {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.buy-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.price span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}

.price h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.price h4 span {
    font-size: 0.9rem;
    color: var(--dark-color);
    display: inline;
}

/* =========================================
   SERVIÇOS (SERVICES)
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(254, 101, 4, 0.2);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(254, 101, 4, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background: var(--primary-color);
}

.icon-box i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .icon-box i {
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* =========================================
   POR QUE NÓS / DIFERENCIAIS
   ========================================= */
.why-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-list {
    margin-top: 30px;
}

.features-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.features-list i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.features-list h4 {
    margin-bottom: 5px;
}

.features-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.insurance-card {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: var(--shadow-lg);
}

.insurance-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--dark-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.insurance-card h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.insurance-card img {
    border-radius: 8px;
    margin-bottom: 20px;
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.insurance-card p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.insurance-card .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
}

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

/* =========================================
   DEPOIMENTOS (TESTIMONIALS)
   ========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2.5rem;
    color: rgba(254, 101, 4, 0.1);
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.client-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =========================================
   GALERIA
   ========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

/* =========================================
   FAQ
   ========================================= */
.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.accordion-item {
    background: var(--white);
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--primary-color);
}

.accordion-header i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #fafafa;
}

.accordion-content p {
    padding: 0 25px 25px;
    color: var(--text-muted);
}

/* =========================================
   CONTATO (CONTACT)
   ========================================= */
.contact {
    background: var(--dark-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Background element */
.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(254, 101, 4, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr;
    /* Itens um abaixo do outro */
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.c-icon {
    width: 45px;
    height: 45px;
    background: rgba(254, 101, 4, 0.1);
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h5 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    color: var(--dark-color);
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
}

.input-group {
    margin-bottom: 20px;
    width: 100%;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    background: #fafafa;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(254, 101, 4, 0.1);
    background: var(--white);
}

.privacy-note {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    margin-top: 15px;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: #111;
    color: #bbb;
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-col .logo {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 2rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.cert-logos {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cert-logos span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.cert-logos i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.footer-bottom {
    background: #111111;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-credits {
    background: var(--primary-color);
    padding: 10px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--white);
    font-weight: 600;
}

.footer-credits a {
    color: var(--white);
    text-decoration: underline;
    transition: var(--transition);
}

.footer-credits a:hover {
    opacity: 0.8;
}

/* =========================================
   RESPONSIVO / MOBILE
   ========================================= */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        right: 20px;
        bottom: 20px;
        padding: 20px 30px;
    }

    .experience-badge span {
        font-size: 2rem;
    }

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

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

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        display: flex;
        justify-content: center;
        /* Centraliza a logo */
        position: relative;
    }

    .logo {
        margin: 0 auto;
    }

    .hamburger {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .nav-links,
    .nav-btn {
        display: none;
    }

    .hamburger {
        display: block;
    }

    /* Mobile Menu Active State */
    .nav-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 30px 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        gap: 20px;
        text-align: center;
    }

    .nav-active li a {
        color: var(--dark-color) !important;
        font-size: 1.1rem;
    }

    .navbar.scrolled .nav-active {
        background: var(--white);
    }

    .packages-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
        gap: 10px;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .input-row {
        grid-template-columns: 1fr;
    }

    .slide-1 {
        background-position: 85% center !important;
    }
}