/* =========================================== */
/* CONTACTANOS - CLASES ÚNICAS cont-*          */
/* SIN INTERFERIR CON EL NAVBAR EXISTENTE      */
/* =========================================== */

:root {
    --cont-primary: #02cbc4;
    --cont-primary-dark: #019b94;
    --cont-primary-light: #e0f7f6;
    --cont-dark: #2d3e50;
    --cont-darker: #1a2a3a;
    --cont-gray-100: #f8fafc;
    --cont-gray-200: #e9ecef;
    --cont-gray-300: #dee2e6;
    --cont-gray-400: #ced4da;
    --cont-gray-500: #adb5bd;
    --cont-shadow: 0 10px 30px rgba(0,0,0,0.1);
    --cont-shadow-lg: 0 20px 40px rgba(2,203,196,0.2);
    --cont-shadow-xl: 0 30px 60px rgba(2,203,196,0.3);
    --cont-gradient: linear-gradient(135deg, var(--cont-primary) 0%, #00b8a9 100%);
}

/* =========================================== */
/* HERO SECTION */
/* =========================================== */

.cont-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--cont-darker);
    overflow: hidden;
    padding: 120px 0 80px;
    margin-top: 0;
}

.cont-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cont-hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    animation: cont-zoomEffect 20s infinite alternate;
}

@keyframes cont-zoomEffect {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.cont-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cont-darker) 0%, rgba(26,42,58,0.8) 100%);
}

.cont-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 900px;
}

.cont-hero-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.cont-badge-line {
    width: 60px;
    height: 2px;
    background: var(--cont-primary);
}

.cont-badge-text {
    font-size: 1rem;
    letter-spacing: 3px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.cont-hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
}

.cont-highlight {
    color: var(--cont-primary);
    position: relative;
    display: inline-block;
}

.cont-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(2,203,196,0.3);
    z-index: -1;
}

.cont-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.cont-hero-quick {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.cont-quick-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
}

.cont-quick-item:hover {
    background: var(--cont-primary);
    transform: translateY(-5px);
    box-shadow: var(--cont-shadow-lg);
    border-color: transparent;
    color: white;
}

.cont-quick-item i {
    font-size: 1.3rem;
}

.cont-hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: cont-scrollBounce 2s infinite;
    cursor: pointer;
}

@keyframes cont-scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* =========================================== */
/* SECCIÓN PRINCIPAL */
/* =========================================== */

.cont-principal {
    padding: 105px 0;
    background:
        radial-gradient(circle at 8% 12%, rgba(2, 203, 196, 0.12) 0%, rgba(2, 203, 196, 0) 36%),
        radial-gradient(circle at 92% 84%, rgba(2, 203, 196, 0.1) 0%, rgba(2, 203, 196, 0) 34%),
        linear-gradient(135deg, #f8fbfd 0%, #eef5f8 100%);
    position: relative;
    overflow: hidden;
}

.cont-principal .container {
    max-width: 1440px;
    width: 96%;
}

.cont-principal::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(2, 203, 196, 0.06) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(2, 203, 196, 0.06) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.16;
    pointer-events: none;
}

.cont-principal-head {
    max-width: 860px;
    margin: 0 auto 34px;
    position: relative;
    z-index: 2;
}

.cont-principal-lead {
    color: #4f6378;
    font-size: 1.08rem;
    line-height: 1.75;
    margin: 0 auto;
    max-width: 760px;
}

.cont-principal-layout {
    position: relative;
    z-index: 2;
    row-gap: 24px;
}

.cont-badge {
    display: inline-block;
    background: var(--cont-primary-light);
    color: var(--cont-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.cont-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--cont-dark);
}

.cont-principal-head .cont-title {
    font-size: 3rem;
    margin-bottom: 12px;
}

.cont-info .cont-title,
.cont-form .cont-title {
    font-size: 2.05rem;
    margin-bottom: 12px;
}

.cont-info-header {
    margin-bottom: 14px;
}

.cont-info {
    background: rgba(255, 255, 255, 0.9);
    padding: 34px;
    border-radius: 30px;
    box-shadow: var(--cont-shadow-lg);
    border: 1px solid rgba(2, 203, 196, 0.2);
    height: 100%;
}

.cont-info-media {
    margin: 0 0 24px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--cont-shadow);
}

.cont-info-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.cont-info-media figcaption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    border-radius: 12px;
    background: rgba(26, 42, 58, 0.82);
    color: #ffffff;
    padding: 10px 12px;
    display: grid;
    gap: 3px;
}

.cont-info-media figcaption strong {
    font-size: 0.95rem;
}

.cont-info-media figcaption span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.cont-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 24px;
}

.cont-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 26px;
}

.cont-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 0;
    padding: 25px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--cont-shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 290px;
    height: 100%;
}

.cont-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--cont-gradient);
}

.cont-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--cont-shadow-lg);
}

.cont-item-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--cont-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.7rem;
    box-shadow: var(--cont-shadow-lg);
    align-self: center;
}

.cont-item-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cont-item-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--cont-dark);
    text-align: center;
    width: 100%;
}

