/* ============================================================
   ESTILOS ADICIONALES - INDEX CORREGIDO
   ============================================================ */

/* ----- BANNER INTERMEDIO (fondo azul, texto blanco) ----- */
.banner-intermedio {
    background: linear-gradient(135deg, #0f2b5e, #1a56db);
    color: white;
    padding: 60px 0;
    text-align: center;
}
.banner-intermedio h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
}
.banner-intermedio h2 span {
    color: #93c5fd;
}
.banner-intermedio p {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
    color: rgba(255,255,255,0.9);
}

/* ----- QUIENES SOMOS ----- */
.quienes-somos {
    background: white;
}
.foto-corredor {
    position: relative;
    display: inline-block;
}
.foto-corredor img {
    max-width: 100%;
    max-height: 500px;
    object-fit: cover;
}
.foto-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(15, 43, 94, 0.9);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
}
.quienes-texto .section-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f2b5e;
    margin-bottom: 16px;
}
.quienes-texto .lead {
    font-size: 18px;
    font-weight: 400;
    color: #1e293b;
}
.quienes-texto p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}
.quienes-cta .btn {
    border-radius: 50px;
    padding: 12px 32px;
}

/* ----- BLOG (3 columnas iguales) ----- */
.blog-section {
    background: #f8fafc;
}
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}
.blog-card-img {
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}
.blog-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-body h5 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}
.blog-card-body h5 a {
    color: #0f2b5e;
    text-decoration: none;
}
.blog-card-body h5 a:hover {
    color: #1a56db;
}
.blog-card-body p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    flex: 1;
}
.blog-card-body .btn-link {
    color: #1a56db;
    font-weight: 600;
    padding: 0;
    text-decoration: none;
    align-self: flex-start;
}
.blog-card-body .btn-link:hover {
    color: #0f2b5e;
}

/* ----- TESTIMONIOS / RESEÑAS ----- */
.testimonios-section {
    background: white;
}
.testimonios-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.testimonio-stars {
    font-size: 28px;
    color: #f59e0b;
    margin-bottom: 24px;
}
.testimonio-stars .ms-2 {
    color: #0f2b5e;
    font-weight: 700;
}
.testimonio-stars .text-muted {
    font-size: 18px;
}
.testimonio-item {
    border-top: 1px solid #e2e8f0;
    padding: 16px 0;
    text-align: left;
}
.testimonio-item:first-of-type {
    border-top: none;
}
.testimonio-header {
    font-size: 15px;
    margin-bottom: 4px;
}
.testimonio-header strong {
    color: #0f2b5e;
}
.testimonio-item p {
    font-size: 15px;
    color: #475569;
    margin: 0;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 768px) {
    .banner-intermedio h2 {
        font-size: 24px;
    }
    .quienes-texto .section-title {
        font-size: 22px;
        margin-top: 20px;
    }
    .foto-corredor img {
        max-height: 300px;
    }
    .testimonios-card {
        padding: 24px;
    }
    .testimonio-stars {
        font-size: 22px;
    }
    .blog-card-img {
        height: 140px;
    }
}
@media (max-width: 576px) {
    .quienes-cta .btn {
        display: block;
        margin-bottom: 8px;
    }
    .quienes-cta .btn-outline-primary {
        margin-left: 0 !important;
    }
    .testimonios-card {
        padding: 16px;
    }
}
/* ============================================================
   TESTIMONIOS CARRUSEL
   ============================================================ */
.testimonios-section {
    background: #f8fafc;
}
.testimonios-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.testimonio-stars {
    font-size: 28px;
    color: #f59e0b;
}
.testimonio-stars .ms-2 {
    color: #0f2b5e;
    font-weight: 700;
}
.testimonio-stars .text-muted {
    font-size: 18px;
}
.testimonio-item {
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s;
}
.testimonio-item:hover {
    background: #eff6ff;
}
.testimonio-item .testimonio-header {
    font-size: 15px;
    margin-bottom: 4px;
}
.testimonio-item .testimonio-header strong {
    color: #0f2b5e;
}
.testimonio-item p {
    font-size: 15px;
    color: #475569;
    margin: 0;
}

/* Controles del carrusel */
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background: #0f2b5e;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}
#testimonialCarousel .carousel-control-prev:hover,
#testimonialCarousel .carousel-control-next:hover {
    opacity: 1;
}
#testimonialCarousel .carousel-control-prev {
    left: -20px;
}
#testimonialCarousel .carousel-control-next {
    right: -20px;
}
#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
    background-size: 50% 50%;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonios-card {
        padding: 20px 15px;
    }
    .testimonio-stars {
        font-size: 22px;
    }
    #testimonialCarousel .carousel-control-prev,
    #testimonialCarousel .carousel-control-next {
        width: 30px;
        height: 30px;
        top: 50%;
    }
    #testimonialCarousel .carousel-control-prev {
        left: -10px;
    }
    #testimonialCarousel .carousel-control-next {
        right: -10px;
    }
}
@media (max-width: 576px) {
    .testimonio-item {
        margin-bottom: 12px;
    }
}
/* ============================================================
   BUSCADOR CORREGIDO
   ============================================================ */
