header {
    max-width: 100% !important;
    width: 100% !important;
}

section#home {
    max-width: 100% !important;
    width: 100% !important;
}

section#sobre,
section.destino-conteudo:not(.galeria) {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    background: linear-gradient(to bottom, #f0f8ff, #e6f3ff);
    color: #333;
}

:focus:not(:focus-visible) {
    outline: none;
}

:focus-visible {
    outline: 2px solid #063557;
    outline-offset: 2px;
}

header {
    background: linear-gradient(135deg, #063557, #000000);
    color: white;
    padding: 15px 0;
    margin-bottom: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.logo-titulo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    position: relative;
    min-height: 100px;
}

.logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    position: absolute;
    left: 500px;
    top: 65%;
    transform: translateY(-50%);
    filter: brightness(0) invert(1);
}

header h1 {
    font-size: 2.2em;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    text-align: center;
    width: 100%;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

section#home {
    position: relative;
    padding: 100px 0;
    background-image: url('./Imagens/Ilha_do_Mel/IDMheader.jpg');
    background-size: cover;
    background-position: center;
    min-height: 650px;
    display: flex;
    align-items: center;
    margin: 0;
}

section#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(6, 53, 87, 0.6) 30%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

section#home::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 53, 87, 0.5) 0%, rgba(6, 53, 87, 0.3) 50%, transparent 100%);
    z-index: 1;
}

.home-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.home-content {
    background: white;
    padding: 40px 50px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    max-width: 500px;
}

section#home h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #063557;
    font-weight: bold;
    line-height: 1.2;
}

section#home p {
    font-size: 1.1em;
    margin: 12px 0;
    color: #333;
    line-height: 1.6;
}

section#home p:last-of-type {
    font-size: 1em;
    margin-top: 20px;
    color: #063557;
    font-style: italic;
    font-weight: 600;
}

section {
    background: white;
    padding: 40px 30px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

section h2 {
    font-size: 2.2em;
    color: #063557;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #063557, #000000);
    border-radius: 2px;
}

h1, h2, h3 {
    margin-top: 0;
}

section#contato {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 0;
    padding: 60px 40px;
}

.contato-container {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-top: 40px;
}

section#contato h2,
section#contato > p {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
} 

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #f8fcff, #f0f8ff);
    border-radius: 15px;
    border-left: 4px solid #063557;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(0,119,204,0.15);
}

.info-item .icone {
    font-size: 2.5em;
    min-width: 60px;
    text-align: center;
}

.info-item strong {
    display: block;
    color: #063557;
    font-size: 1.2em;
    margin-bottom: 8px;
    font-weight: 700;
}

.info-item p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.info-item a {
    color: #063557;
    text-decoration: none;
    font-weight: 600;
}

.info-item a:hover {
    text-decoration: underline;
}

.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 35px;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.contato-mapa iframe {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-radius: 15px;
    border: 3px solid #f0f8ff;
}

section#destinos {
    margin-top: 60px;
}

.destinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.destino-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.destino-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.destino-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.destino-info {
    padding: 20px;
}

.destino-info h3 {
    margin: 0 0 10px 0;
    color: #00090f;
    font-size: 1.4em;
}

.destino-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.btn-saiba-mais {
    display: inline-block;
    background: linear-gradient(135deg, #063557, #000000);
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,119,204,0.3);
}

.btn-saiba-mais:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,119,204,0.4);
}

.btn-hero {
    display: inline-block;
    background: linear-gradient(135deg, #063557, #000);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 6px 20px rgba(6, 53, 87, 0.4);
    transition: all 0.3s ease;
    border: 2px solid #063557;
    margin-top: 30px;
}

.btn-hero:hover {
    background: linear-gradient(135deg, #000, #063557);
    transform: translateY(-3px);
}

section#destinos {
    margin-top: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    max-width: 100%;
}

section#destinos h2 {
    background: white;
    padding: 40px 20px;
    margin: 0;
    font-size: 2.5em;
}

.destinos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0;
}

.destino-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.destino-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.destino-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.5);
}

.destino-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.destino-info h3 {
    color: white;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.destino-info p {
    color: white;
    font-size: 1em;
    margin-bottom: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.destino-card:hover .destino-info p {
    opacity: 1;
}

.btn-saiba-mais {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-saiba-mais:hover {
    background: white;
    color: #063557;
}

.galeria {
    width: 100% !important;
    max-width: none !important;
    margin: 60px 0 0 0 !important;
    padding: 100px 0 !important;
    background: #f8f9fa;
    position: relative;
    left: auto !important;
    right: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.galeria h3 {
    color: #063557;
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.galeria-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0 !important;
    max-width: 1600px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
}

.galeria-link,
.galeria-video {
    position: relative;
    display: block;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.galeria-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.5)
    );
    z-index: 1;
    transition: background 0.3s ease;
}

.galeria-link:hover::before {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.7)
    );
}

.galeria-link::after {
    content: '🔍 Ver ampliado';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.3em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.3s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.galeria-link:hover::after {
    opacity: 1;
}

.galeria-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.galeria-link:hover img {
    transform: scale(1.1);
}

.galeria-video {
    background: #000;
}

.galeria-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.6)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 3;
}

.galeria-video:hover .video-overlay {
    opacity: 0;
}