.cont-item-content p {
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.6;
    width: 100%;
}

.cont-item-content a {
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cont-item-content a:hover {
    color: var(--cont-primary);
}

.cont-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cont-primary) !important;
    font-weight: 600;
    margin-top: auto;
    padding: 8px 15px;
    background: var(--cont-primary-light);
    border-radius: 25px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cont-link:hover {
    background: var(--cont-primary);
    color: white !important;
    transform: translateX(5px);
}

/* Redes Sociales */
.cont-social {
    text-align: center;
}

.cont-social h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--cont-dark);
}

.cont-social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cont-social-link {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cont-primary);
    font-size: 1.5rem;
    box-shadow: var(--cont-shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.cont-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cont-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.cont-social-link i {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.cont-social-link:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: var(--cont-shadow-xl);
}

.cont-social-link:hover::before {
    opacity: 1;
}

.cont-social-link:hover i {
    color: white;
}

/* Formulario */
.cont-form {
    background: rgba(255, 255, 255, 0.96);
    padding: 34px;
    border-radius: 30px;
    box-shadow: var(--cont-shadow-xl);
    border: 1px solid rgba(2, 203, 196, 0.2);
}

.cont-form-top {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 18px;
}

.cont-form-top span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: rgba(2, 203, 196, 0.12);
    color: var(--cont-primary-dark);
    border: 1px solid rgba(2, 203, 196, 0.3);
    padding: 7px 12px;
    font-size: 0.82rem;
    font-weight: 600;
}

.cont-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.cont-form-description {
    color: #4a5568;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.cont-form-moderno {
    max-width: 100%;
}

.cont-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.cont-group {
    flex: 1;
}

.cont-full {
    flex: 0 0 100%;
}

.cont-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--cont-dark);
    font-size: 0.95rem;
}

.cont-input-wrapper,
.cont-textarea-wrapper,
.cont-select-wrapper {
    position: relative;
}

.cont-input-wrapper i,
.cont-textarea-wrapper i,
.cont-select-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cont-gray-500);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.cont-textarea-wrapper i {
    top: 25px;
    transform: none;
}

.cont-input-wrapper input,
.cont-textarea-wrapper textarea,
.cont-select-wrapper select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid var(--cont-gray-200);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--cont-gray-100);
    font-family: inherit;
}

.cont-select-wrapper select {
    appearance: none;
    padding-right: 45px;
    cursor: pointer;
}

.cont-select-wrapper i.bi-chevron-down {
    left: auto;
    right: 15px;
    pointer-events: none;
}

.cont-input-wrapper input:focus,
.cont-textarea-wrapper textarea:focus,
.cont-select-wrapper select:focus {
    outline: none;
    border-color: var(--cont-primary);
    background: white;
    box-shadow: 0 0 0 5px var(--cont-primary-light);
}

.cont-input-wrapper input:focus + i,
.cont-textarea-wrapper textarea:focus + i,
.cont-select-wrapper select:focus + i {
    color: var(--cont-primary);
}

.cont-file-wrapper {
    position: relative;
}

.cont-file-wrapper input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 2px dashed var(--cont-primary);
    border-radius: 15px;
    background: var(--cont-primary-light);
    cursor: pointer;
    font-size: 0.95rem;
}

.cont-file-wrapper input[type="file"]::file-selector-button {
    background: var(--cont-primary);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 10px;
    margin-right: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cont-file-wrapper input[type="file"]::file-selector-button:hover {
    background: var(--cont-primary-dark);
}

.cont-file-info {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--cont-gray-500);
}

.cont-file-info i {
    color: var(--cont-primary);
}

.cont-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cont-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--cont-primary);
}

.cont-checkbox label {
    margin: 0;
    font-weight: normal;
    color: #4a5568;
}

.cont-checkbox label a {
    color: var(--cont-primary);
    text-decoration: none;
    font-weight: 600;
}

.cont-checkbox label a:hover {
    text-decoration: underline;
}

.cont-btn {
    width: 100%;
    padding: 18px;
    background: var(--cont-gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cont-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cont-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--cont-shadow-xl);
}

.cont-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cont-btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: cont-spin 1s linear infinite;
}

@keyframes cont-spin {
    to { transform: rotate(360deg); }
}

.cont-btn.loading span,
.cont-btn.loading i {
    opacity: 0;
}

.cont-btn.loading .cont-btn-loader {
    display: block;
    position: absolute;
}

.cont-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    display: none;
}

.cont-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.cont-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* =========================================== */
/* SUCURSALES */
/* =========================================== */

.cont-sucursales {
    padding: 80px 0;
    background: var(--cont-gray-100);
}

.cont-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.cont-description {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 20px auto 0;
}

.cont-sucursales-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cont-sucursal-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--cont-shadow);
    transition: all 0.4s ease;
}

.cont-sucursal-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--cont-shadow-xl);
}

.cont-sucursal-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.cont-sucursal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.cont-sucursal-card:hover .cont-sucursal-image img {
    transform: scale(1.2);
}

