/* ============================================================
   ESTILOS GLOBALES
   ============================================================ */
.top-nav {
    background-color: #FF0000;
    color: #fff;
    padding-top: 5px;
    padding-bottom: 5px;
}

.btn-brand {
    border-color: #000000;
    background-color: #000000;
    color: #fff;
}

.btn-brand:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

.navbar .navbar-nav .nav-link:hover {
    color: #FF0000;
}

.navbar .navbar-nav .nav-link.active {
    color: #FF0000;
}

.social-icons a:hover {
    background-color: #fff;
    color: #FF0000;
}

/* ============================================================
   SLIDER
   ============================================================ */
.hero-badge {
    display: inline-block;
    background: #FF0000;
    color: #ffffff;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-description {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    letter-spacing: 0.5px;
}

.slide .display-3 {
    text-transform: uppercase;
    color: #fff;
    font-weight: 800;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .slide .display-3 {
        font-size: 32px !important;
    }
    .hero-description {
        font-size: 15px;
        padding: 0 20px;
    }
    .hero-badge {
        font-size: 11px;
        padding: 4px 16px;
        letter-spacing: 1px;
    }
}

@media (max-width: 576px) {
    .slide .display-3 {
        font-size: 24px !important;
    }
    .hero-description {
        font-size: 13px;
    }
}

/* ============================================================
   ICONOS CON CÍRCULO ROJO (Nosotros)
   ============================================================ */
.icon-circle {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background-color: #FF0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform: translateY(-30px);
}

.icon-circle i {
    font-size: 36px;
    color: #ffffff;
}

.icon-circle:hover {
    transform: translateY(-30px) scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 77, 41, 0.4);
}

/* ============================================================
   NUESTRA ESPECIALIDAD
   ============================================================ */
.expertise-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #f8f9fa;
}

.expertise-image-wrapper {
    position: relative;
}

.expertise-image {
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    width: 100%;
}

.expertise-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: black;
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.35);
}

.expertise-circle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background-color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.expertise-circle i {
    font-size: 36px;
    color: #ffffff;
}

.expertise-subtitle {
    color: #FF0000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.expertise-title {
    font-size: 36px;
    font-weight: 700;
    color: black;
    margin-top: 10px;
    margin-bottom: 10px;
}

.expertise-description {
    color: black;
    font-size: 16px;
    line-height: 1.7;
}

.expertise-card {
    background-color: #ffffff;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.expertise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}

.expertise-card-danger {
    border-left: 5px solid #dc3545;
}

.expertise-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: translateY(-4px);
}

.expertise-card-icon-primary {
    background-color: #FF0000;
}

.expertise-card-icon-primary i {
    font-size: 26px;
    color: #ffffff;
}

.expertise-card-icon-danger {
    background-color: #FF0000;
}

.expertise-card-icon-danger i {
    font-size: 26px;
    color: #ffffff;
}

.expertise-card-content {
    flex: 1;
}

.expertise-card-title {
    font-size: 17px;
    font-weight: 700;
    color: black;
    margin-bottom: 4px;
}

.expertise-card-title-danger {
    color: #FF0000;
}

.expertise-card-text {
    font-size: 15px;
    color: #516171;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .expertise-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .expertise-title {
        font-size: 28px;
    }
    .expertise-circle {
        width: 60px;
        height: 60px;
    }
    .expertise-circle i {
        font-size: 26px;
    }
    .expertise-card {
        padding: 16px 18px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .expertise-card-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }
    .expertise-card-icon i {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .expertise-title {
        font-size: 22px;
    }
    .expertise-badge {
        font-size: 11px;
        padding: 4px 12px;
        top: 12px;
        left: 12px;
    }
    .expertise-circle {
        width: 50px;
        height: 50px;
        bottom: 12px;
        right: 12px;
    }
    .expertise-circle i {
        font-size: 20px;
    }
}

/* ============================================================
   SECCIÓN: ESTADÍSTICAS + CTA (UNIFICADA)
   ============================================================ */
.milestone-cta-section {
    background: linear-gradient(rgba(15, 23, 43, 0.85), rgba(15, 23, 43, 0.85)), url('img/10a.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
}

.milestone-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.10) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.milestone-cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.milestone-cta-section h1 {
    color: #ffffff;
    font-weight: 800;
}

.milestone-cta-section .display-4 {
    font-size: 48px;
}

.milestone-cta-section .mb-0 {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.milestone-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FF0000, transparent);
    margin: 0 auto;
    border-radius: 10px;
}

.milestone-cta-section .cta-title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.milestone-cta-section .cta-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.milestone-cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.milestone-cta-section .btn-brand {
    background-color: #FF0000;
    border-color: #FF0000;
    color: #ffffff;
    padding: 14px 36px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.milestone-cta-section .btn-brand:hover {
    background-color: #cc0000;
    border-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.3);
}

