/* ================================
   RESET E VARIÁVEIS
   ================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --black: #0A0A0A;
    --off-white: #F8F7F4;
    --rose: #E8C4C4;
    --dark-gray: #1a1a1a;
    --light-gray: #e0e0e0;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background-color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

/* ================================
   TIPOGRAFIA
   ================================ */

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

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 20px;
    color: var(--black);
}

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

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    text-align: center;
    margin-bottom: 60px;
    color: var(--black);
    opacity: 0.8;
}

.section-subtitle.light {
    color: var(--off-white);
}

/* ================================
   NAVBAR
   ================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: var(--transition);
}

/* ================================
   BOTÕES
   ================================ */

.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: #C19B2E;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.btn-large {
    padding: 22px 50px;
    font-size: 1.1rem;
}

.cta-center {
    text-align: center;
    margin-top: 60px;
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, #2a2a2a 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23D4AF37" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.hero-content-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: calc(100vh - 160px);
}

.hero-left {
    padding-right: 20px;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: clamp(1.2rem, 5vw, 2.5rem);
    color: var(--off-white);
    margin-bottom: 30px;
    line-height: 1;
    text-align: left;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--off-white);
    opacity: 0.9;
    line-height: 1.8;
    text-align: left;
}

.hero-cta-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.btn-hero {
    width: 100%;
    display: block;
    padding: 22px 40px;
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--off-white);
    font-size: 1rem;
}

.feature-icon {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    line-height: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

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

/* ================================
   ANIMAÇÕES DE ENTRADA
   ================================ */

.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s both;
}

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

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   SEÇÃO PROBLEMA
   ================================ */

.problema {
    background: var(--off-white);
}

.problema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.problema-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.problema-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.problema-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.problema-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--black);
}

.problema-card p {
    color: var(--black);
    opacity: 0.8;
}

.transition-text {
    text-align: center;
    font-size: 1.4rem;
    margin-top: 80px;
    color: var(--black);
    font-family: var(--font-heading);
}

/* ================================
   SEÇÃO MÉTODO
   ================================ */

.metodo {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    position: relative;
    overflow: hidden;
}

.metodo::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.metodo-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--off-white);
    opacity: 0.8;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pilares-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.pilar-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 50px 40px;
    border-radius: 20px;
    transition: var(--transition);
}

.pilar-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.pilar-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.pilar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, #C19B2E 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.pilar-card:hover .pilar-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

.pilar-icon svg {
    width: 32px;
    height: 32px;
}

.pilar-letter {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}

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

.pilar-description {
    color: var(--off-white);
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.pilar-list {
    list-style: none;
    color: var(--off-white);
    opacity: 0.85;
}

.pilar-list li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    line-height: 1.6;
}

.pilar-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
}

/* ================================
   SEÇÃO PARA QUEM É
   ================================ */

.para-quem {
    background: var(--off-white);
}

.checklist {
    max-width: 900px;
    margin: 60px auto 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    margin-bottom: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.checklist-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.check-icon {
    font-size: 2rem;
    color: var(--gold);
    font-weight: bold;
    flex-shrink: 0;
}

.checklist-item p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--black);
}

/* ================================
   SEÇÃO QUEM SOMOS
   ================================ */

.quem-somos {
    background: var(--dark-gray);
    background-image: 
        linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(212,175,55,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.sobre-agencia {
    max-width: 900px;
    margin: 60px auto;
    color: var(--off-white);
}

.subsection-title {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 30px;
    text-align: center;
}

.sobre-agencia p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.8;
}

.fundador {
    margin-top: 80px;
}

.fundador-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

.fundador-photo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border: 3px solid var(--gold);
    width: 100%;
    aspect-ratio: 1;
}

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

.photo-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--gold) 0%, #C19B2E 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--black);
    font-weight: 700;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.fundador-info {
    color: var(--off-white);
    display: flex;
    flex-direction: column;
}

.fundador-info h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
    line-height: 1.2;
}

.fundador-cargo {
    font-size: 1.1rem;
    color: var(--gold);
    opacity: 0.8;
    margin-bottom: 30px;
    line-height: 1.5;
}

.fundador-info p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.8;
    text-align: justify;
    text-justify: inter-word;
}

.fundador-missao {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold);
    margin-top: 30px;
    padding: 25px;
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--gold);
    border-radius: 10px;
}

/* ================================
   SEÇÃO RESULTADOS
   ================================ */

.resultados {
    background: var(--off-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 80px;
}

.stat-card {
    background: white;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--black);
    opacity: 0.8;
}

.depoimentos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.depoimento-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.depoimento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Depoimento em Vídeo */
.depoimento-video {
    padding: 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    background: var(--black);
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Depoimento em Texto */
.depoimento-texto {
    padding: 50px 40px 30px;
    position: relative;
}

.aspas-icon {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.2;
    font-family: var(--font-heading);
    line-height: 1;
}

.depoimento-content {
    position: relative;
    z-index: 1;
}

.depoimento-texto-content {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--black);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Footer do Depoimento */
.depoimento-footer {
    padding: 25px 30px;
    background: rgba(212, 175, 55, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: auto;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 15px;
}

.autor-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, #C19B2E 100%);
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.autor-info {
    flex: 1;
}

.autor-nome {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 5px;
    font-size: 1rem;
}

.autor-cargo {
    font-size: 0.85rem;
    color: var(--black);
    opacity: 0.6;
}

.instagram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
    flex-shrink: 0;
}

.instagram-link:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 20px rgba(188, 24, 136, 0.4);
}

/* ================================
   SEÇÃO CTA FINAL
   ================================ */

.cta-final {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, var(--gold) 150%);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
}

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

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 25px;
    color: var(--off-white);
    font-size: 0.95rem;
}

.cta-features span {
    opacity: 0.9;
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background: var(--black);
    color: var(--off-white);
    padding: 60px 0 30px;
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.footer-tagline {
    opacity: 0.8;
    margin-bottom: 30px;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--off-white);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-social a {
    color: var(--off-white);
    opacity: 0.7;
    transition: var(--transition);
}

.footer-social a:hover {
    opacity: 1;
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-copyright {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 40px 0;
        gap: 20px;
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hero responsivo */
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        min-height: auto;
        padding: 40px 0;
    }

    .hero-left {
        padding-right: 0;
        text-align: center;
    }

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

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

    .hero-cta-box {
        padding: 40px 30px;
    }

    .fundador-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .fundador-photo {
        max-width: 350px;
        margin: 0 auto;
    }

    .fundador-info {
        text-align: left;
    }

    .fundador-info p {
        text-align: left;
        text-align-last: left;
    }

    .fundador-info h3 {
        text-align: center;
    }

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

    .photo-placeholder {
        max-width: 300px;
        margin: 0 auto;
    }

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

    .cta-features {
        flex-direction: column;
        gap: 15px;
    }

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

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

    /* Depoimentos responsivos */
    .depoimentos {
        grid-template-columns: 1fr;
    }

    .depoimento-texto {
        padding: 40px 30px 20px;
    }

    .depoimento-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .depoimento-autor {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .btn {
        padding: 15px 30px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 18px 35px;
        font-size: 1rem;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    /* Logo responsiva */
    .logo-img {
        height: 40px;
        max-width: 150px;
    }

    .footer-logo-img {
        height: 50px;
        max-width: 200px;
    }
}