.video-overlay span {
    color: white;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.modal-galeria {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    cursor: zoom-out;
}

.modal-galeria.ativo {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.modal-galeria img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(255,255,255,0.1);
}

.btn-fechar-modal {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 60px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    line-height: 1;
    padding: 0;
}

.btn-fechar-modal:hover {
    background: rgba(255, 68, 68, 0.8);
    transform: scale(1.1) rotate(90deg);
    color: white;
}

section#pacotes,
section#contato {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 0;
    padding: 60px 40px;
}

section#pacotes > *,
section#contato > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.destino-hero-completo {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-image: url('./Imagens/Serra do Mar/SDM-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4),
        rgba(6, 53, 87, 0.6)
    );
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 40px;
}

.hero-content-wrapper h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    animation: fadeInDown 1s ease;
    color: white;
}

.hero-content-wrapper h2::after {
    display: none;
}

.hero-content-wrapper .subtitulo {
    font-size: 1.5em;
    margin-bottom: 40px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease 0.3s both;
}

.btn-hero-scroll {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2em;
    border: 3px solid white;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-hero-scroll:hover {
    background: white;
    color: #063557;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section.destino-hero-completo {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.destino-conteudo {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 80px 0 60px 0;
    background: white;
}

.destino-conteudo-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.sobre-destino-destaque {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(135deg, #e6f3ff, #cce7ff);
    padding: 60px 0;
    margin-bottom: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sobre-destino-destaque-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    border-left: 6px solid #063557;
    padding-left: 40px;
}

.sobre-destino-destaque h3 {
    color: #063557;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sobre-destino-destaque p {
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.9;
    color: #1a1a1a;
    text-align: justify;
}

.info-cards-wrapper {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: white;
    padding: 60px 0;
    margin-bottom: 0;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.info-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #063557;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.info-card h3 {
    color: #063557;
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e6f3ff;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.info-card ul li {
    padding: 12px 0;
    color: #555;
    font-size: 1.05em;
    line-height: 1.6;
    border-bottom: 1px solid #f0f8ff;
}

.info-card ul li:last-child {
    border-bottom: none;
}

.info-detalhes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-detalhes p {
    background: #f8fcff;
    padding: 18px;
    border-radius: 8px;
    border-left: 3px solid #063557;
    margin: 0;
    line-height: 1.6;
}

.info-detalhes strong {
    color: #063557;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1em;
    font-weight: 700;
}

.cta-reserva {
    background: linear-gradient(135deg, #063557, #0a4d7a);
    color: white;
    text-align: center;
    padding: 60px 40px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
}

.cta-reserva h3 {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
}

.cta-reserva p {
    font-size: 1.15em;
    margin-bottom: 35px;
    color: white;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.botoes-cta {
    display: flex !important;
    flex-direction: row !important;
    gap: 25px !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
}

.btn-voltar {
    background: transparent;
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: 2px solid white;
    white-space: nowrap;
}

.btn-voltar:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    color: white !important;
}

.btn-hero,
.btn-voltar {
    min-width: 150px; 
    height: 60px; 
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (max-width: 968px) {
    .contato-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contato-mapa iframe {
        width: 100% !important;
        height: 350px;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .sobre-destino-destaque-inner {
        padding: 0 20px;
    }
    
    .sobre-destino-destaque h3 {
        font-size: 2em;
    }
    
    section#home .home-wrapper {
        padding: 0 30px;
    }
    
    .home-content {
        padding: 40px;
        max-width: 90%;
    }
    
    section#home h2 {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    section {
        padding: 30px 15px;
        margin-bottom: 20px;
    }

    .header-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .logo-titulo {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: auto;
        gap: 10px;
    }

    .logo {
        position: static !important;
        transform: none !important;
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    header h1 {
        font-size: 1.6em !important;
        width: 100%;
        text-align: center;
    }

    nav ul {
        margin-top: 15px;
        gap: 10px;
        justify-content: center;
    }

    nav ul li a {
        padding: 6px 12px;
        font-size: 0.95em;
    }

    section#home {
        padding: 40px 0;
        min-height: auto;
    }
    
    section#home::after {
        width: 100%;
    }
    
    .home-content {
        width: 70% !important;
        max-width: 100% !important;
        padding: 25px 20px;
        margin: 0 25px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    
    section#home h2 {
        font-size: 1.8em;
    }
    
    section#home p {
        font-size: 1em;
    }

    .destinos-grid {
        grid-template-columns: 1fr !important; 
    }
    
    .destino-card {
        height: 300px;
    }

    .destino-info h3 {
        font-size: 1.6em;
    }

    .destino-info p {
        opacity: 1;
        font-size: 0.9em;
    }

    .hero-content-wrapper h2 {
        font-size: 2.2em;
    }

    .hero-content-wrapper .subtitulo {
        font-size: 1.1em;
    }

    .sobre-destino-destaque h3 {
        font-size: 1.6em;
    }

    .sobre-destino-destaque p {
        font-size: 1em;
        text-align: left;
    }

    .galeria-grid {
        grid-template-columns: 1fr !important;
        padding: 0 20px !important;
    }
    
    .galeria-link,
    .galeria-video {
        height: 250px;
    }
    
    .galeria h3 {
        font-size: 1.8em;
    }

    .info-item {
        padding: 15px;
        gap: 10px;
    }

    .info-item .icone {
        font-size: 1.8em;
        min-width: 40px;
    }

    .botoes-cta {
        flex-direction: column !important;
        gap: 15px !important;
        width: 100%;
    }

    .btn-hero,
    .btn-voltar {
        width: 100% !important;
        max-width: 320px;
    }
}