/* =========================================================================
   TERRA VENTURE - ESTILOS PRINCIPAIS
   ========================================================================= */

:root {
    /* Paleta de Cores Premium (Earthy Tones) */
    --color-moss: #3E5A44;      /* Verde Musgo */
    --color-sand: #EAE3CA;      /* Areia */
    --color-terra: #C86b4D;     /* Terracota */
    --color-offwhite: #F8F7F4;  /* Branco Off-white (Fundo principal) */
    --color-dark: #1A1A1A;      /* Quase preto para textos escuros */
    --color-text-light: #F4F1E9; /* Texto claro */
    --color-overlay: rgba(26, 26, 26, 0.4); /* Overlay para vídeos/fotos */
    
    /* Tipografia */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transições */
    --transition-fast: 0.3s ease;
    --transition-med: 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-slow: 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    
    /* Sombras */
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
}

/* =========================================================================
   RESETS & GLOBAL
   ========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Utilitários Visuais */
.bg-sand { background-color: var(--color-sand); }
.bg-moss { background-color: var(--color-moss); }
.text-light { color: var(--color-text-light) !important; }
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.w-100 { width: 100%; }

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-terra);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-title {
    font-size: 2.8rem;
    color: var(--color-moss);
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-dark);
    opacity: 0.8;
    max-width: 600px;
    margin-bottom: 3rem;
}

.text-light .section-title {
    color: var(--color-text-light);
}

.text-light .section-desc {
    color: var(--color-text-light);
    opacity: 0.9;
}

/* =========================================================================
   BOTÕES & LINKS
   ========================================================================= */
.btn-primary {
    display: inline-block;
    background-color: var(--color-moss);
    color: white;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #2F4534; /* Verde Musgo mais escuro para hover */
    transition: var(--transition-fast);
    z-index: -1;
}

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

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

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--color-moss);
    padding: 12px 28px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: 1px solid var(--color-moss);
    transition: var(--transition-fast);
}

.btn-outline:hover {
    background-color: var(--color-moss);
    color: var(--color-offwhite);
}

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

.navbar.scrolled {
    padding: 15px 0;
    background-color: rgba(248, 247, 244, 0.95); /* Offwhite com opacidade */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-offwhite); /* Branco inicialmente */
    transition: var(--transition-fast);
    letter-spacing: 1px;
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a,
.navbar.scrolled .menu-toggle {
    color: var(--color-moss);
}

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

.nav-links a {
    color: var(--color-offwhite);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: var(--transition-fast);
}

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

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--color-offwhite);
    cursor: pointer;
}

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

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.6) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    color: var(--color-offwhite);
    z-index: 10;
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Scroll indicator animation */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--color-offwhite);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
    opacity: 0.7;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-offwhite);
    border-radius: 4px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

/* =========================================================================
   DIFERENCIAIS (Por que a Terra Venture?)
   ========================================================================= */
.sectionenciais {
    padding: 100px 0;
}

.sectionenciais .section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.diferencial-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-med);
    border-bottom: 3px solid transparent;
}

.diferencial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--color-terra);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--color-sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-moss);
    font-size: 1.8rem;
    transition: var(--transition-fast);
}

.diferencial-card:hover .icon-wrapper {
    background-color: var(--color-moss);
    color: var(--color-sand);
    transform: scale(1.1);
}

.diferencial-card h3 {
    color: var(--color-moss);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.diferencial-card p {
    color: #555;
    font-size: 0.95rem;
}

/* =========================================================================
   DESTINOS EM DESTAQUE
   ========================================================================= */
.destinos {
    padding: 100px 0;
}

.destinos-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.destino-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 450px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.destino-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.destino-card:hover img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0.9;
    transition: var(--transition-fast);
}

.destino-card:hover .card-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(62, 90, 68, 0.9) 0%, rgba(0,0,0,0.2) 70%, transparent 100%); /* Moss gradient on hover */
}

.card-content {
    color: white;
    width: 100%;
}

.card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: var(--transition-med);
}

.card-content p {
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-med);
    transition-delay: 0.1s;
    margin-bottom: 15px;
}

.explore-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--color-sand);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-med);
    transition-delay: 0.2s;
}

.destino-card:hover .card-content h3,
.destino-card:hover .card-content p,
.destino-card:hover .explore-link {
    transform: translateY(0);
    opacity: 1;
}

/* =========================================================================
   A EXPERIÊNCIA (CONSULTORIA)
   ========================================================================= */
.experiencia {
    padding: 120px 0;
}

.experiencia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.experiencia-img {
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
    height: 100%;
    box-shadow: var(--shadow-lg);
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--color-sand);
}

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

.experiencia-content .eyebrow {
    margin-bottom: 1rem;
}

.experiencia-content .section-title {
    margin-bottom: 1.5rem;
}

.storytelling {
    margin-bottom: 2rem;
}

.storytelling .lead {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-terra);
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.storytelling p {
    margin-bottom: 1rem;
    color: #444;
}

.process-list {
    margin-bottom: 2rem;
}

.process-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--color-moss);
    font-weight: 500;
}

.process-list i {
    color: var(--color-terra);
    background: rgba(200, 107, 77, 0.1);
    padding: 8px;
    border-radius: 50%;
    font-size: 0.8rem;
}

/* =========================================================================
   NOSSA HISTÓRIA (Origin Story)
   ========================================================================= */
.nossa-historia {
    padding: 120px 0;
    background: linear-gradient(175deg, var(--color-offwhite) 0%, var(--color-sand) 100%);
    overflow: hidden;
}

.historia-layout {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}

