/* ===== RESET Y BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #2d2d2d; /* charcoal */
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== VARIABLES ===== */
:root {
    --primary: #0B2E4C;      /* azul logo */
    --secondary: #FF6A00;    /* naranja llama */
    --dark: #1F1F1F;         /* industrial */
    --light: #F5F7FA;
    --gray: #E5E7EB;
    --charcoal: #2d2d2d;     /* para textos oscuros */
    --amber: #FF6A00;        /* para botones y acentos (igual al secondary) */
    --dark-amber: #e55e00;   /* hover del naranja */
    --light-gray: #F5F7FA;   /* fondos claros */
}
h1, h2, h3 {
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

/* ===== HEADER MEJORADO ===== */
.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

.logo img {
    height: 55px;
    display: block;
    transition: opacity 0.3s ease;
}

.logo img:hover {
    opacity: 0.85;
}

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-menu a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--secondary);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 6px;
    transition: background 0.3s, transform 0.2s;
}

.btn-nav:hover {
    background: var(--dark-amber);
    transform: translateY(-2px);
}

.btn-nav::after {
    display: none; /* quitamos la línea inferior */
}

.hamburger {
    display: none;
    font-size: 2rem;
    color: var(--primary);
    cursor: pointer;
}

/* Responsive Header */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 15px;
    }

    .btn-nav {
        display: inline-block;
        width: auto;
        margin-top: 10px;
    }
}

/* ===== HERO MEJORADO ===== */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 180px 0;
    margin-top: 70px; /* altura del header */
    position: relative;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BOTONES ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--secondary);
    color: white;
}

.btn-primary:hover {
    background: var(--dark-amber);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,106,0,0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: white;
}

.btn-outline:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* ===== SECCIONES GENERALES ===== */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary);
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* ===== QUIÉNES SOMOS ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    text-align: center;
    padding: 20px;
    background-color: var(--light);
    border-radius: 8px;
    transition: transform 0.3s;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.value-item h4 {
    font-size: 1.2rem;
}
/* ===== SERVICIOS MEJORADOS (MODERNOS) ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 20px;               /* Bordes más suaves */
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px 25px;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(255, 106, 0, 0.12); /* Sombra naranja sutil */
}

/* Contenedor del icono (círculo con fondo naranja suave) */
.service-card .card-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.1); /* Mismo naranja con opacidad */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.3s, transform 0.3s;
}

.service-card:hover .card-icon {
    background: rgba(255, 106, 0, 0.2);
    transform: scale(1.05);
}

.service-card .card-icon img {
    width: 55%;
    height: auto;
    object-fit: contain;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
    padding: 0;
}

.service-card p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 10px;
}

/* Línea decorativa inferior (naranja) que se expande al hacer hover */
.service-card::after {
    content: '';
    width: 50px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    transition: width 0.3s ease;
    margin-top: auto; 
}

.service-card:hover::after {
    width: 80px;
}

/* Responsive */
@media (max-width: 768px) {
    .service-card .card-icon {
        width: 90px;
        height: 90px;
    }
}

/* ===== SERVICIOS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    padding: 20px 20px 10px;
    color: var(--primary);
}

.service-card p {
    padding: 0 20px 20px;
    color: #555;
}

/* ===== FAQ ===== */
.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--gray);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: var(--light);
    padding: 15px 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    padding: 0 20px;
    background-color: white;
    transition: max-height 0.3s ease, padding 0.3s ease;
    overflow: hidden;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* ajusta según contenido */
    padding: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ===== CONTACTO ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-info {
    background-color: var(--light);
    padding: 30px;
    border-radius: 8px;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--secondary);
    width: 20px;
}

.map-container {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
}

/* ===== FOOTER MEJORADO - VERSIÓN COMPACTA ===== */
.site-footer {
    background-color: var(--primary);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid principal */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: start;
}

/* ===== COLUMNA 1: MARCA ===== */
.footer-brand {
    text-align: left;
}

.footer-logo {
    max-height: 85px;  /* Logo más grande */
    width: auto;
    margin-bottom: 1rem;
    display: block;
}

.footer-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.footer-title .footer-highlight {
    color: var(--secondary);
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 0.75rem;
    max-width: 350px;
}

.footer-nit {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0;
}

/* ===== COLUMNA 2: ENLACES COMPACTOS ===== */
.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.links-compact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;  /* Espacio reducido entre enlaces */
}

.links-compact li {
    margin: 0;
    padding: 0;
}

.links-compact a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    display: inline-block;
    padding: 0.2rem 0;
}

.links-compact a:hover {
    color: var(--secondary);
    transform: translateX(4px);
}

/* ===== COLUMNA 3: REDES + CONTACTO COMPACTO ===== */
.footer-social-block {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-social h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
    position: relative;
    display: inline-block;
}

.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--secondary);
    border-radius: 2px;
}

/* Redes sociales */
.social-icons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    color: white;
}

/* Contacto compacto */
.footer-contact-compact {
    margin-top: 0;
}