.hero-section {
    background: linear-gradient(135deg, #0f2b5e, #1a56db);
    color: white;
    padding: 60px 0;
}
.hero-text {
    text-align: center;
    margin-bottom: 30px;
}
.hero-text h1 {
    font-size: 42px;
    font-weight: 700;
}
.hero-text h1 span {
    color: #93c5fd;
}
.hero-text p {
    font-size: 20px;
    opacity: 0.9;
}
.search-fields {
    max-width: 900px;
    margin: 0 auto;
}
.search-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr auto;
    gap: 12px;
    align-items: end;
}
.search-row .form-group {
    margin-bottom: 0;
}
.search-row label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.search-row select,
.search-row input {
    width: 100%;
    padding: 10px 12px;
    border: none;
    border-radius: 8px;
    background: white;
    color: #1e293b;
    font-size: 14px;
}
.search-row .search-btn {
    display: flex;
    align-items: end;
}
.search-row .btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s;
}
.search-row .btn:hover {
    background: #0f2b5e;
    transform: translateY(-2px);
}

/* ============================================================
   ESTRELLAS DE TESTIMONIOS
   ============================================================ */
.testimonio-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.testimonio-stats .rating-number {
    font-size: 32px;
    font-weight: 700;
    color: #0f2b5e;
}
.testimonio-stats .stars {
    font-size: 28px;
    color: #f59e0b;
}
.testimonio-stats .text-muted {
    font-size: 16px;
}
.testimonio-stars-individual {
    font-size: 16px;
    color: #f59e0b;
    margin: 4px 0 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .search-row {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .search-row {
        grid-template-columns: 1fr 1fr;
    }
    .hero-text h1 {
        font-size: 28px;
    }
}
@media (max-width: 576px) {
    .search-row {
        grid-template-columns: 1fr;
    }
    .search-row .search-btn {
        margin-top: 4px;
    }
}
/* ============================================================
   FOOTER AZUL
   ============================================================ */
.footer-azul {
    background: #0f2b5e !important;
    color: rgba(255,255,255,0.9) !important;
    padding: 40px 0 20px !important;
    margin-top: 40px;
}
.footer-azul h5 {
    color: #ffffff !important;
    font-weight: 700 !important;
    margin-bottom: 16px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-azul p {
    color: rgba(255,255,255,0.85) !important;
    font-size: 14px;
    line-height: 1.8;
}
.footer-azul a {
    color: rgba(255,255,255,0.7) !important;
    text-decoration: none;
    transition: all 0.3s;
}
.footer-azul a:hover {
    color: #ffffff !important;
}
.footer-azul .social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    text-align: center;
    line-height: 36px;
    color: white;
    margin-right: 4px;
    transition: all 0.3s;
}
.footer-azul .social-icons a:hover {
    background: #1a56db;
    transform: translateY(-2px);
}
.footer-azul .copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
    margin-top: 24px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}
.footer-azul .list-unstyled li {
    margin-bottom: 6px;
}
.footer-azul .list-unstyled li a {
    color: rgba(255,255,255,0.8);
}
.footer-azul .list-unstyled li a:hover {
    color: white;
    padding-left: 4px;
}
/* ============================================================
   BUSCADOR HORIZONTAL (sin precios)
   ============================================================ */
.search-fields-horizontal {
    max-width: 900px;
    margin: 0 auto;
}

.search-fields-horizontal .search-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-end;
    justify-content: center;
}

.search-fields-horizontal .search-item {
    flex: 1 1 180px;
    min-width: 140px;
}

.search-fields-horizontal .search-item label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.search-fields-horizontal .search-item select,
.search-fields-horizontal .search-item input {
    width: 100%;
    padding: 10px 14px;
    border: none;
    border-radius: 10px;
    background: white;
    font-size: 14px;
    color: #1e293b;
}

.search-fields-horizontal .search-btn {
    flex: 0 0 auto;
    min-width: 120px;
}

.search-fields-horizontal .search-btn .btn {
    width: 100%;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    background: linear-gradient(135deg, #1a56db, #0f2b5e);
    border: none;
    color: white;
    transition: all 0.3s;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.search-fields-horizontal .search-btn .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26,86,219,0.4);
}

/* ============================================================
   FOOTER CON FONDO AZUL
   ============================================================ */
