/* Pagina de inicio - Tecno Alarmas */


/* RESET Y ESTILOS GENERALES */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}


/* HEADER Y NAVEGACIÓN */

.header {
    background: linear-gradient(135deg, #1a2a3a 0%, #154d9d 100%);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 250px;
}

.logo {
    max-width: 70px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.company-name {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.tecno {
    color: #154d9d;
    font-weight: 700;
}

.alarmas {
    color: #e51a1f;
    font-weight: 700;
}


/* NAVEGACIÓN PRINCIPAL */

.main-nav {
    flex-grow: 1;
    min-width: 300px;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.nav-link:hover {
    color: #4fc3f7;
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: #4fc3f7;
    background-color: rgba(255, 255, 255, 0.15);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #4fc3f7;
    left: 50%;
    bottom: 0;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 70%;
}


/* ACCIONES DEL HEADER */

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    min-width: 200px;
    justify-content: flex-end;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* CORRECCIÓN: Centrar íconos Font Awesome */

.social-icon i {
    font-size: 1.2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.whatsapp {
    background-color: #25D366;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 10px 18px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.phone-link i {
    font-size: 1.2rem;
}

.phone-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}


/* HERO BANNER */

.hero-banner {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
    position: relative;
}

.banner-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.banner-slide {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.banner-slide:hover {
    transform: translateY(-10px);
}

.banner-slide img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.banner-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 25px 20px 15px;
}

.banner-caption h2 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 5px;
    border-bottom: none;
}

.banner-caption p {
    font-size: 0.95rem;
    opacity: 0.9;
}


/* CONTENIDO PRINCIPAL */

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 100px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #e51a1f;
}

.main-title {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.3rem;
    color: #555555;
    font-style: italic;
}


/* SECCIONES GENERALES */

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    color: #154d9d;
    font-size: 2rem;
    margin-bottom: 10px;
    display: inline-block;
    padding-bottom: 10px;
}

.title-decoration {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #154d9d, #e51a1f);
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 10px;
}


/* SOBRE NOSOTROS */

.about-section {
    margin-bottom: 50px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 25px;
    text-align: center;
}

.about-text strong {
    color: #154d9d;
}

.about-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    background-color: #154d9d;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.feature-text {
    color: #555;
    font-weight: 500;
}


/* SERVICIOS */

.services-section {
    margin-bottom: 50px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}


/* CORRECCIÓN: Centrar íconos de servicios */

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    background-color: #f0f5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2rem;
    color: #154d9d;
}

.service-title {
    color: #154d9d;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-description {
    color: #666;
    line-height: 1.6;
}


/* INSTALACIONES */

.installations-section {
    margin-bottom: 50px;
}

.installations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.installation-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.installation-card:hover {
    transform: translateY(-10px);
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.installation-card:hover .card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #e51a1f;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-content {
    padding: 20px;
}

.card-title {
    color: #154d9d;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.card-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    background-color: #f0f5ff;
    color: #154d9d;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #154d9d;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-quote:hover {
    background-color: #0f3974;
    transform: translateY(-2px);
}

.btn-quote i {
    font-size: 1rem;
}


/* CTA SECTION */

.cta-section {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #154d9d, #1a2a3a);
    border-radius: 12px;
    margin-top: 40px;
}

.cta-text {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #e51a1f;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(229, 26, 31, 0.3);
}

.btn-cta:hover {
    background-color: #c0161a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(229, 26, 31, 0.4);
}

.btn-cta i {
    font-size: 1.2rem;
}


/* FOOTER */

