/* CSS Reset & Base Styles */
:root {
    --primary-color: #201E1E;
    --secondary-color: #6c757d;
    --text-color: #333;
    --white: #ffffff;
    --black: #201E1E;
    --gold: #D2AE6D;
    --bg-light: #f8f9fa;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --container-width: 1140px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* Lenis handles smooth scroll */
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Layout Helpers */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--gold);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--gold);
}

.btn:hover {
    background-color: transparent;
    color: var(--gold);
    transform: scale(1.05);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.8rem;
}

/* Navigation Styles */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(32, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(210, 174, 109, 0.2);
    transition: all 0.4s ease;
}

.main-nav.nav-scrolled {
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: var(--container-width);
    border-radius: 50px;
    background-color: rgba(32, 30, 30, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    padding: 10px 0;
}

.logo img {
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.main-nav.nav-scrolled .logo img {
    height: 35px !important;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--gold);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:focus {
    outline: none;
}

/* Specific Sections */

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 80px; /* Offset for nav */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.1;
}

.highlight {
    color: var(--gold);
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Info Section */
.info-section {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.info-images {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.info-images img {
    border-radius: 10px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.info-content {
    flex: 1;
}

.info-content h2 {
    color: var(--gold);
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.info-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Counters */
.counters-section {
    background-color: var(--bg-light);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 30px 30px;
    margin-top: 40px;
    border-radius: 10px;
}

.counter-item h3 {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.counter-item p {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Why Choose Us */
.why-us {
    background-color: #fcfcfc;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card img {
    height: 260px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Experiences */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.exp-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
}

.exp-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exp-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
}

/* Contact Form */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form label {
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: -15px;
    font-size: 0.9rem;
}

.contact-form input, 
.contact-form textarea,
.contact-form select {
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: var(--font-main);
    transition: all 0.3s ease;
    background-color: #fcfcfc;
}

.contact-form input:focus, 
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--gold);
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(210, 174, 109, 0.1);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0 20px;
    border-top: 2px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-socials a {
    color: var(--white);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: var(--gold);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-list i {
    color: var(--gold);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Excellence Section Refactor */
.excellence-section {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    padding: 60px;
    margin: 40px 0;
}

.excellence-top {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.excellence-img {
    flex: 0.8;
}

.excellence-img img,
.excellence-img video {
    width: 100%;
    max-height: 360px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    object-fit: cover;
    display: block;
}

.excellence-text {
    flex: 1.2;
}

.excellence-text .subtitle {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.excellence-text h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.1;
    color: var(--white);
}

.excellence-text p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.excellence-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
}

.excellence-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.excellence-feature p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* CTA Card & Parallax */
.cta-card {
    position: relative;
    padding: 100px 40px;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Basic Parallax */
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.cta-subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: block;
}

.cta-card h2 {
    font-size: 3rem;
    max-width: 800px;
    margin: 0 auto 20px;
    color: var(--white);
}

.cta-text {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-outline {
    background: transparent !important;
    border: 2px solid var(--white) !important;
    color: var(--white) !important;
}

.btn-outline:hover {
    background: var(--white) !important;
    color: var(--primary-color) !important;
}

/* ===== Experience Dark Section ===== */
.experience-dark-section {
    position: relative;
    min-height: 600px;
    background-color: #14120f;
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(210, 174, 109, 0.03) 0px,
            rgba(210, 174, 109, 0.03) 1px,
            transparent 1px,
            transparent 60px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(210, 174, 109, 0.03) 0px,
            rgba(210, 174, 109, 0.03) 1px,
            transparent 1px,
            transparent 60px
        ),
        radial-gradient(ellipse at 20% 50%, rgba(210, 174, 109, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(32, 30, 30, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.experience-dark-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(10, 9, 8, 0.6) 0%,
        rgba(20, 18, 14, 0.4) 50%,
        rgba(10, 9, 8, 0.6) 100%
    );
    z-index: 0;
}

.experience-dark-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    color: var(--white);
}

.experience-dark-label {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.experience-dark-content h2 {
    font-size: 3rem;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.experience-dark-desc {
    font-size: 1.05rem;
    opacity: 0.85;
    max-width: 720px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.experience-dark-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 10px;
}

.exp-pillar {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(210, 174, 109, 0.25);
    border-radius: 16px;
    padding: 28px 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.exp-pillar:hover {
    background: rgba(210, 174, 109, 0.12);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.exp-pillar i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}

.exp-pillar h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.exp-pillar p {
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 900px) {
    .experience-dark-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
    .experience-dark-content h2 {
        font-size: 2rem;
    }
    .experience-dark-section {
        background-attachment: scroll;
    }
}

@media (max-width: 540px) {
    .experience-dark-pillars {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .experience-dark-content h2 {
        font-size: 1.6rem;
    }
}

/* ===== Services Full List ===== */
.services-list-wrapper {
    margin-top: 60px;
    border-top: 1px solid rgba(210, 174, 109, 0.25);
    padding-top: 50px;
}

.services-list-label {
    text-align: center;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 35px;
    font-family: var(--font-heading);
}

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.service-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.3s ease;
    cursor: default;
}

.service-list-item:hover {
    border-color: var(--gold);
    background: #fffaf3;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(210, 174, 109, 0.15);
}

.service-list-item i {
    color: var(--gold);
    font-size: 1.2rem;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.service-list-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.3;
}

@media (max-width: 900px) {
    .services-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .services-list-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Destinations Slider ===== */
.destinations-section {
    background-color: #f4f4f4;
    padding-bottom: 0;
}

.destinations-section .container {
    padding-bottom: 0;
}

.destinations-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 80px;
}

.destinations-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 10px 5vw 30px;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.destinations-slider::-webkit-scrollbar {
    display: none;
}

.destination-card {
    flex: 0 0 320px;
    height: 440px;
    border-radius: 16px;
    overflow: hidden;
    scroll-snap-align: start;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover img {
    transform: scale(1.05);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 25px 25px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85) 60%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.destination-overlay h3 {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    color: var(--white);
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.destination-overlay p {
    font-size: 0.85rem;
    opacity: 0.85;
    margin: 0 0 12px;
}

.destination-overlay .btn {
    align-self: flex-start;
    padding: 8px 20px;
    font-size: 0.78rem;
    border-radius: 50px;
}

/* Slider Navigation Buttons */
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    color: var(--primary-color);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(210, 174, 109, 0.4);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* =======================================================
   RESPONSIVE SYSTEM — 100% ADAPTIVE
   Breakpoints: 1280 / 1024 / 768 / 600 / 375
   ======================================================= */

/* ---- Large Desktop: 1280px ---- */
@media (max-width: 1280px) {
    .destination-card { flex: 0 0 290px; height: 420px; }
    .excellence-text h2 { font-size: 2.4rem; }
}

/* ---- Tablet Landscape: 1024px ---- */
@media (max-width: 1024px) {
    :root { --container-width: 960px; }
    .container { width: 94%; }
    .nav-links { gap: 14px; }
    .nav-links a { font-size: 0.88rem; }
    .hero h1 { font-size: 2.6rem; }
    .experience-dark-pillars { grid-template-columns: repeat(2, 1fr); }
    .experience-dark-content h2 { font-size: 2.4rem; }
    .excellence-bottom { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
}

/* ---- Tablet Portrait: 768px ---- */
@media (max-width: 768px) {

    /* --- Global --- */
    .section-padding { padding: 60px 0; }
    h2 { font-size: 1.7rem !important; }

    /* --- Nav: hamburger menu --- */
    .mobile-menu-toggle { display: block; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(20, 18, 18, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1000;
    }
    .nav-links.active { right: 0; }
    .nav-links li { margin: 14px 0; }
    .nav-links a { font-size: 1.3rem; }
    .main-nav.nav-scrolled {
        top: 10px;
        width: 95%;
    }

    /* --- Hero --- */
    .hero { min-height: 100svh; padding-top: 70px; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem !important; }
    .hero div[style*="display: flex"] { gap: 12px !important; }

    /* --- Sobre / info-section --- */
    .info-section { flex-direction: column; text-align: center; gap: 30px; }
    .info-images { grid-template-columns: repeat(2, 1fr); }
    .info-images img { height: 180px; }

    /* --- Contadores --- */
    .counters-section { grid-template-columns: repeat(3, 1fr); padding: 20px 15px; }
    .counter-item h3 { font-size: 1.6rem; }

    /* --- Cards de Serviços --- */
    .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .services-list-grid { grid-template-columns: repeat(2, 1fr); }

    /* --- Excellence --- */
    .excellence-section { padding: 40px 25px; }
    .excellence-top { flex-direction: column; text-align: center; gap: 30px; }
    .excellence-text h2 { font-size: 1.8rem !important; }
    .excellence-bottom { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    /* --- Experience Dark --- */
    .experience-dark-section {
        background-attachment: scroll;
        padding: 80px 20px;
        min-height: auto;
    }
    .experience-dark-content h2 { font-size: 1.9rem; }
    .experience-dark-pillars { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    /* --- Slider de Destinos --- */
    .destination-card { flex: 0 0 260px; height: 380px; }

    /* --- CTA --- */
    .cta-card { padding: 60px 25px; background-attachment: scroll; }
    .cta-card h2 { font-size: 1.8rem !important; }
    .cta-buttons { flex-direction: column; align-items: center; gap: 12px; }
    .cta-buttons .btn { width: 100%; max-width: 320px; text-align: center; }

    /* --- Contato --- */
    .contact-section { grid-template-columns: 1fr; gap: 30px; }

    /* --- Footer --- */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

/* ---- Mobile: 600px ---- */
@media (max-width: 600px) {

    /* --- Global --- */
    .section-padding { padding: 50px 0; }
    h2 { font-size: 1.5rem !important; }
    p { font-size: 0.9rem !important; }

    /* --- Hero --- */
    .hero h1 { font-size: 1.7rem; line-height: 1.2; }
    .hero p { font-size: 0.9rem !important; }
    .hero div[style*="display: flex"] {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px !important;
    }
    .hero .btn {
        padding: 0 18px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.78rem;
        min-width: 140px;
    }

    /* --- Info Images --- */
    .info-images { grid-template-columns: 1fr; }
    .info-images img { height: 200px; }
    .info-images img[style*="span 2"] { grid-column: span 1; }

    /* --- Contadores --- */
    .counters-section { grid-template-columns: 1fr; gap: 0; padding: 10px; }
    .counter-item { padding: 15px 0; border-bottom: 1px solid #eee; }
    .counter-item:last-child { border-bottom: none; }

    /* --- Cards: 1 coluna --- */
    .cards-grid { grid-template-columns: 1fr; }
    .card img { height: 330px; }
    .services-list-grid { grid-template-columns: 1fr; }

    /* --- Excellence --- */
    .excellence-bottom { grid-template-columns: 1fr; }

    /* --- Experience Dark --- */
    .experience-dark-pillars { grid-template-columns: 1fr 1fr; gap: 12px; }
    .experience-dark-content h2 { font-size: 1.5rem; }
    .experience-dark-desc { font-size: 0.9rem !important; }
    .exp-pillar { padding: 18px 14px; }
    .exp-pillar i { font-size: 1.5rem; }
    .exp-pillar h4 { font-size: 0.9rem; }

    /* --- Slider --- */
    .destination-card { flex: 0 0 240px; height: 340px; }
    .destinations-slider { padding: 10px 15px 30px; }

    /* --- Footer: 1 coluna --- */
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 25px; }
    .footer-col { display: flex; flex-direction: column; align-items: center; }
    .footer-col img { margin: 0 auto; }
    .footer-col h4 { font-size: 1rem; margin-bottom: 12px; }
    .footer-col p, .footer-col li { font-size: 0.85rem; }
    .footer-socials { justify-content: center; }
    .contact-list li { justify-content: center; }
    .footer-bottom p { font-size: 0.75rem; }

    /* --- Botão outline --- */
    .btn-outline { border-width: 2px !important; }
}

/* ---- Mobile Pequeno: 375px ---- */
@media (max-width: 375px) {
    .hero h1 { font-size: 1.4rem; }
    .hero .btn { min-width: 120px; font-size: 0.72rem; padding: 0 12px; }
    .experience-dark-pillars { grid-template-columns: 1fr; }
    .destination-card { flex: 0 0 calc(100vw - 40px); height: 320px; }
    .nav-links a { font-size: 1.1rem; }
    .excellence-section { padding: 30px 12px; }
    .counters-section { padding: 10px 5px; }
}