footer {
    background: #0f2b5e !important;
    color: rgba(255,255,255,0.9) !important;
    padding: 40px 0 20px !important;
}

footer h5 {
    color: #93c5fd !important;
    font-weight: 700;
    margin-bottom: 16px;
}

footer p,
footer li,
footer a {
    color: rgba(255,255,255,0.8) !important;
}

footer a:hover {
    color: white !important;
}

footer .social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    text-align: center;
    line-height: 36px;
    color: white !important;
    margin-right: 4px;
    transition: all 0.3s;
}

footer .social-icons a:hover {
    background: #1a56db;
    transform: translateY(-3px);
}

footer .copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
    margin-top: 24px;
    font-size: 13px;
    color: rgba(255,255,255,0.6) !important;
}

footer .copyright a {
    color: #93c5fd !important;
}

footer .copyright a:hover {
    color: white !important;
}

/* ============================================================
   ESTRELLAS EN TESTIMONIOS
   ============================================================ */
.testimonio-stars-client {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 4px;
}

.testimonio-stars-client .fa-star {
    margin-right: 2px;
}
.logo-img {
    max-height: 70px;  /* Ajusta a 80px o 90px si quieres más grande */
    width: auto;
    display: block;
    transition: transform 0.3s;
}
.logo-img:hover {
    transform: scale(1.02);
}
/* ============================================================
   ESTILOS EXCLUSIVOS PARA LA FICHA DE PROPIEDAD
   ============================================================ */

/* ----- LIGHTBOX ----- */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0,0,0,0.6);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 44px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    z-index: 10000;
}
.lightbox-close:hover {
    color: #ccc;
    transform: scale(1.2);
}

/* ----- ZOOM HINT ----- */
.zoom-hint {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    pointer-events: none;
    backdrop-filter: blur(4px);
}
.main-photo {
    position: relative;
}

/* ----- BOTÓN VIDEO ----- */
.btn-video {
    background: #ff0000;
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}
.btn-video:hover {
    background: #cc0000;
    color: white;
    transform: scale(1.02);
}
.btn-video i {
    margin-right: 8px;
}

/* ----- SIDEBAR DE PROPIEDAD ----- */
.property-sidebar {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.property-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f2b5e;
}
.property-title-mobile {
    font-size: 22px;
    font-weight: 700;
    color: #0f2b5e;
}
.property-price {
    font-size: 28px;
    font-weight: 800;
    color: #1a56db;
}
.property-price-mobile {
    font-size: 24px;
    font-weight: 800;
    color: #1a56db;
}
.property-badges .badge,
.property-badges-mobile .badge {
    font-size: 14px;
    padding: 6px 14px;
    margin-right: 4px;
    margin-bottom: 4px;
}
.property-features-list li {
    padding: 6px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 15px;
}
.property-features-list li:last-child {
    border-bottom: none;
}
.property-features-list li i {
    color: #1a56db;
    width: 24px;
}
.property-address {
    font-size: 14px;
    color: #64748b;
    margin-top: 8px;
}
.property-address i {
    color: #1a56db;
    margin-right: 6px;
}
.property-actions .btn {
    border-radius: 50px;
    padding: 10px;
    font-weight: 600;
}
.property-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}
.property-full-features ul li {
    padding: 4px 0;
    font-size: 15px;
    color: #1e293b;
}
.property-full-features ul li strong {
    color: #0f2b5e;
}
.property-contact-form {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
}

/* ----- RESPONSIVE FICHA ----- */
@media (max-width: 768px) {
    .property-title {
        font-size: 20px;
    }
    .property-price {
        font-size: 22px;
    }
    .property-sidebar {
        margin-top: 20px;
        padding: 16px;
    }
    .thumbnails img {
        height: 60px !important;
        width: 80px !important;
    }
    .lightbox-content {
        max-width: 95%;
        max-height: 80%;
    }
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    .btn-video {
        width: 100%;
        text-align: center;
    }
}
/* ----- DIRECCIÓN ----- */
.address-list li {
    padding: 4px 0;
    font-size: 15px;
}
.address-list li i {
    color: #1a56db;
    width: 24px;
}

/* ----- SERVICIOS ----- */
.services-list .list-inline-item {
    background: #f1f5f9;
    padding: 4px 14px;
    border-radius: 20px;
    margin: 4px;
    font-size: 14px;
}
.services-list .list-inline-item i {
    margin-right: 6px;
}

/* ----- EXTRAS ----- */
.extras-list li {
    padding: 4px 0;
    font-size: 15px;
    border-bottom: 1px solid #f1f5f9;
}
.extras-list li:last-child {
    border-bottom: none;
}
.extras-list li strong {
    color: #0f2b5e;
}
/* ----- DIRECCIÓN EN DOS COLUMNAS ----- */
.address-list li {
    padding: 4px 0;
    font-size: 15px;
}
.address-list li i {
    color: #1a56db;
    width: 24px;
}

