@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

/* ============================
   RESET Y ESTILOS BASE
   ============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1a;
    color: #f0f0f0;
    min-height: 100vh;
    text-align: center;
    position: relative;
    padding-top: 92px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1581152399908-4d7392f873e6?q=80&w=1974&auto=format&fit=crop') no-repeat center center/cover;
    opacity: 0.2;
    z-index: -1;
}

/* ============================
   HEADER Y NAVEGACIÓN
   ============================ */
.main-header {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #ffc107;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

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

.nav-menu li a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 700;
    font-size: 1em;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-menu li a:hover {
    background-color: #ffc107;
    color: #1a1a1a;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #ffc107;
    font-size: 2em;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background-color: rgba(0, 0, 0, 0.95);
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu ul li a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: 700;
}

/* ============================
   CONTENEDOR PRINCIPAL CONTACTO
   ============================ */
.contacto-container-fix {
    max-width: 1300px !important;
    margin: 40px auto !important;
    padding: 0 20px !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* ============================
   HERO CONTACTO
   ============================ */
.contacto-hero {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 193, 7, 0.3);
}

.contacto-title {
    font-size: 2.5em;
    color: #ffc107;
    margin-bottom: 25px;
    line-height: 1.2;
}

.contacto-intro {
    font-size: 1.25em;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    color: #ddd;
}

.contacto-intro strong {
    color: #ffc107;
}

/* ============================
   CANALES DE CONTACTO
   ============================ */
.canales-section {
    margin: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2.2em;
    color: #ffc107;
    margin-bottom: 30px;
    text-align: center;
}

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

.canal-card {
    background: rgba(42, 42, 42, 0.7);
    padding: 35px 30px;
    border-radius: 12px;
    border-top: 5px solid #ffc107;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.canal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 193, 7, 0.1);
}

.canal-icon {
    font-size: 3.5em;
    color: #ffc107;
    margin-bottom: 25px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
}

.canal-title {
    color: #ffc107;
    font-size: 1.6em;
    margin-bottom: 20px;
    text-align: center;
}

.canal-text {
    font-size: 1.15em;
    line-height: 1.6;
    color: #f0f0f0;
    margin-bottom: 25px;
    text-align: center;
}

.canal-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    width: 100%;
    text-align: left;
}

.canal-info p {
    font-size: 0.95em;
    color: #ccc;
    margin-bottom: 8px;
}

.canal-info strong {
    color: #ffc107;
}

/* ============================
   BOTONES DE CONTACTO
   ============================ */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    cursor: pointer;
    margin: 5px;
}

.btn-telefono {
    background: #ffc107;
    color: #1a1a1a;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    min-width: 250px;
}