.cont-sucursal-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--cont-primary);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: var(--cont-shadow);
}

.cont-sucursal-info {
    padding: 30px;
}

.cont-sucursal-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--cont-dark);
}

.cont-sucursal-info p {
    margin-bottom: 10px;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cont-sucursal-info p i {
    color: var(--cont-primary);
    width: 20px;
}

.cont-sucursal-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cont-primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    padding: 10px 20px;
    background: var(--cont-primary-light);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cont-sucursal-link:hover {
    background: var(--cont-primary);
    color: white;
    transform: translateX(5px);
}

/* =========================================== */
/* MAPA */
/* =========================================== */

.cont-mapa {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.cont-mapa-container {
    width: 100%;
    height: 100%;
}

.cont-mapa-container iframe {
    filter: grayscale(0.3) contrast(1.2);
    transition: filter 0.4s ease;
}

.cont-mapa-container iframe:hover {
    filter: grayscale(0) contrast(1);
}

/* =========================================== */
/* FAQ */
/* =========================================== */

.cont-faq {
    padding: 80px 0;
    background: white;
}

.cont-faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.cont-faq-item {
    margin-bottom: 15px;
    border: 2px solid var(--cont-gray-200);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.cont-faq-item:hover {
    border-color: var(--cont-primary);
    box-shadow: var(--cont-shadow);
}

.cont-faq-question {
    padding: 20px 25px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cont-faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--cont-dark);
    font-weight: 600;
}

.cont-faq-question i {
    font-size: 1.3rem;
    color: var(--cont-primary);
    transition: transform 0.4s ease;
}

.cont-faq-item.active .cont-faq-question i {
    transform: rotate(180deg);
}

.cont-faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: var(--cont-gray-100);
}

.cont-faq-item.active .cont-faq-answer {
    padding: 20px 25px;
    max-height: 200px;
}

.cont-faq-answer p {
    margin: 0;
    color: #4a5568;
    line-height: 1.8;
}

/* =========================================== */
/* CTA */
/* =========================================== */

.cont-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cont-darker) 0%, var(--cont-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cont-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(2,203,196,0.1) 0%, transparent 70%);
    animation: cont-rotate 30s linear infinite;
}

@keyframes cont-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cont-cta-content {
    position: relative;
    z-index: 2;
}

.cont-cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cont-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cont-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cont-btn-emergencia,
.cont-btn-whatsapp {
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.cont-btn-emergencia {
    background: var(--cont-primary);
    color: white;
}

.cont-btn-whatsapp {
    background: #25D366;
    color: white;
}

.cont-btn-emergencia:hover,
.cont-btn-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: var(--cont-shadow-xl);
}

.cont-btn-emergencia:hover {
    background: transparent;
    color: var(--cont-primary);
    border-color: var(--cont-primary);
}

.cont-btn-whatsapp:hover {
    background: transparent;
    color: #25D366;
    border-color: #25D366;
}

/* =========================================== */
/* RESPONSIVE */
/* =========================================== */

@media (min-width: 992px) {
    .cont-info {
        position: sticky;
        top: 110px;
    }
}

@media (max-width: 1200px) {
    .cont-hero-title {
        font-size: 3rem;
    }

    .cont-principal .cont-title {
        font-size: 2.2rem;
    }
    
    .cont-sucursales-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .cont-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .cont-hero-title {
        font-size: 2.5rem;
    }

    .cont-principal .cont-title {
        font-size: 2rem;
    }

    .cont-principal-lead {
        font-size: 1rem;
    }
    
    .cont-info,
    .cont-form {
        padding: 30px;
    }

    .cont-info {
        position: static;
    }

    .cont-info-media img {
        height: 200px;
    }

    .cont-details {
        grid-template-columns: 1fr;
    }

    .cont-form-top {
        justify-content: flex-start;
    }
    
    .cont-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cont-btn-emergencia,
    .cont-btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cont-hero-title {
        font-size: 2rem;
    }

    .cont-principal {
        padding: 88px 0;
    }

    .cont-principal .cont-title {
        font-size: 1.7rem;
        margin-bottom: 16px;
    }

    .cont-principal-head {
        margin-bottom: 24px;
    }

    .cont-principal-lead {
        font-size: 0.95rem;
    }
    
    .cont-hero-quick {
        flex-direction: column;
        gap: 15px;
    }
    
    .cont-quick-item {
        width: 100%;
        justify-content: center;
    }
    
    .cont-sucursales-grid {
        grid-template-columns: 1fr;
    }
    
    .cont-item {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .cont-item-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .cont-info,
    .cont-form {
        border-radius: 24px;
        padding: 22px 18px;
    }

    .cont-info-media img {
        height: 170px;
    }

    .cont-form-top {
        justify-content: center;
    }
    
    .cont-cta-content h2 {
        font-size: 2rem;
    }
    
    .cont-cta-content p {
        font-size: 1.1rem;
    }
}

/* =========================================== */
/* ANIMACIONES */
/* =========================================== */

@keyframes cont-fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cont-fade-in {
    animation: cont-fadeIn 1s ease-out;
}
