/* ===================== CSS RESET ===================== */
* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Definições globais - Paleta de cores */
:root {
    /* --- FUNDOS GERAIS (Sua Arquitetura) --- */
    --main-bg: #121212;
    --header-bg: #013155;
    --topbar-bg: #1A1A1A;
    /* Novo: Cinza Escuro para Topo */
    --footer-bg: var(--topbar-bg);
    --section-bg: #F0F0F0;

    /* --- CORES DE TEXTO --- */
    --text-primary: #000000;
    --text-secondary: #1A1A1A;
    --text-on-dark: #FFFFFF;

    /* --- CONSTANTES --- */
    --accent-color: #FF9933;
    --border-color: #DEDEDE;
    --radius: 20px 0 20px 0;
}

/* CLASSE PADRÃO PARA DESTAQUE DE TEXTO */
.text-highlight {
    color: var(--accent-color);
}

/* ========== FONT STYLES (ESTILOS DA FONTE) ========== */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: var(--main-bg);
    color: var(--text-on-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Container para centralizar o conteúdo */
.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ----- TOPBAR STYLES ----- */
.topbar {
    /* background-color: var(--section-bg); */
    /* color: var(--text-primary); */
    background-color: var(--topbar-bg);
    color: var(--text-on-dark);
    padding: 20px 0;
    border-bottom: 1px solid #e68a00;

}

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

.topbar .logo img {
    height: 80px;
}

.topbar .contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.topbar .contact-items-column {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.topbar .contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.topbar .contact-item i {
    color: var(--accent-color);
}

.topbar a {
    text-decoration: none;
    color: var(--text-on-dark);
    /* color: var(--text-dark); */
}

.topbar a:hover {
    color: var(--accent-color);
    /* Laranja de Destaque */
}

.topbar .social-media {
    display: flex;
    align-items: center;
}

.topbar .social-media a {
    color: var(--text-dark);
    font-size: 1.2rem;
    transition: color 0.3s;
    margin-left: 15px;
}

.topbar .social-media a:first-child {
    margin-left: 0;
}

.topbar .social-media a:hover {
    color: var(--accent-color);
}

/* ----- HEADER STYLES ----- */
header {
    background-color: var(--header-bg);
    /* color: var(--text-white); */
    color: var(--text-on-dark);
    position: relative;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1250px;
    margin: 0 auto;
    padding-top: 15px;
    padding-bottom: 15px;
}

header nav {
    padding: 1rem 0;
}

.hamburger-menu {
    display: none;
}

.menu-items {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.nav-links {
    list-style: none;
    margin: 0;
    display: flex;
    gap: 20px;
    padding-left: 100px;
}

.nav-links li {
    text-transform: uppercase;
}

.nav-links a {
    color: var(--text-on-dark);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

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

.nav-links a:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.cta-button {
    display: block;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    padding: 10px 30px;
    background-color: var(--accent-color);
    color: var(--text-on-dark);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
    text-align: center;
    gap: 8px;
}

.btn:hover {
    /* background-color: #e68a00; */
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
}

/* ========== HERO SECTION STYLES ========== */
.hero-section {
    position: relative;
    background-color: var(--main-bg);
    color: var(--text-on-dark);
    width: 100%;
    overflow-x: hidden;
}

/* Garante que o texto de destaque use o LARANJA */
.hero-section .highlight-text {
    color: var(--accent-color);
}

.hero-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 20px;
    height: auto;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40%;
    color: var(--text-on-dark);
    padding: 0 20px;
}

.hero-image {
    width: 50%;
    height: auto;
    min-height: 400px;
    position: relative;
    border-radius: var(--radius);
    box-shadow: 0 0 30px rgba(255, 153, 51, 0.8);
    overflow: hidden;
    z-index: 5;
}

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

.hero-content h1 {
    font-size: 3em;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.hero-content p {
    font-size: 1.2em;
    margin: 0 0 30px 0;
}

.hero-content .btn {
    background-color: var(--header-bg);
    color: #fff;
    padding: 10px 30px;
    transition: background-color 0.3s, transform 0.3s;
}

.hero-content .btn:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ========== SERVICE SECTION STYLES ========== */
.services-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--main-bg);
    color: var(--text-on-dark);
}

.services-section .container {
    /* background-color: var(--section-bg); */
    background-color: var(--header-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);

    padding: 50px;
    border-radius: var(--radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.services-section h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: var(--text-on-dark);
}

.services-section p {
    font-size: 1.2em;
    margin-bottom: 50px;
    color: var(--text-on-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--header-bg);
    border-radius: var(--radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
    color: var(--text-on-dark);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px;
    font-size: 1.5em;
    color: var(--text-on-dark);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-bottom {
    margin-top: 50px;
    color: var(--text-on-dark);
}

/* ========== PORTFOLIO SECTION STYLES ========== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 50px 0;
    justify-content: center;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.05);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.portfolio-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}


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

.portfolio-item .overlay h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: bold;
}

.portfolio-item .overlay p {
    font-size: 1em;
    margin: 0;
}

/* ========== TESTIMONIALS SECTION STYLES ========== */
.testimonials-section {
    max-width: 1250px;
    padding: 100px 0;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    background-color: var(--header-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);

}

.testimonials-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--text-on-dark);
}

.testimonials-section p {
    font-size: 1.2em;
    margin-bottom: 50px;
    color: var(--text-on-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.testimonial-card {
    background-color: var(--header-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    color: var(--text-on-dark);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-on-dark);
}

.testimonial-card span {
    font-weight: bold;
    font-size: 1.2em;
    color: var(--accent-color);
}

/* ========== ABOUT SECTION STYLES ========== */
.about-section {
    padding: 100px 0;
    background-color: var(--main-bg);
    position: relative;
    overflow: hidden;
}

.about-section-content {
    display: flex;
    align-items: center;
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
    justify-content: center;
}

.about-content {
    width: 65%;
    /* background-color: var(--section-bg); */
    background-color: var(--header-bg);
    color: var(--text-on-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 80px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;

}

.about-content h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    /* color: var(--text-primary); */
    color: var(--text-on-dark);
}

.about-content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    /* color: var(--text-primary); */
    color: var(--text-on-dark);
}

.about-image {
    width: 45%;
    position: relative;
    z-index: 2;
    margin-left: -80px;
}

.about-image img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-container {
    margin-top: 80px;
}

.about-content .btn {
    background-color: var(--accent-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.about-content .btn:hover {
    /* background-color: #e68a00; */
    background-color: var(--accent-color);
}

/* ========== CONTACT SECTION STYLES ========== */
.contact-section {
    color: var(--text-on-dark);
    padding: 100px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: var(--text-on-dark);
    font-weight: bold;
    text-align: center;
}

.contact-section p {
    font-size: 1.2em;
    margin-bottom: 50px;
    color: var(--text-on-dark);
    text-align: center;
}

.highlight-text {
    color: var(--accent-color);
}

.contact-section .container {
    background-color: var(--header-bg);
    color: var(--text-on-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    padding: 50px;
    border-radius: var(--radius);

}

.contact-section .form-container {
    background-color: var(--header-bg);
    border-radius: var(--radius);
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-section input,
.contact-section textarea {
    width: 100%;
    max-width: 600px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background-color: transparent;
    color: #fff;
    font-size: 1em;
    outline: none;
    transition: border-color 0.3s;
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 600;
}

.contact-section input:focus,
.contact-section textarea:focus {
    border-color: var(--accent-color);
}

.contact-section textarea {
    min-height: 150px;
}

.contact-section button {
    width: 100%;
    max-width: 600px;
    background-color: var(--accent-color);
    color: var(--text-on-dark);
    padding: 15px 30px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

.contact-section button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Compatibilidade com navegadores baseados em WebKit (Chrome, Safari, Edge) */
.contact-section input::-webkit-input-placeholder,
.contact-section textarea::-webkit-input-placeholder {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-on-dark);
}

/* Compatibilidade com o Firefox */
.contact-section input::-moz-placeholder,
.contact-section textarea::-moz-placeholder {
    font-size: 14px;
    font-weight: 600;
    color: #a9a9a9;
    opacity: 1;
}

/* Compatibilidade com o Internet Explorer */
.contact-section input:-ms-input-placeholder,
.contact-section textarea:-ms-input-placeholder {
    font-size: 14px;
    font-weight: 600;
    color: #a9a9a9;
}

/* ESTILIZAÇÃO DA MENSAGEM DO FORMULÁRIO DE CONTATO */
#form-response {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#form-response.success {
    background-color: #28a745;
    color: white;
    opacity: 1;
}

#form-response.error {
    background-color: #dc3545;
    color: white;
    opacity: 1;
}

/* Corrigir o background branco e o texto preto em campos com Auto-preenchimento */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    /* Cor de fundo transparente (ou a cor do seu input) */
    -webkit-box-shadow: 0 0 0px 1000px var(--header-bg) inset !important;
    /* Cor do texto (deve ser o texto claro, var(--text-light) ou #fff) */
    -webkit-text-fill-color: var(--text-on-dark) !important;
    transition: background-color 5000s ease-in-out 0s;
}


/* ========== PRE-FOOTER / CTA-BOTTOM STYLES ========== */
.cta-bottom {
    padding: 20px 0;
    background-color: var(--header-bg);
}

.cta-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-bottom h2 {
    font-size: 1.9em;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cta-buttons .btn {
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: #fff;
    padding: 8px 30px;
    border-radius: var(--radius);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons .btn:hover {
    background-color: #e68a00;
    border-color: #fff;
    color: #fff;
}

/* Estilos para ícones */
.cta-buttons .btn i {
    font-size: 1.2em;
}

/* ========== FOOTER STYLES ========== */
footer {
    background-color: var(--footer-bg);
    color: var(--text-on-dark);
    padding: 20px 0 10px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-items: flex-start;
    padding-bottom: 40px;
}

.footer-logo {
    font-size: 0;
}

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

.footer-nav,
.footer-contact {
    margin-top: 20px;
}

.footer-nav h3,
.footer-contact h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: bold;
    color: var(--text-on-dark);
    text-transform: uppercase;
}

.footer-nav ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-nav a,
.footer-contact a {
    color: var(--text-on-dark);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-contact p {
    margin: 5px 0;
    color: var(--text-on-dark);
}

.footer-contact p i {
    margin-right: 10px;
}

.social-media a {
    display: inline-block;
    color: var(--text-on-dark);
    font-size: 1.5em;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #e68a00;
}

/* ========== FOOTER BOTTOM STYLES ========== */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 30px;
}

.footer-bottom p {
    font-size: 0.9em;
    color: #888;
    margin: 0;
}

/* ----- MEDIA QUERIES (VERSÃO FINAL COMPLETA PARA MOBILE) ----- */
@media (max-width: 768px) {

    .topbar {
        padding: 10px 0;
        /* Reduz de 20px para 10px no mobile para dar um visual mais compacto */
    }

    /* Ajustes na Topbar para exibir todos os contatos */
    .topbar .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    /* As informações de contato agora são exibidas no mobile */
    .topbar .contact-items-column {
        display: flex;
    }

    .topbar .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .topbar .social-media {
        margin-top: 5px;
    }

    .topbar .logo img {
        height: 60px;
        /* Reduz a altura do logo no mobile, se 80px for muito */
    }

    /* AJUSTES NO HEADER/NAVBAR PARA O LAYOUT DE LINHA MOBILE */
    header .container {
        justify-content: space-between;
        align-items: center;
        padding: 8px 20px;
    }

    .cta-button .btn {
        padding: 8px 20px;
        font-size: 0.9em;
    }

    .menu-items {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--header-bg);
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .menu-items.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0;
        gap: 10px;
    }

    .nav-links li {
        margin: 5px 0;
    }

    .cta-button {
        display: block;
    }

    .hamburger-menu {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
        color: var(--text-on-dark);
    }

    /* AJUSTES NA SEÇÃO HERO */
    .hero-section {
        justify-content: center;
        text-align: center;
    }

    .hero-section .container {
        flex-direction: column;
        height: auto;
        margin-top: -80px;
        padding: 80px 0 0 0;
    }

    .hero-content {
        order: 2;
        width: 100%;
        text-align: center;
        padding: 20px;
        margin-top: -50px;
        z-index: 10;
    }

    .hero-image {
        order: 1;
        width: 100%;
        height: auto;
        min-height: 300px;
        border-radius: 0;
        box-shadow: 0 0 30px rgba(255, 153, 51, 0.8);
        overflow: hidden;
        z-index: 5;
    }

    .hero-image img {
        border-radius: 0;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
        text-align: center;
        padding: 0 20px;
    }

    .hero-content .btn {
        width: 90%;
        max-width: 320px;
        margin: 0 auto;
        padding: 12px 15px;
        font-size: 0.8em;
        line-height: 1.2;
    }

    /* AJUSTES PARA A SEÇÃO DE SERVIÇOS */
    .services-section {
        padding: 50px 0;
    }

    .services-section .container {
        padding: 30px;
    }

    .services-section h2 {
        font-size: 2em;
    }

    .services-section p {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        border-radius: 10px;
    }

    .service-card img {
        height: 150px;
    }

    .service-card h3 {
        padding: 15px;
        font-size: 1.2em;
    }

    .cta-button-bottom {
        margin-top: 30px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85em;
        max-width: 90%;
        margin: 0 auto;
    }

    /* ESTILDO MOBILE TESTIMONIALS */
    .testimonial-container {
        flex-direction: column;
        align-items: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-section .container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    /* ----- SECTION ABOUT (max-width: 768px) ----- */
    .about-content {
        padding: 40px 25px;
        width: 100%;
        margin-left: 0;
    }

    .about-section {
        padding: 50px 0;
    }


    .about-section::before {
        display: none;
    }

    .about-section-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .about-content,
    .about-image {
        width: 100%;
        margin-left: 0;
    }

    .about-image img {
        height: auto;
    }

    .about-content h2 {
        font-size: 1.3em;
    }

    .about-content .btn {
        padding: 10px 15px;
        font-size: 0.85em;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
        text-align: center;
    }

    /* ===================== ESTILOS MOBILE DO CONTACT ===================== */
    .contact-section {
        padding: 50px 0;
    }

    .contact-section h2 {
        font-size: 1.8em;
    }

    .contact-section p {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .contact-section button {
        padding: 12px 20px;
        font-size: 0.8em;
    }

    /* ----- DENTRO DE @media (max-width: 768px) ----- */
    .cta-bottom {
        padding: 20px 0;
    }

    .cta-bottom .container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .cta-bottom h2 {
        font-size: 1.4em;
        margin-bottom: 20px;
    }

    .cta-buttons .btn {
        font-size: 0.7em;
        padding: 5px 20px;
    }

    .cta-buttons {
        flex-direction: row;
        margin: 0 auto;
        width: 100%;
        max-width: 300px;
    }

    /* ----- DENTRO DE @media (max-width: 768px) ----- */
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-nav,
    .footer-contact {
        margin-top: 20px;
        text-align: center;
    }

    .footer-nav ul,
    .footer-contact ul {
        flex-direction: column;
        gap: 10px;
    }

    .footer-contact p {
        text-align: center;
    }

    .social-media {
        justify-content: center;
    }

}