.historia-timeline-line {
    position: absolute;
    top: 0;
    left: 28px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
        transparent 0%,
        var(--color-terra) 10%,
        var(--color-moss) 50%,
        var(--color-terra) 90%,
        transparent 100%
    );
    opacity: 0.25;
}

.historia-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.historia-header .section-title {
    font-size: 2.6rem;
}

.historia-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.historia-block {
    position: relative;
    padding-left: 72px;
}

.historia-icon {
    position: absolute;
    left: 8px;
    top: 2px;
    width: 42px;
    height: 42px;
    background-color: var(--color-offwhite);
    border: 2px solid var(--color-moss);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-moss);
    font-size: 0.95rem;
    z-index: 1;
    transition: var(--transition-fast);
}

.historia-block:hover .historia-icon {
    background-color: var(--color-moss);
    color: var(--color-offwhite);
    transform: scale(1.1);
}

.historia-lead {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-style: italic;
    color: var(--color-terra);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.historia-block p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-size: 1.02rem;
}

.historia-block p:last-child {
    margin-bottom: 0;
}

.historia-block strong {
    color: var(--color-moss);
    font-weight: 600;
}

.historia-block em {
    font-style: italic;
    color: var(--color-terra);
}

/* Highlighted "Minha Motivação" block */
.historia-destaque {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem 2rem 2rem 72px;
    border-radius: 12px;
    border-left: 4px solid var(--color-terra);
    box-shadow: var(--shadow-sm);
}

.historia-destaque h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-moss);
    margin-bottom: 0.75rem;
}

/* Values list */
.historia-valores {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.historia-valores li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1.02rem;
    color: #444;
    line-height: 1.6;
}

.historia-valores li i {
    color: var(--color-terra);
    background: rgba(200, 107, 77, 0.1);
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    margin-top: 2px;
}

/* Closing statement */
.historia-fecho {
    text-align: center;
    max-width: 640px;
    margin: 1rem auto 0;
    padding: 2.5rem 2rem;
    position: relative;
}

.historia-fecho::before {
    content: '—';
    display: block;
    font-size: 1.5rem;
    color: var(--color-terra);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.historia-fecho p {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--color-moss);
    line-height: 1.8;
}

.historia-fecho strong {
    color: var(--color-terra);
    font-weight: 600;
}



/* =========================================================================
   CONTATO / BRIEFING
   ========================================================================= */
.contato {
    padding: 100px 0;
    background-color: #fff;
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    background-color: var(--color-offwhite);
    border-radius: 12px;
    padding: 60px;
    box-shadow: var(--shadow-lg);
}

.contact-details .detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--color-terra);
    background-color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.detail-item h5 {
    margin: 0 0 5px 0;
    font-family: var(--font-body);
    color: var(--color-moss);
}

.detail-item p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}

.contato-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group.half {
    flex: 1;
}

label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-moss);
}

input, textarea {
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    background-color: white;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--color-terra);
    box-shadow: 0 0 0 3px rgba(200, 107, 77, 0.1);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
    background-color: var(--color-dark);
    color: var(--color-text-light);
}

.instagram-feed {
    background-color: #111;
    padding: 40px 0;
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.instagram-header h4 {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 500;
}

.ig-link {
    color: var(--color-terra);
    font-weight: 600;
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.ig-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 4px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.ig-grid img:hover {
    filter: brightness(0.7);
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .logo-text {
    font-size: 2rem;
    color: var(--color-sand);
    margin-bottom: 15px;
}

.footer-brand p {
    color: #aaa;
    max-width: 300px;
}

.footer-links h4, .footer-legal h4 {
    color: var(--color-sand);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-links ul li, .footer-legal ul li {
    margin-bottom: 10px;
}

.footer-links a, .footer-legal a {
    color: #aaa;
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--color-terra);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    color: #777;
    font-size: 0.85rem;
}

/* =========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition-fast);
}

.whatsapp-float:hover {
    background-color: #1EB855;
    transform: scale(1.1);
    color: white;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    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); }
}

/* =========================================================================
   ANIMAÇÕES & SCROLL REVEAL (CSS INIT)
   ========================================================================= */
.scroll-reveal {
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.scroll-reveal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0) scale(1);
}

.fade-up {
    transform: translateY(40px);
}

.fade-left {
    transform: translateX(40px);
}

.img-reveal {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    opacity: 1;
    visibility: visible;
}

.img-reveal.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* =========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================= */
@media (max-width: 1024px) {
    .destinos-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experiencia-grid {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        background-color: rgba(248, 247, 244, 0.98);
        padding: 15px 0;
    }

    .navbar .logo, .navbar .menu-toggle {
        color: var(--color-moss);
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-offwhite);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        box-shadow: var(--shadow-md);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-links a {
        color: var(--color-moss);
    }

    .nav-btn {
        display: none; /* Hide primary button on mobile nav bar, show in menu if desired */
    }

    .menu-toggle {
        display: block;
    }

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

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

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

    .experiencia-img {
        height: 400px;
        order: 2;
    }

    .nossa-historia {
        padding: 80px 0;
    }

    .historia-timeline-line {
        display: none;
    }

    .historia-block {
        padding-left: 0;
    }

    .historia-icon {
        position: relative;
        left: auto;
        top: auto;
        margin-bottom: 1rem;
    }

    .historia-destaque {
        padding-left: 2rem;
    }

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

    .historia-lead {
        font-size: 1.25rem;
    }

    .historia-fecho p {
        font-size: 1.15rem;
    }
    
    .experiencia-content {
        order: 1;
    }

    .contato-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ig-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hide-mobile {
        display: none;
    }
}

@media (max-width: 480px) {
    .destinos-gallery {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.2rem;
    }

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