.milestone-cta-section .btn-outline-light {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    padding: 14px 36px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.milestone-cta-section .btn-outline-light:hover {
    background: #FF0000;
    border-color: #FF0000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .milestone-cta-section {
        padding: 60px 0;
    }
    .milestone-cta-section .display-4 {
        font-size: 36px;
    }
    .milestone-cta-section .cta-title {
        font-size: 30px;
    }
    .milestone-cta-section .cta-description {
        font-size: 16px;
    }
    .milestone-cta-section .btn-brand,
    .milestone-cta-section .btn-outline-light {
        padding: 12px 28px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .milestone-cta-section {
        padding: 40px 0;
    }
    .milestone-cta-section .display-4 {
        font-size: 28px;
    }
    .milestone-cta-section .cta-title {
        font-size: 24px;
    }
    .milestone-cta-section .cta-description {
        font-size: 14px;
    }
    .milestone-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .milestone-cta-section .btn-brand,
    .milestone-cta-section .btn-outline-light {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }
    .milestone-cta-section .btn-outline-light {
        margin-left: 0 !important;
    }
    .milestone-divider {
        width: 60px;
    }
}

/* ============================================================
   SECCIÓN: VENTAJAS DEL TRATAMIENTO TÉRMICO
   ============================================================ */
.ventajas-section {
    padding: 80px 0;
    background: #ffffff;
}

.ventaja-card {
    padding: 32px 24px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}

.ventaja-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: #FF0000;
}

.ventaja-icon {
    width: 70px;
    height: 70px;
    background: #FF0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.ventaja-icon i {
    font-size: 30px;
    color: #ffffff;
}

.ventaja-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.ventaja-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================================
   SECCIÓN: TESTIMONIOS
   ============================================================ */
.testimonios-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonio-card {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.testimonio-stars {
    color: #FFD700;
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonio-text {
    font-size: 15px;
    color: #495057;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonio-author h6 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.testimonio-author span {
    font-size: 13px;
    color: #6c757d;
}

/* ============================================================
   PRODUCTOS - CARDS PROFESIONALES
   ============================================================ */
.productos-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #f8f9fa;
}

.productos-badge {
    background: #FF0000;
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 8px;
}

.productos-title {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
}

.productos-description {
    color: #516171;
    max-width: 600px;
    margin: 0 auto;
}

.productos-category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.productos-category-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #FF0000, transparent);
}

.productos-category-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
    margin: 0;
}

.productos-category-title i {
    color: #FF0000;
    margin-right: 10px;
}

.producto-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.producto-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 0, 0, 0.15);
}

.producto-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: #e9ecef;
}

.producto-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.producto-card:hover .producto-card-image img {
    transform: scale(1.04);
}

.producto-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #FF0000;
    color: #ffffff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.producto-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.producto-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.producto-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.producto-card-specs span {
    background: #f1f3f5;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 12px;
    color: #495057;
    font-weight: 500;
}

.producto-card-specs i {
    color: #FF0000;
    margin-right: 4px;
    font-size: 12px;
}

.producto-card-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 14px;
}

.producto-card-body .btn {
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    padding: 10px;
}

.producto-card-body .btn i {
    transition: all 0.3s ease;
}

.producto-card-body .btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .productos-title {
        font-size: 30px;
    }
    .productos-category-title {
        font-size: 22px;
    }
    .productos-category-header {
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .productos-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .productos-title {
        font-size: 24px;
    }
    .productos-category-title {
        font-size: 18px;
        white-space: normal;
    }
    .productos-category-header {
        flex-direction: column;
        gap: 8px;
    }
    .productos-category-line {
        width: 100%;
        height: 2px;
    }
    .producto-card-image {
        height: 160px;
    }
    .producto-card-body {
        padding: 16px;
    }
    .producto-card-title {
        font-size: 16px;
    }
}

/* ============================================================
   MODALES DE PRODUCTOS (Hornos y Máquinas)
   SOLO aplica a modales que empiezan con "modalHT" o "modalM"
   ============================================================ */
.modal[id^="modalHT"] .modal-content,
.modal[id^="modalM"] .modal-content {
    border: none;
    border-radius: 16px;
    background: transparent;
}

.modal[id^="modalHT"] .modal-body,
.modal[id^="modalM"] .modal-body {
    padding: 0;
    position: relative;
}

.modal[id^="modalHT"] .modal-body img,
.modal[id^="modalM"] .modal-body img {
    border-radius: 16px;
}

.modal-close-custom {
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close-custom:hover {
    background: #FF0000;
    transform: rotate(90deg);
}

/* ============================================================
   PRESENCIA NACIONAL
   ============================================================ */
.presencia-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
}