.main-footer {
    background: linear-gradient(135deg, #1a2a3a 0%, #154d9d 100%);
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 0 30px;
    margin-bottom: 30px;
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-slogan {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #4fc3f7;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #4fc3f7;
}

.contact-item i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


/* CORRECCIÓN: Íconos del footer */

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-link i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4fc3f7;
}


/* RESPONSIVE DESIGN */

@media (max-width: 992px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }
    .logo-container {
        justify-content: center;
        width: 100%;
    }
    .header-actions {
        justify-content: center;
        width: 100%;
    }
    .main-title {
        font-size: 2.5rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .nav-link {
        padding: 8px 15px;
    }
    .header-actions {
        flex-direction: column;
        gap: 15px;
    }
    .banner-container {
        grid-template-columns: 1fr;
    }
    .banner-slide img {
        height: 220px;
    }
    .installations-grid {
        grid-template-columns: 1fr;
    }
    .main-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .about-features {
        flex-direction: column;
        gap: 20px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .contact-item {
        justify-content: center;
    }
    .social-link {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 20px 15px;
    }
    .service-card,
    .installation-card {
        padding: 20px 15px;
    }
    .btn-cta {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .card-features {
        justify-content: center;
    }
}


/* ESTILOS PARA PÁGINAS SECUNDARIAS (Misión, Visión, Contacto) */

.secondary-page {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* MISIÓN Y VISIÓN */

.mision-content,
.vision-content {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    margin-top: 30px;
}

.mision-texto,
.vision-texto {
    flex: 1;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555555;
}

.mision-imagen,
.vision-imagen {
    flex: 1;
}

.mision-imagen img,
.vision-imagen img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


/* CONTACTO */

.contacto-form {
    max-width: 700px;
    margin: 30px auto;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.form-grupo {
    margin-bottom: 25px;
}

.form-grupo label {
    display: block;
    margin-bottom: 8px;
    color: #154d9d;
    font-weight: 600;
    font-size: 1.1rem;
}

.form-grupo input,
.form-grupo textarea,
.form-grupo select {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease;
}

.form-grupo input:focus,
.form-grupo textarea:focus,
.form-grupo select:focus {
    outline: none;
    border-color: #154d9d;
}

.form-grupo textarea {
    resize: vertical;
    min-height: 150px;
}

.acciones-form {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-enviar {
    background-color: #154d9d;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-enviar:hover {
    background-color: #0f3974;
    transform: translateY(-3px);
}

.btn-wa {
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-wa:hover {
    background-color: #1da851;
    transform: translateY(-3px);
}

.resultado-contacto {
    background-color: #fafafa;
    border: 2px solid #e1e8f0;
    padding: 20px;
    border-radius: 10px;
    color: #333;
    margin-top: 30px;
    text-align: center;
    font-size: 1.1rem;
}


/* UTILIDADES */

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

[hidden] {
    display: none !important;
}


/* ANIMACIONES SUAVES */

.service-card,
.installation-card,
.btn-quote,
.btn-cta,
.btn-enviar,
.btn-wa,
.social-icon,
.nav-link {
    transition: all 0.3s ease;
}


/* MEDIA QUERIES PARA PÁGINAS SECUNDARIAS */

@media (max-width: 768px) {
    .mision-content,
    .vision-content {
        flex-direction: column;
        padding: 20px;
    }
    .mision-texto,
    .vision-texto {
        order: 2;
    }
    .mision-imagen,
    .vision-imagen {
        order: 1;
        width: 100%;
    }
    .contacto-form {
        padding: 20px;
    }
    .acciones-form {
        flex-direction: column;
    }
    .btn-enviar,
    .btn-wa {
        width: 100%;
        text-align: center;
    }
}


/* ===== ESTILOS PARA LA PÁGINA SOBRE NOSOTROS ===== */

.sobre-nosotros-page {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


/* Sección Misión y Visión */

.mision-vision-section {
    margin: 50px 0;
}

.mv-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.mv-card {
    background: linear-gradient(145deg, #ffffff, #f5f9ff);
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(21, 77, 157, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid transparent;
}

.mision-card {
    border-top-color: #154d9d;
}

.vision-card {
    border-top-color: #e51a1f;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(21, 77, 157, 0.15);
}


/* CORRECCIÓN: Íconos de Misión/Visón */

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    background-color: #f0f5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-icon i {
    font-size: 2.5rem;
    color: #154d9d;
}

.mision-card .mv-icon i {
    color: #154d9d;
}

.vision-card .mv-icon i {
    color: #e51a1f;
}

.mv-title {
    color: #154d9d;
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e51a1f;
    display: inline-block;
    width: 100%;
}

.mv-content {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

.mv-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.mv-list li {
    padding: 10px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.mv-list li i {
    color: #25D366;
    margin-top: 3px;
    flex-shrink: 0;
}


/* Sección Valores */

.valores-section {
    margin: 60px 0;
    padding: 40px 0;
    background-color: #f8f9fa;
    border-radius: 15px;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.valor-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-10px);
}


/* CORRECCIÓN: Íconos de valores */

.valor-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    background-color: #f0f5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.valor-icon i {
    font-size: 2rem;
    color: #154d9d;
}

.valor-title {
    color: #154d9d;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.valor-desc {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}


/* Sección Historia */

.historia-section {
    margin: 60px 0;
}

.historia-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 30px;
}

.historia-texto {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    line-height: 1.8;
}

.historia-texto p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.1rem;
}

.historia-logros {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.logro-item {
    background: linear-gradient(135deg, #154d9d, #1a2a3a);
    color: white;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(21, 77, 157, 0.2);
}

.logro-number {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.logro-text {
    font-size: 0.95rem;
    opacity: 0.9;
}


/* CTA Final */

.cta-final {
    background: linear-gradient(135deg, #154d9d, #1a2a3a);
    color: white;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background-color: #e51a1f;
    color: white;
}

.btn-cta-primary:hover {
    background-color: #c0161a;
    transform: translateY(-3px);
}

.btn-cta-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-cta-primary i,
.btn-cta-secondary i {
    font-size: 1.2rem;
}


/* Estilos para la sección About Preview en index.html */

.about-preview {
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa, #eef2f7);
    border-radius: 15px;
}

.preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .preview-content {
        grid-template-columns: 1fr;
    }
}

.preview-text {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: #154d9d;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 25px;
    border: 2px solid #154d9d;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    background-color: #154d9d;
    color: white;
    transform: translateX(5px);
}

.btn-learn-more i {
    font-size: 1rem;
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #154d9d;
    margin-bottom: 8px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}


/* Responsive para Sobre Nosotros */

@media (max-width: 992px) {
    .mv-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .sobre-nosotros-page {
        padding: 25px 20px;
    }
    .valores-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== ESTILOS ESPECÍFICOS PARA LA PÁGINA DE CONTACTO ===== */


/* Contenedor principal de contacto */

.contacto-info {
    margin: 40px 0;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* Sección de datos de contacto */

.contacto-datos {
    background: linear-gradient(135deg, #f8f9fa, #eef2f7);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.datos-contacto {
    margin: 30px 0;
}

.dato-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e1e8f0;
}

.dato-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.dato-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #154d9d, #1a2a3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dato-icon i {
    color: white;
    font-size: 1.5rem;
}

.dato-content h3 {
    color: #154d9d;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.dato-content p {
    margin-bottom: 5px;
}

.dato-content a {
    color: #154d9d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.dato-content a:hover {
    color: #e51a1f;
}

.dato-sub {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.redes-contacto {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e1e8f0;
}

.redes-contacto h3 {
    color: #154d9d;
    margin-bottom: 20px;
    text-align: center;
}

.redes-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}


/* ===== ESTILOS ESPECÍFICOS PARA LA PÁGINA DE CONTACTO ===== */


/* Contenedor principal de contacto */

.contacto-info {
    margin: 40px 0;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* Sección de datos de contacto */

.contacto-datos {
    background: linear-gradient(135deg, #f8f9fa, #eef2f7);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.datos-contacto {
    margin: 30px 0;
}

.dato-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e1e8f0;
}

.dato-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.dato-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #154d9d, #1a2a3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dato-icon i {
    color: white;
    font-size: 1.5rem;
}

.dato-content h3 {
    color: #154d9d;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.dato-content p {
    margin-bottom: 5px;
}

.dato-content a {
    color: #154d9d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.dato-content a:hover {
    color: #e51a1f;
}

.dato-sub {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.redes-contacto {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e1e8f0;
}

.redes-contacto h3 {
    color: #154d9d;
    margin-bottom: 20px;
    text-align: center;
}

.redes-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}


/* BOTONES SOCIALES EN CONTACTO - IGUALES A LOS DEL HEADER */

.red-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.red-social.facebook {
    background-color: #3b5998;
}

.red-social.whatsapp {
    background-color: #25D366;
}

.red-social i {
    font-size: 1.2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.red-social:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}


/* Formulario de contacto */

.contacto-formulario {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-subtitle {
    color: #666;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.1rem;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 30px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #154d9d;
}

.form-check label {
    color: #555;
    font-size: 0.95rem;
}

.link-privacidad {
    color: #154d9d;
    text-decoration: none;
    font-weight: 500;
}

.link-privacidad:hover {
    text-decoration: underline;
}


/* Botones del formulario */

.acciones-form {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-enviar,
.btn-wa {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-enviar {
    background: linear-gradient(135deg, #154d9d, #1a2a3a);
    color: white;
}

.btn-enviar:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(21, 77, 157, 0.3);
}

.btn-wa {
    background-color: #25D366;
    color: white;
}

.btn-wa:hover {
    background-color: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-enviar i,
.btn-wa i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .acciones-form {
        flex-direction: column;
    }
    .contacto-datos,
    .contacto-formulario {
        padding: 30px 20px;
    }
}


/* Sección FAQ */

.faq-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 15px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-pregunta {
    color: #154d9d;
    margin-bottom: 15px;
    font-size: 1.3rem;
    border-bottom: 2px solid #e51a1f;
    padding-bottom: 10px;
}

.faq-respuesta {
    color: #555;
    line-height: 1.6;
}


/* CTA de contacto */

.cta-contacto {
    background: linear-gradient(135deg, #154d9d, #1a2a3a);
    color: white;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-llamar,
.btn-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-llamar {
    background-color: #e51a1f;
    color: white;
}

.btn-llamar:hover {
    background-color: #c0161a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(229, 26, 31, 0.3);
}

.btn-whatsapp-cta {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp-cta:hover {
    background-color: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-llamar i,
.btn-whatsapp-cta i {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn-llamar,
    .btn-whatsapp-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    .cta-contacto {
        padding: 40px 20px;
    }
}


/* Mejoras para el formulario */

.form-grupo select {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease;
    background-color: white;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23154d9d' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.form-grupo select:focus {
    outline: none;
    border-color: #154d9d;
}


/* Honeypot */

.honeypot {
    position: absolute;
    left: -9999px;
}