
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* CONTENEDOR */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* ================= HEADER ================= */

.hero {
    text-align: center;
    padding: 80px 20px 100px;
    background-color: #0080a0;
    border-bottom: 5px solid white;
    color: white;
    margin-top: -70px;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.hero h2 {
    font-size: 1.1rem;
    font-weight: 300;
    margin-top: 15px;
    text-transform: uppercase;
    background-color: rgba(255,255,255,0.2);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
}

/* ================= BOTONES ================= */

.cta-buttons {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.WhatsApp-float,
.btn-maps,
.btn-outline,
.btn-doctoralia,
.btn-dudas,
.btn-tcc {
    background-color: white;
    color: #363636;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
}

.WhatsApp-float:hover,
.btn-maps:hover,
.btn-outline:hover,
.btn-doctoralia:hover,
.btn-dudas:hover,
.btn-tcc:hover {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

/* BOTÓN VOLVER */
.btn-volver {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
    font-weight: 500;
    color: #000;
}

.btn-volver:hover {
    transform: translateX(-5px);
    opacity: 0.8;
}

/* ================= CONTENIDO ================= */

.content-grid {
    background: white;
    margin-top: -60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 50px;
}

section {
    margin-bottom: 70px;
}

/* ESTRUCTURA */
.profile-section,
.office-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .profile-section {
        flex-direction: row;
    }

    .office-section {
        flex-direction: row-reverse;
    }
}

.text-content {
    flex: 1;
}

.text-content h3 {
    color: #0080a0;
    border-bottom: 2px solid #0080a0;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* ================= IMÁGENES ================= */

.image-container,
.gallery {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.profile-pic {
    width: 100%;
    max-width: 350px;
    border-radius: 20px 0 20px 0;
    object-fit: cover;
    box-shadow: 12px 12px 0 #eee;
}

.office-pic {
    width: 48%;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ================= FOOTER ================= */

.footer {
    background-color: #eef2ff;
    padding: 50px 20px;
    color: #555;
    text-align: center;
    font-size: 0.95rem;
    margin-top: -40px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item:hover {
    color: #87CEEB;
}

.contact-item i {
    color: #87CEEB;
    font-size: 1.3rem;
    margin-bottom: 10px;
    display: block;
}

.socials {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icon {
    font-size: 1.2rem;
    color: #777;
}

.social-icon:hover {
    color: #87CEEB;
}

/* ================= DUDAS ================= */

.contenedor-dudas {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.intro-text {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #555;
}

/* FAQ */
details {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 15px;
    cursor: pointer;
    transition: 0.3s;
}

details:hover {
    background-color: #f0f8ff;
    border-color: #87CEEB;
}

summary {
    font-weight: bold;
    font-size: 1.1rem;
    list-style: none;
    position: relative;
    padding-right: 30px;
}

summary::after {
    content: '+';
    position: absolute;
    right: 0;
    color: #008CBA;
    font-size: 1.5rem;
}

details[open] summary::after {
    content: '-';
}

details p {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* FORMULARIO */
.form-section {
    margin-top: 50px;
    background-color: #f4f4f4;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.formulario-contacto input,
.formulario-contacto textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.formulario-contacto input:focus,
.formulario-contacto textarea:focus {
    outline: none;
    border-color: #008CBA;
}

.btn-enviar {
    background-color: #008CBA;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.btn-enviar:hover {
    background-color: #005f7f;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    header {
        padding: 15px 10px;
    }

    main, section {
        margin-top: 40px;
    }

    h1 {
        line-height: 1.2;
    }
}

/* ========================= */
/* PAGINA DE GRACIAS */
/* ========================= */

.thankyou-body {
    background: linear-gradient(135deg, #0080a0, #e6f7ff);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.thankyou-container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    text-align: center;
}

.thankyou-card {
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: fadeIn 0.6s ease-in-out;
}

.thankyou-icon {
    font-size: 60px;
    color: #0080a0;
    margin-bottom: 20px;
}

.thankyou-card h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.thankyou-card p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
}

.btn-thankyou {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    background-color: #0080a0;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-thankyou:hover {
    background-color: #006b85;
    transform: translateY(-2px);
}

/* Animación suave */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= TERAPIA COGNITIVO-CONDUCTUAL ================= */

.tcc-page {
    background: #fbfcfc;
    color: #2f3b3d;
}

.tcc-page .container {
    max-width: 1080px;
}

.tcc-hero {
    background: linear-gradient(135deg, #007b99 0%, #00a0a8 100%);
    color: #fff;
    padding: 25px 0 92px;
}

.tcc-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    opacity: 0.94;
}

.tcc-back-link:hover {
    opacity: 1;
    transform: translateX(-3px);
}

.tcc-eyebrow,
.tcc-section-heading > p {
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tcc-hero .tcc-eyebrow {
    margin-top: 65px;
    color: #d9f8f6;
}

.tcc-hero h1 {
    max-width: 770px;
    margin: 12px auto 18px;
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    line-height: 1.08;
    text-align: center;
    text-shadow: none;
}

.tcc-hero .tcc-eyebrow,
.tcc-hero .tcc-lead {
    text-align: center;
}

.tcc-lead {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #ecffff;
}

.tcc-hero-actions,
.tcc-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.tcc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 12px 23px;
    border: 2px solid transparent;
    border-radius: 99px;
    font-weight: 700;
    text-align: center;
}

.tcc-btn-primary {
    color: #fff;
    background: #0080a0;
    box-shadow: 0 8px 20px rgba(0, 83, 100, 0.2);
}

.tcc-hero .tcc-btn-primary {
    color: #006f89;
    background: #fff;
    box-shadow: none;
}

.tcc-btn-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.8);
}

.tcc-btn:hover {
    transform: translateY(-2px);
}

.tcc-btn-primary:hover {
    background: #006f89;
}

.tcc-hero .tcc-btn-primary:hover {
    color: #005d73;
    background: #e9ffff;
}

.tcc-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
}

.tcc-intro,
.tcc-other,
.tcc-cta {
    padding-top: 82px;
    padding-bottom: 82px;
}

.tcc-section-heading {
    max-width: 760px;
    margin-bottom: 36px;
}

.tcc-section-heading > p,
.tcc-eyebrow {
    color: #0080a0;
}

.tcc-section-heading h2,
.tcc-couple h2,
.tcc-cta h2 {
    margin-top: 7px;
    color: #263b3f;
    font-size: clamp(1.8rem, 3.6vw, 2.55rem);
    line-height: 1.2;
}

.tcc-intro-grid,
.tcc-other-grid,
.tcc-couple-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.8fr);
    gap: 46px;
    align-items: center;
}

.tcc-copy p + p,
.tcc-couple-grid p + p {
    margin-top: 17px;
}

.tcc-highlight {
    padding: 35px;
    border-radius: 18px;
    background: #eaf7f7;
    border: 1px solid #cde9e9;
}

.tcc-highlight > i,
.tcc-note > i,
.tcc-couple-quote > i {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    margin-bottom: 17px;
    color: #fff;
    background: #0080a0;
    border-radius: 50%;
    font-size: 1.15rem;
}

.tcc-highlight h3 {
    margin-bottom: 10px;
    color: #1d555c;
    font-size: 1.25rem;
}

.tcc-areas {
    padding: 82px 0 88px;
    color: #eafafa;
    background: #29636b;
}

.tcc-section-heading-light > p {
    color: #bde8e6;
}

.tcc-section-heading-light h2 {
    color: #fff;
}

.tcc-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.tcc-card {
    padding: 35px;
    background: #fff;
    color: #415054;
    border-radius: 16px;
    box-shadow: 0 12px 25px rgba(14, 48, 54, 0.15);
}

.tcc-card-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 20px;
    color: #007f9e;
    background: #e6f5f5;
    border-radius: 13px;
    font-size: 1.25rem;
}

.tcc-card h3 {
    margin-bottom: 13px;
    color: #24464b;
    font-size: 1.35rem;
}

.tcc-card p + p {
    margin-top: 15px;
}

.tcc-other-grid {
    align-items: stretch;
}

.tcc-list {
    display: grid;
    gap: 11px;
}

.tcc-list p {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #dce7e7;
    font-weight: 600;
}

.tcc-list i {
    display: grid;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    place-items: center;
    color: #fff;
    background: #23a4a1;
    border-radius: 50%;
    font-size: 0.65rem;
}

.tcc-note {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 35px;
    color: #205760;
    background: #f5eded;
    border-radius: 16px;
    font-size: 1.08rem;
}

.tcc-note > i {
    color: #fff;
    background: #c46f7e;
}

.tcc-couple {
    padding: 78px 0;
    background: #f0f8f8;
}

.tcc-couple-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(250px, 0.8fr);
}

.tcc-couple .tcc-eyebrow {
    margin-bottom: 9px;
}

.tcc-couple h2 {
    margin-top: 0;
    margin-bottom: 22px;
}

.tcc-couple-quote {
    padding: 36px;
    color: #fff;
    background: #0080a0;
    border-radius: 16px;
    font-size: 1.22rem;
    line-height: 1.55;
}

.tcc-couple-quote > i {
    color: #0080a0;
    background: #fff;
}

.tcc-cta {
    text-align: center;
}

.tcc-cta h2 {
    max-width: 740px;
    margin: 0 auto;
}

.tcc-cta > p {
    margin-top: 14px;
    font-size: 1.1rem;
}

.tcc-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #176574;
    font-weight: 700;
}

.tcc-phone-link:hover {
    color: #0080a0;
}

.tcc-footer {
    padding: 32px 0;
    color: #cce6e6;
    background: #24494f;
    text-align: center;
    font-size: 0.93rem;
}

.tcc-footer address {
    margin: 7px 0;
    font-style: normal;
}

.tcc-footer a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.tcc-page a:focus-visible {
    outline: 3px solid #f4cb75;
    outline-offset: 4px;
}

@media (max-width: 767px) {
    .tcc-hero {
        padding-bottom: 68px;
    }

    .tcc-hero .tcc-eyebrow {
        margin-top: 45px;
    }

    .tcc-intro,
    .tcc-other,
    .tcc-cta,
    .tcc-areas,
    .tcc-couple {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .tcc-intro-grid,
    .tcc-other-grid,
    .tcc-couple-grid,
    .tcc-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tcc-card,
    .tcc-highlight,
    .tcc-note,
    .tcc-couple-quote {
        padding: 27px;
    }
}

/* ================= PORTADA ================= */

.home-page {
    background: #fbfcfc;
    color: #2f3b3d;
}

.home-page .hero {
    margin-top: 0;
    padding: 80px 20px 92px;
    background: linear-gradient(135deg, #007b99 0%, #00a0a8 100%);
    border-bottom: 0;
}

.home-page .hero h1 {
    max-width: 800px;
    margin: 0 auto 14px;
    font-size: clamp(2.25rem, 5vw, 3.7rem);
    line-height: 1.1;
    text-shadow: none;
}

.home-page .hero h2 {
    margin-top: 0;
    color: #e7ffff;
    background: rgba(255, 255, 255, 0.14);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.home-page .cta-buttons {
    max-width: 850px;
    margin: 34px auto 0;
    gap: 14px;
}

.home-page .WhatsApp-float,
.home-page .btn-maps,
.home-page .btn-outline,
.home-page .btn-doctoralia,
.home-page .btn-dudas,
.home-page .btn-tcc {
    min-height: 48px;
    padding: 12px 22px;
    color: #006f89;
    background: #fff;
    border-color: #fff;
    box-shadow: none;
}

.home-page .WhatsApp-float:hover,
.home-page .btn-maps:hover,
.home-page .btn-outline:hover,
.home-page .btn-doctoralia:hover,
.home-page .btn-dudas:hover,
.home-page .btn-tcc:hover {
    color: #005d73;
    background: #e9ffff;
    border-color: #e9ffff;
    transform: translateY(-2px);
}

.home-page .content-grid {
    max-width: 1080px;
    margin-top: 0;
    padding: 78px 50px 82px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.home-page .content-grid section {
    margin-bottom: 82px;
}

.home-page .content-grid section:last-child {
    margin-bottom: 0;
}

.home-page .text-content h3 {
    margin-bottom: 18px;
    color: #0080a0;
    border-bottom-color: #0080a0;
    font-size: 1.65rem;
}

.home-page .text-content p + p {
    margin-top: 15px;
}

.home-page .profile-pic {
    border-radius: 18px;
    box-shadow: 12px 12px 0 #e2f0f0;
}

.home-page .office-pic {
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(18, 104, 112, 0.12);
}

.home-page .footer {
    margin-top: 0;
    padding: 52px 20px;
    color: #cce6e6;
    background: #24494f;
}

.home-page .contact-item:hover {
    color: #fff;
}

.home-page .contact-item i {
    color: #8bd6d4;
}

.home-page .social-icon {
    color: #d8f0ef;
}

.home-page .social-icon:hover {
    color: #fff;
}

.home-page a:focus-visible {
    outline: 3px solid #f4cb75;
    outline-offset: 4px;
}

@media (max-width: 767px) {
    .home-page .hero {
        padding: 62px 20px 68px;
    }

    .home-page .content-grid {
        padding: 58px 20px;
    }

    .home-page .content-grid section {
        margin-bottom: 58px;
    }
}

/* ================= PÁGINA DE DUDAS ================= */

.dudas-page {
    background: #fbfcfc;
    color: #2f3b3d;
}

.dudas-page .container {
    max-width: 1080px;
}

.dudas-hero {
    padding: 25px 0 88px;
    color: #fff;
    background: linear-gradient(135deg, #007b99 0%, #00a0a8 100%);
    text-align: center;
}

.dudas-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.95rem;
    opacity: 0.94;
    float: left;
}

.dudas-back-link:hover {
    transform: translateX(-3px);
    opacity: 1;
}

.dudas-eyebrow,
.dudas-section-heading > p {
    color: #0080a0;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.dudas-hero .dudas-eyebrow {
    margin-top: 64px;
    color: #d9f8f6;
}

.dudas-hero h1 {
    max-width: 760px;
    margin: 12px auto 16px;
    font-size: clamp(2.2rem, 5.4vw, 4rem);
    line-height: 1.1;
    text-shadow: none;
}

.dudas-hero > .container > p:last-child {
    max-width: 620px;
    margin: 0 auto;
    color: #ecffff;
    font-size: 1.12rem;
}

.dudas-main {
    margin-top: 0;
    padding-top: 78px;
    padding-bottom: 82px;
}

.dudas-main section {
    margin-bottom: 0;
}

.dudas-section-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.dudas-section-heading h2,
.dudas-contact-copy h2 {
    margin-top: 7px;
    color: #263b3f;
    font-size: clamp(1.8rem, 3.5vw, 2.45rem);
    line-height: 1.2;
}

.dudas-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.dudas-faq-grid details {
    height: fit-content;
    margin: 0;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid #d5e5e5;
    border-radius: 14px;
    cursor: default;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.dudas-faq-grid details:hover {
    background: #fff;
    border-color: #83c8c7;
    box-shadow: 0 8px 20px rgba(18, 104, 112, 0.08);
}

.dudas-faq-grid summary {
    padding-right: 34px;
    color: #244a50;
    cursor: pointer;
    font-size: 1.04rem;
    font-weight: 700;
    line-height: 1.4;
}

.dudas-faq-grid summary::after {
    right: 1px;
    color: #0080a0;
    content: '+';
}

.dudas-faq-grid details[open] summary::after {
    content: '−';
}

.dudas-faq-grid details p {
    margin-top: 14px;
    padding-top: 14px;
    color: #526367;
    border-top: 1px solid #e3eeee;
}

.dudas-faq-grid details p + p {
    margin-top: 10px;
    padding-top: 0;
    border-top: 0;
}

.dudas-faq-grid details p a {
    color: #007d98;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.dudas-contact-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
    gap: 48px;
    margin-top: 82px !important;
    padding: 48px;
    color: #e9fafa;
    background: #29636b;
    border-radius: 18px;
}

.dudas-contact-copy {
    align-self: center;
}

.dudas-contact-copy > i {
    display: inline-grid;
    width: 47px;
    height: 47px;
    place-items: center;
    margin-bottom: 20px;
    color: #17626f;
    background: #d8f0ef;
    border-radius: 50%;
    font-size: 1.2rem;
}

.dudas-contact-copy .dudas-eyebrow {
    color: #bde8e6;
}

.dudas-contact-copy h2 {
    color: #fff;
}

.dudas-contact-copy > p:last-of-type {
    margin-top: 14px;
}

.dudas-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.dudas-whatsapp-link:hover {
    color: #d9f8f6;
}

.dudas-formulario {
    padding: 30px;
    background: #fff;
    border-radius: 14px;
}

.dudas-form-field {
    margin-bottom: 17px;
}

.dudas-form-field label {
    display: block;
    margin-bottom: 6px;
    color: #365258;
    font-size: 0.93rem;
    font-weight: 700;
}

.dudas-form-field input,
.dudas-form-field textarea {
    width: 100%;
    padding: 12px 14px;
    color: #2f3b3d;
    background: #fff;
    border: 1px solid #cbdede;
    border-radius: 8px;
    font: inherit;
    line-height: 1.4;
}

.dudas-form-field textarea {
    min-height: 125px;
    resize: vertical;
}

.dudas-form-field input::placeholder,
.dudas-form-field textarea::placeholder {
    color: #7d9093;
}

.dudas-form-field input:focus,
.dudas-form-field textarea:focus {
    outline: 3px solid rgba(55, 171, 176, 0.22);
    border-color: #0080a0;
}

.dudas-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 48px;
    padding: 12px 20px;
    color: #fff;
    background: #0080a0;
    border: 0;
    border-radius: 99px;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    transition: background 0.25s ease, transform 0.25s ease;
}

.dudas-submit:hover {
    background: #006f89;
    transform: translateY(-2px);
}

.dudas-footer {
    padding: 32px 0;
    color: #cce6e6;
    background: #24494f;
    text-align: center;
    font-size: 0.93rem;
}

.dudas-footer address {
    margin: 7px 0;
    font-style: normal;
}

.dudas-footer a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.dudas-page a:focus-visible,
.dudas-page summary:focus-visible,
.dudas-page button:focus-visible {
    outline: 3px solid #f4cb75;
    outline-offset: 4px;
}

@media (max-width: 767px) {
    .dudas-hero {
        padding-bottom: 65px;
    }

    .dudas-back-link {
        float: none;
    }

    .dudas-hero .dudas-eyebrow {
        margin-top: 45px;
    }

    .dudas-main {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .dudas-faq-grid,
    .dudas-contact-section {
        grid-template-columns: 1fr;
    }

    .dudas-contact-section {
        gap: 32px;
        margin-top: 58px !important;
        padding: 30px 22px;
    }

    .dudas-formulario {
        padding: 24px;
    }
}