/* ----- SERVICIOS Y EXTRAS ----- */
.services-list .list-inline-item {
    background: #f1f5f9;
    padding: 4px 14px;
    border-radius: 20px;
    margin: 4px;
    font-size: 14px;
}
.services-list .list-inline-item i {
    margin-right: 6px;
}
.extras-list li {
    padding: 4px 0;
    font-size: 15px;
    border-bottom: 1px solid #f1f5f9;
}
.extras-list li:last-child {
    border-bottom: none;
}
.extras-list li strong {
    color: #0f2b5e;
}
/* ============================================================
   PÁGINAS: OPINIÓN DE VALOR Y TASACIÓN
   ============================================================ */

/* Hero */
.hero-opinion,
.hero-tasacion {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc, #dbeafe);
}
.hero-opinion h1,
.hero-tasacion h1 {
    font-size: 42px;
    font-weight: 800;
    color: #0f2b5e;
}
.hero-opinion .lead,
.hero-tasacion .lead {
    font-size: 20px;
    color: #1e293b;
}
.hero-badges .badge {
    font-size: 14px;
    padding: 6px 16px;
    margin: 4px;
}

/* Servicios cubiertos */
.servicio-item {
    padding: 16px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s;
}
.servicio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.servicio-item i {
    margin-bottom: 8px;
}
.servicio-item p {
    font-weight: 600;
    margin: 0;
}

/* Listas de "qué incluye" */
.incluye-list li {
    padding: 6px 0;
    font-size: 16px;
}
.incluye-list li i {
    margin-right: 10px;
    width: 24px;
}

/* Separador */
.separador-tasacion {
    background: #f1f5f9;
}
.separador-tasacion h2 {
    color: #0f2b5e;
}
.separador-tasacion .lead {
    color: #1e293b;
}

/* Formularios dentro de bg-primary */
#solicitar .bg-white,
#solicitar-tasacion .bg-white {
    border: 1px solid #e2e8f0;
}
#solicitar .bg-white h5,
#solicitar-tasacion .bg-white h5 {
    font-weight: 700;
    margin-bottom: 16px;
}

/* Botones CTA */
.cta-botones .btn {
    border-radius: 50px;
    padding: 14px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-opinion,
    .hero-tasacion {
        padding: 40px 0;
    }
    .hero-opinion h1,
    .hero-tasacion h1 {
        font-size: 28px;
    }
    .hero-opinion .lead,
    .hero-tasacion .lead {
        font-size: 17px;
    }
    .servicio-item {
        padding: 12px;
    }
    #solicitar .bg-white,
    #solicitar-tasacion .bg-white {
        margin-top: 20px;
    }
}
/* ============================================================
   CONTACTO
   ============================================================ */

/* Hero */
.hero-contacto {
    background: linear-gradient(rgba(15, 43, 94, 0.7), rgba(15, 43, 94, 0.7)), url('/assets/img/contacto-hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
}
.hero-contacto h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}
.hero-contacto .lead {
    font-size: 20px;
    opacity: 0.9;
}
.hero-badges .badge {
    font-size: 14px;
    padding: 6px 16px;
    margin: 4px;
    background: rgba(255,255,255,0.2) !important;
    border: 1px solid rgba(255,255,255,0.3);
}

/* Medios de contacto */
.contact-card {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s;
    height: 100%;
}
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 30px;
    color: white;
}
.contact-icon.whatsapp {
    background: #25d366;
}
.contact-icon.telefono {
    background: #1a56db;
}
.contact-icon.email {
    background: #0f2b5e;
}
.contact-card h5 {
    font-weight: 700;
    color: #0f2b5e;
    margin-bottom: 8px;
}
.contact-card p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 16px;
}

/* ============================================================
   REDES SOCIALES - TAMAÑO MEJORADO
   ============================================================ */
.social-icons {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.social-icons li a {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f1f5f9;
    text-align: center;
    line-height: 60px;
    font-size: 28px;
    color: #0f2b5e;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.social-icons li a:hover {
    background: #0f2b5e;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(15, 43, 94, 0.2);
}

/* Formulario */
.form-card {
    border: 1px solid #e2e8f0;
}
.form-card .form-control {
    border-radius: 10px;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}
.form-card .form-control:focus {
    border-color: #1a56db;
    box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-contacto {
        padding: 60px 0;
    }
    .hero-contacto h1 {
        font-size: 28px;
    }
    .hero-contacto .lead {
        font-size: 17px;
    }
    .contact-card {
        margin-bottom: 16px;
    }
    .form-contacto .col-lg-6 {
        margin-top: 24px;
    }
}