.btn-telefono:hover {
    background: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    min-width: 250px;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-visita {
    background: transparent;
    color: #ffc107;
    border: 2px solid #ffc107;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    min-width: 250px;
}

.btn-visita:hover {
    background: #ffc107;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

/* ============================
   CONSULTA SECCIÓN
   ============================ */
.consulta-section {
    margin: 80px 0;
}

.consulta-section.destacada {
    background: rgba(255, 193, 7, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.consulta-content {
    max-width: 1000px;
    margin: 0 auto;
}

.consulta-title {
    font-size: 2.2em;
    color: #ffc107;
    margin-bottom: 30px;
    text-align: center;
}

.consulta-text {
    font-size: 1.2em;
    line-height: 1.7;
    color: #f0f0f0;
    margin-bottom: 50px;
    text-align: center;
}

.consulta-pasos {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.paso {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
}

.paso-numero {
    background: #ffc107;
    color: #1a1a1a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    font-weight: bold;
    flex-shrink: 0;
}

.paso-content h3 {
    color: #ffc107;
    font-size: 1.3em;
    margin-bottom: 8px;
}

.paso-content p {
    color: #ddd;
    font-size: 1.1em;
    line-height: 1.6;
    margin: 0;
}

/* ============================
   UBICACIÓN TEXTO SECCIÓN
   ============================ */
.ubicacion-texto-section {
    margin: 60px 0;
    padding: 40px 30px;
    background: rgba(255, 193, 7, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

/* ============================
   UBICACIÓN Y MAPA
   ============================ */
.ubicacion-contacto-section {
    margin: 80px 0;
}

.ubicacion-text {
    font-size: 1.2em;
    color: #ddd;
    text-align: center;
    margin-bottom: 50px;
}

.ubicacion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.mapa-container, .desplazamientos-container {
    background: rgba(42, 42, 42, 0.7);
    padding: 30px;
    border-radius: 12px;
    border-top: 5px solid #ffc107;
    margin-bottom: 30px;
}

.mapa-container h3, .desplazamientos-container h3 {
    color: #ffc107;
    font-size: 1.6em;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Botón cargar mapa */
.btn-cargar-mapa {
    background: rgba(255, 193, 7, 0.9);
    color: #1a1a1a;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    font-weight: bold;
    font-size: 1.1em;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 20px auto;
    min-width: 200px;
    justify-content: center;
}

.btn-cargar-mapa:hover {
    background: #ffc107;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
}

.mapa-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 193, 7, 0.4);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.mapa-placeholder:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 193, 7, 0.6);
}

.placeholder-content {
    max-width: 500px;
    margin: 0 auto;
}

.placeholder-icon {
    font-size: 3.5em;
    color: rgba(255, 193, 7, 0.7);
    margin-bottom: 20px;
}

.placeholder-content h4 {
    color: #ffc107;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.placeholder-content p {
    color: #ddd;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.placeholder-nota {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    padding: 15px;
    border-radius: 0 8px 8px 0;
    margin: 25px 0;
    text-align: left;
}

.placeholder-nota i {
    color: #ffc107;
    margin-right: 10px;
}

.placeholder-legal {
    font-size: 0.9em;
    color: #aaa;
    margin-top: 25px;
    line-height: 1.5;
}

.placeholder-legal a {
    color: #ffc107;
    text-decoration: underline;
}

.mapa-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.mapa-encabezado {
    background: rgba(255, 193, 7, 0.1);
    padding: 20px;
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.mapa-encabezado h4 {
    color: #ffc107;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.mapa-nota {
    color: #aaa;
    font-size: 0.9em;
    line-height: 1.5;
}

.mapa-nota a {
    color: #ffc107;
    text-decoration: underline;
}

.mapa-wrapper iframe {
    display: block;
    border: none;
}

.direccion-detallada {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    margin-top: 20px;
}

.direccion-detallada p {
    color: #ddd;
    font-size: 1.05em;
    margin-bottom: 10px;
    line-height: 1.5;
}

.direccion-detallada strong {
    color: #ffc107;
}

/* Desplazamientos */
.desplazamientos-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.desplazamiento-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid rgba(255, 193, 7, 0.5);
}

.desplazamiento-icon {
    font-size: 2em;
    color: #ffc107;
    min-width: 40px;
    text-align: center;
}

.desplazamiento-text h4 {
    color: #ffc107;
    font-size: 1.2em;
    margin-bottom: 8px;
}

.desplazamiento-text p {
    color: #ddd;
    font-size: 1em;
    line-height: 1.6;
    margin: 0;
}

.cta-desplazamiento {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 193, 7, 0.2);
}

.btn-desplazamiento {
    background: transparent;
    color: #ffc107;
    border: 2px solid #ffc107;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    min-width: 250px;
    justify-content: center;
    margin: 0 auto 15px;
}

.btn-desplazamiento:hover {
    background: #ffc107;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.nota-desplazamiento {
    color: #aaa;
    font-size: 0.9em;
}

.nota-desplazamiento i {
    color: #ffc107;
    margin-right: 5px;
}

.cta-ubicacion {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.btn-mapa-contacto {
    background: transparent;
    color: #ffc107;
    border: 2px solid #ffc107;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    min-width: 220px;
    justify-content: center;
}

.btn-mapa-contacto:hover {
    background: #ffc107;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-llamar-contacto {
    background: #ffc107;
    color: #1a1a1a;
    border: 2px solid #ffc107;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    min-width: 220px;
    justify-content: center;
}

.btn-llamar-contacto:hover {
    background: #e0a800;
    border-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

/* ============================
   SIN FORMULARIO
   ============================ */
.sin-formulario-section {
    margin: 80px 0;
}

.sin-formulario-content {
    max-width: 1000px;
    margin: 0 auto;
}

.sin-formulario-title {
    font-size: 2.2em;
    color: #ffc107;
    margin-bottom: 30px;
    text-align: center;
}

.sin-formulario-text {
    font-size: 1.2em;
    line-height: 1.7;
    color: #f0f0f0;
    margin-bottom: 50px;
    text-align: center;
}

.testimonio-contacto {
    background: rgba(255, 193, 7, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    max-width: 800px;
    margin: 60px auto 40px;
    position: relative;
}

.testimonio-text {
    font-size: 1.3em;
    line-height: 1.8;
    color: #f0f0f0;
    font-style: italic;
    margin-bottom: 25px;
    text-align: left;
}

.testimonio-text i.fa-quote-left {
    color: #ffc107;
    font-size: 1.5em;
    margin-right: 10px;
    position: relative;
    top: -5px;
}

.testimonio-text i.fa-quote-right {
    color: #ffc107;
    font-size: 1.5em;
    margin-left: 10px;
    position: relative;
    top: 5px;
}

.testimonio-autor {
    text-align: right;
    color: #aaa;
    font-size: 1em;
    font-style: italic;
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    padding-top: 15px;
}

.ventajas-conversacion {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.ventaja {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(42, 42, 42, 0.6);
    padding: 25px 20px;
    border-radius: 10px;
    border-bottom: 3px solid #ffc107;
}

.ventaja-icon {
    font-size: 2.5em;
    color: #ffc107;
    min-width: 50px;
    text-align: center;
}

.ventaja-content h3 {
    color: #ffc107;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.ventaja-content p {
    color: #ddd;
    font-size: 1.05em;
    line-height: 1.6;
    margin: 0;
}

/* ============================
   CTA FINAL
   ============================ */
.cta-section {
    text-align: center;
    margin: 80px 0 40px;
    padding: 50px 30px;
    background: rgba(255, 193, 7, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.cta-title {
    font-size: 2.2em;
    color: #ffc107;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 1.2em;
    color: #ddd;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.btn-llamada {
    background: #ffc107;
    color: #1a1a1a;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 2px solid #ffc107;
    min-width: 280px;
    justify-content: center;
}

.btn-llamada:hover {
    background: #e0a800;
    border-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.2);
}

.cta-note {
    color: #aaa;
    font-size: 0.95em;
    line-height: 1.5;
}

.cta-note i {
    color: #ffc107;
    margin-right: 5px;
}

.cta-note small {
    font-size: 1em;
}

/* ============================
   FAQ CONTACTO - ACORDEÓN
   ============================ */
.faq-contacto-section {
    margin: 80px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-intro {
    font-size: 1.15em;
    color: #ddd;
    text-align: center;
    margin-bottom: 40px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(42, 42, 42, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 193, 7, 0.4);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: #f0f0f0;
    font-size: 1.1em;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 193, 7, 0.05);
    color: #ffc107;
}

.faq-question-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.faq-question-text i {
    color: #ffc107;
    font-size: 1.2em;
    min-width: 20px;
}

.faq-icon {
    color: #ffc107;
    transition: transform 0.3s ease;
    font-size: 0.9em;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-question[aria-expanded="true"] {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 25px;
    background: rgba(255, 193, 7, 0.02);
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 25px 25px;
}

.faq-answer p {
    color: #ddd;
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 12px;
}

.faq-answer p strong {
    color: #ffc107;
    font-weight: 600;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.faq-list li {
    color: #ddd;
    font-size: 1em;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.faq-list li i {
    color: #25D366;
    position: absolute;
    left: 0;
    top: 2px;
}

.faq-note {
    background: rgba(255, 193, 7, 0.08);
    border-left: 3px solid #ffc107;
    padding: 12px 15px;
    border-radius: 0 8px 8px 0;
    margin-top: 15px;
    font-size: 0.95em;
}

.faq-note i {
    color: #ffc107;
    margin-right: 8px;
}

.faq-note small {
    font-size: 1em;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-contacto-section {
        padding: 0 15px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 1em;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-answer.active {
        padding: 0 20px 20px;
    }

    .faq-list li {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .faq-question-text i {
        font-size: 1em;
    }

    .faq-question {
        gap: 10px;
    }
}

/* ============================
   FOOTER
   ============================ */
.main-footer {
    background-color: rgba(0, 0, 0, 0.85);
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    padding: 30px 20px;
    margin-top: 60px;
    text-align: center;
}

.footer-content a {
    color: #ffc107;
    text-decoration: none;
    font-weight: bold;
    margin: 0 15px;
}

.footer-content a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-content p {
    margin: 10px 0;
    color: #aaa;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .hamburger {
        display: block;
    }

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

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

    .btn-telefono, .btn-whatsapp, .btn-visita,
    .btn-desplazamiento, .btn-mapa-contacto, .btn-llamar-contacto,
    .btn-llamada {
        min-width: 100%;
        width: 100%;
    }

    .cta-ubicacion, .cta-buttons {
        flex-direction: column;
    }

    .ventajas-conversacion {
        grid-template-columns: 1fr;
    }

    .consulta-pasos, .desplazamientos-content {
        gap: 20px;
    }

    .paso, .desplazamiento-item, .ventaja {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .desplazamiento-icon, .ventaja-icon {
        margin-bottom: 10px;
    }

    .testimonio-text {
        font-size: 1.1em;
    }

    .cta-title {
        font-size: 1.8em;
    }

    .contacto-title, .section-title, .consulta-title, 
    .sin-formulario-title, .cta-title {
        font-size: 1.7em;
    }

    .canal-card, .mapa-container, .desplazamientos-container,
    .testimonio-contacto, .cta-section {
        padding: 25px 20px;
    }

    .consulta-content, .sin-formulario-content {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .contacto-container-fix {
        padding: 0 10px !important;
        margin: 20px auto !important;
    }

    .contacto-hero {
        padding: 20px 15px 30px !important;
    }

    .contacto-title {
        font-size: 1.4em !important;
    }

    .contacto-intro {
        font-size: 1em !important;
    }

    .btn {
        width: 100% !important;
        max-width: 300px !important;
        margin: 15px auto !important;
        display: block !important;
    }
}