.footer-contact-compact p {
    margin: 0.5rem 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-contact-compact i {
    color: var(--secondary);
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.footer-bottom .credit {
    margin-top: 0.4rem;
    font-size: 0.8rem;
}

.footer-bottom .credit a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-bottom .credit a:hover {
    color: white;
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: span 2;
        text-align: center;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-links h4::after,
    .footer-social h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .links-compact {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .links-compact a:hover {
        transform: translateY(-2px);
    }
    
    .footer-social-block {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-contact-compact p {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-logo {
        max-height: 75px;
    }
    
    .links-compact {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .footer-contact-compact p {
        font-size: 0.8rem;
    }
}
/* ===== BOTÓN WHATSAPP FLOTANTE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    line-height: 60px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: background-color 0.3s, transform 0.3s;
}

.whatsapp-float:hover {
    background-color: #20ba5c;
    transform: scale(1.1);
    color: white;
}

/* ===== RESPONSIVE GENERAL ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-grid,
    .services-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .social-links a {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .hero .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
    
}
/* ===== TARJETAS DE VALORES - OPCIÓN 3 ===== */
.about-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.value-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 0; /* sin padding superior para que la línea quede arriba */
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.value-card::before {
    content: '';
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary), #ff9f4b);
    display: block;
    margin-bottom: 25px;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(255, 106, 0, 0.12);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.value-card:hover i {
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    padding: 0 20px;
}

.value-card p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 25px 0;
    padding: 0 20px;
}


/* ===== CONTACTO MEJORADO ===== */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start; /* Para que las columnas se alineen arriba */
}

.contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.contact-card:hover {
    box-shadow: 0 20px 35px rgba(255, 106, 0, 0.12);
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
    border-left: 5px solid var(--secondary);
    padding-left: 1rem;
}

/* Columna de información: apila tarjeta y mapa */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Tarjeta de información (puede tener un estilo adicional si quieres) */
.info-card {
    /* Si deseas un fondo ligeramente distinto, por ejemplo: */
    /* background: #f9f9f9; */
}

/* Formulario */
.form-group {
    margin-bottom: 1.25rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 50px;
    background: var(--secondary);
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.contact-form .btn-primary:hover {
    background: var(--dark-amber);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255,106,0,0.3);
}

/* Información de contacto */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    color: var(--charcoal);
}

.info-item i {
    color: var(--secondary);
    font-size: 1.3rem;
    min-width: 24px;
    text-align: center;
    margin-top: 2px;
}

/* Mapa dentro de la columna */
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.map-wrapper:hover {
    box-shadow: 0 20px 35px rgba(255, 106, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== BLOQUES DE INFORMACIÓN CON ICONOS ===== */
.info-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 106, 0, 0.1); /* fondo naranja suave */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text strong {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 4px;
}

.info-text span {
    color: var(--charcoal);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Mapa dentro de la tarjeta */
.info-map {
    margin-top: 1rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.info-map:hover {
    box-shadow: 0 10px 25px rgba(255,106,0,0.15);
}

/* Ajuste responsive */
@media (max-width: 768px) {
    .info-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .info-icon {
        margin-bottom: 0.5rem;
    }
}
/* ===== FOOTER MEJORADO ===== */
.site-footer {
    background-color: var(--primary);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.footer-logo {
    max-height: 60px;
    margin-bottom: 1rem;
}

.footer-title {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 400px;
}

.footer-social h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-social .social-links {
    display: flex;
    gap: 1rem;
}

.footer-social .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    transition: background 0.3s, transform 0.2s;
    text-decoration: none;
    margin-left: 0; /* reset del margen izquierdo que tenías */
}

.footer-social .social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-bottom .credit {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.footer-bottom .credit a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s, text-decoration 0.3s;
}

.footer-bottom .credit a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive para footer y contacto */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-description {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social .social-links {
        justify-content: center;
    }
}

/* Ajuste para que el botón flotante no se sobreponga mal */
.whatsapp-float {
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    /* mantén el resto de estilos que ya tienes */
}
/* Responsive */

/* Alertas para el formulario */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer mejorado (estilo React) */
.site-footer {
    background-color: var(--primary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-title .footer-highlight {
    color: var(--secondary);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer-nit {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-contact p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

.footer-contact strong {
    color: white;
    font-weight: 600;
    margin-right: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* Responsive footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: span 1;
    }
    .social-icons {
        justify-content: center;
    }
    .footer-contact p {
        text-align: center;
    }
}
@media (max-width: 992px) {
    .about-values { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .about-values { grid-template-columns: 1fr; }
}


.info-text a:hover {
    text-decoration: underline;
}

.info-text span {
    display: block;
    margin-bottom: 2px;
}

.info-text span::before {
    content: "• ";
    color: var(--secondary);
}




.contact-section .info-text a:link,
.contact-section .info-text a:visited {
    color: #555 !important; /* gris base */
    text-decoration: none;
    font-weight: 500;
}

.contact-section .info-text a:hover,
.contact-section .info-text a:active {
    color: var(--secondary) !important; /* naranja */
    text-decoration: underline;
}