.presencia-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(15, 23, 43, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.presencia-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(15, 23, 43, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.presencia-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.presencia-badge {
    display: inline-block;
    background: #FF0000;
    color: #ffffff;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.presencia-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.presencia-description {
    font-size: 17px;
    color: #516171;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

#mapa-presencia {
    width: 100%;
    height: 550px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(15, 23, 43, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

#mapa-presencia .leaflet-control-zoom {
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10) !important;
    border: none !important;
}

#mapa-presencia .leaflet-control-zoom a {
    width: 38px !important;
    height: 38px !important;
    line-height: 38px !important;
    font-size: 16px !important;
    background: #ffffff !important;
    color: #0F172B !important;
    font-weight: 700 !important;
    transition: all 0.3s ease;
    border: none !important;
}

#mapa-presencia .leaflet-control-zoom a:hover {
    background: #0F172B !important;
    color: #ffffff !important;
}

#mapa-presencia .leaflet-control-zoom a:first-child {
    border-radius: 12px 12px 0 0 !important;
}

#mapa-presencia .leaflet-control-zoom a:last-child {
    border-radius: 0 0 12px 12px !important;
}

.presencia-popup {
    padding: 6px 2px;
    min-width: 120px;
}

.presencia-popup h6 {
    font-size: 15px;
    font-weight: 700;
    color: #0F172B;
    margin-bottom: 2px;
}

.presencia-popup p {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 4px;
}

.presencia-popup .badge {
    background: #0F172B;
    color: #ffffff;
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
}

.presencia-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background: #ffffff;
    padding: 24px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 1;
}

.presencia-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.presencia-stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #0F172B;
    line-height: 1;
}

.presencia-stat-label {
    font-size: 13px;
    color: #6c757d;
    font-weight: 500;
    margin-top: 4px;
}

.presencia-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.06);
}

@media (max-width: 992px) {
    .presencia-section {
        padding: 60px 0;
    }
    .presencia-title {
        font-size: 32px;
    }
    #mapa-presencia {
        height: 420px;
        border-radius: 16px;
    }
    .presencia-stats {
        gap: 20px;
        padding: 18px 24px;
        flex-wrap: wrap;
    }
    .presencia-stat-number {
        font-size: 22px;
    }
    .presencia-stat-divider {
        display: none;
    }
}

@media (max-width: 576px) {
    .presencia-section {
        padding: 40px 0;
    }
    .presencia-title {
        font-size: 24px;
    }
    .presencia-description {
        font-size: 15px;
    }
    #mapa-presencia {
        height: 300px;
        border-radius: 12px;
    }
    .presencia-stats {
        padding: 14px 16px;
        gap: 12px;
    }
    .presencia-stat-number {
        font-size: 18px;
    }
    .presencia-stat-label {
        font-size: 11px;
    }
    .presencia-badge {
        font-size: 10px;
        padding: 3px 14px;
    }
}

/* ============================================================
   CONTACTO
   ============================================================ */
.contacto-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #ffffff;
}

.contacto-info {
    background: #f8f9fa;
    padding: 36px 32px;
    border-radius: 16px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contacto-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contacto-info-item:last-of-type {
    margin-bottom: 32px;
}

.contacto-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #FF0000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacto-info-icon i {
    font-size: 20px;
    color: #ffffff;
}

.contacto-info-item h6 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.contacto-info-item p {
    font-size: 14px;
    color: #516171;
    margin-bottom: 0;
}

.contacto-social {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 24px;
}

.contacto-social h6 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.contacto-social-icons {
    display: flex;
    gap: 12px;
}

.contacto-social-icons a {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.contacto-social-icons a:hover {
    background: #FF0000;
    color: #ffffff;
    border-color: #FF0000;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.25);
}

.contacto-social-icons a i {
    font-size: 22px;
}

.contacto-form {
    background: #ffffff;
    padding: 36px 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.contacto-form h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.contacto-form p {
    color: #6c757d;
    margin-bottom: 20px;
}

.contacto-form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.contacto-form .form-control {
    border-radius: 10px;
    border-color: rgba(0, 0, 0, 0.08);
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.contacto-form .form-control:focus {
    border-color: #FF0000;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.10);
}

.contacto-form .btn-lg {
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
}

@media (max-width: 992px) {
    .contacto-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .contacto-info {
        padding: 24px 20px;
    }
    .contacto-form {
        padding: 24px 20px;
    }
}

@media (max-width: 576px) {
    .contacto-info-item {
        gap: 12px;
    }
    .contacto-info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    .contacto-info-icon i {
        font-size: 16px;
    }
    .contacto-social-icons a {
        width: 38px;
        height: 38px;
    }
    .contacto-social-icons a i {
        font-size: 18px;
    }
    .contacto-form h4 {
        font-size: 20px;
    }
}

/* ============================================================
   RESPONSIVE GENERAL
   ============================================================ */
@media (max-width: 992px) {
    .ventajas-section {
        padding: 50px 0;
    }
    .testimonios-section {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .cta-buttons .btn {
        width: 100%;
    }
}