/* ===== VARIABLES ===== */
:root {
    --verde-pavers: #7CB342;
    --gris-oscuro: #4A4A4A;
    --gris-claro: #F5F5F5;
    --texto: #333;
    --transicion: all 0.3s ease;
    --fuente: 'Poppins', sans-serif;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: #ffffff;
    overflow-x: hidden;
}

body {
    font-family: var(--fuente);
    color: var(--texto);
    background-color: var(--gris-claro);
    scroll-behavior: smooth;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  background: #111;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 9999;
}
.skip-link:focus {
  left: 10px;
}

/* ===== SECCIONES CONTENIDAS ===== */
.section-container {
    max-width: 1200px;
    /* Podés ajustar este valor: 1000–1400px es un rango común */
    margin: 0 auto;
    /* Centra horizontalmente */
    padding: 60px 40px;
    /* Espacio superior/inferior + laterales */
}

/* Foco visible para teclado */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
outline: 3px solid var(--verde-pavers);
outline-offset: 3px;
}

/* =========================
NAVBAR
========================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3000;
    background: #272727;
    box-shadow: 0 2px 20px rgba(0, 255, 120, 0.05);
}

/* Contenedor interno */
.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding-right: 15px;
    overflow: hidden;
}

/* Bloque del logo */
.navbar-logo-area {
    position: relative;
    background-color: #ffffff;
    padding: 0 90px;
    height: 100%;
    display: flex;
    align-items: center;
    clip-path: polygon(0 0, 88% 0, 100% 100%, 0% 100%);
    box-shadow: 3px 0 6px rgba(0, 0, 0, 0.25);
}

.navbar-logo-area::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 100%;
    background-color: #ffffff;
    z-index: 1;
}

.navbar-logo img {
    height: 95px;
    width: auto;
    object-fit: contain;
    transform: translate(2px);
}

/* Enlaces */
.navbar-links {
    display: block;
}

.navbar-links ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
}

.navbar-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-links a:hover {
    color: var(--verde-pavers);
}

/* Botón presupuesto */
.btn-presupuesto {
    background-color: var(--verde-pavers);
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
    margin-left: 20px;
    text-decoration: none;
    font-size: 14px;
}

.btn-presupuesto:hover {
    background-color: #3d8b40;
}

/* Botón hamburguesa (reset del estilo por defecto) */
.navbar-toggle {
    display: none;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: 0;
    padding: 10px 12px;
    margin: 0;
    color: #fff;
    /* ajustá si tu navbar no es oscuro */
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    border-radius: 10px;
}

/* Hover/active sutil */
.navbar-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Foco visible (teclado) */
.navbar-toggle:focus-visible {
    outline: 3px solid var(--verde-pavers);
    outline-offset: 3px;
}


/* =========================
RESPONSIVE
========================= */
@media (max-width: 900px) {
    .navbar-container {
        flex-wrap: wrap;
        justify-content: space-between;
        padding-right: 10px;
        height: auto;
    }

    .navbar-logo-area {
        padding: 0 30px;
        height: 70px;
    }

    .navbar-logo img {
        height: 75px;
    }

    .btn-presupuesto {
        display: none;
    }

    /* ===== Ícono hamburguesa ===== */
    .navbar-toggle {
        display: block;
        font-size: 2rem;
        color: #fff;
        cursor: pointer;
        transition: transform 0.3s ease;
        z-index: 2100;
    }

    /* Animación de ☰ a ✕ */
    .navbar-toggle.active {
        transform: rotate(90deg);
    }

    /* ===== Menú desplegable ===== */
    .navbar-links {
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        transform: translateY(-200%);
        transition: transform 0.4s ease;
        background: rgba(26, 26, 26, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
        text-align: center;
        z-index: 2000;
    }

    .navbar-links ul {
        flex-direction: column;
        gap: 22px;
        padding: 35px 0;
        margin: 0;
    }

    .navbar-links a {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }

    /* Mostrar menú activo */
    .navbar-links.active {
        transform: translateY(0);
    }
}

/* ===== BOTONES ===== */
.btn-primary {
    background-color: var(--verde-pavers);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    /* elimina subrayado si se usa <a> */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
    background-color: #3d8b40;
    /* tono más oscuro del verde-pavers */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* Versión secundaria (borde blanco) */
.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline:hover {
    background: white;
    color: var(--verde-pavers);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}


/* ===== HERO (OPTIMIZADO) ===== */
.hero {
    position: relative;
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(251, 251, 251, 0.92);
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

/* Imagen del hero como <img> (mejor LCP que background) */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Overlay (en lugar de ::before) */
.hero-overlay {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.55) 45%,
            rgba(0, 0, 0, 0.70) 100%);
}

/* Contenido */
.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.hero-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* ===== MOBILE HERO ===== */
@media (max-width: 768px) {
    .hero {
        min-height: 95vh;
        padding: 0 18px;
    }

    .hero-bg img {
        /* Ajuste de encuadre que ya usabas */
        object-position: center 35%;
    }

    .hero-content {
        max-width: 520px;
        padding-top: 40px;
    }

    /* Badge arriba */
    .hero-content::before {
        content: "Fabricación + instalación en Paraguay";
        display: inline-block;
        margin-bottom: 12px;
        padding: 8px 14px;
        border-radius: 999px;
        font-size: 0.82rem;
        background: rgba(0, 0, 0, 0.35);
        border: 1px solid rgba(255, 255, 255, 0.18);
        backdrop-filter: blur(8px);
        font-weight: 600;
        letter-spacing: 0.2px;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.15;
        letter-spacing: -0.3px;
        margin-bottom: 12px;
        text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
    }

    .hero p {
        font-size: 1.02rem;
        line-height: 1.45;
        opacity: 0.95;
        margin-bottom: 18px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }

    .hero-buttons a {
        width: 92%;
        max-width: 360px;
        text-align: center;
    }

    /* Botones cómodos en mobile */
    .btn-primary,
    .btn-outline {
        padding: 14px 18px;
        border-radius: 999px;
    }

    /* Outline más legible SOLO en mobile */
    .btn-outline {
        background: rgba(0, 0, 0, 0.20);
        border-color: rgba(255, 255, 255, 0.65);
    }

    /* Flecha abajo */
    .hero::after {
        content: "↓";
        position: absolute;
        bottom: 26px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.4rem;
        opacity: 0.7;
        animation: heroBounce 1.6s infinite;
        z-index: 3;
        text-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
    }
}

@keyframes heroBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}


/* ===== SECCIONES ===== */
.section {
    padding: 100px 40px;
    text-align: center;
}

.section-dark {
    background-color: var(--gris-oscuro);
    color: white;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 50px;
}

.section,
.card,
.hero-content {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}


.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* ===== PRODUCTOS ===== */
#productos {
    background: #f8f8f8;
    text-align: center;
    padding: 60px 20px;
}

.section-title {
    font-size: 2.2rem;
    color: #222;
    margin: 40px;
}

.productos-grid-masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 🧱 Cada bloque de imagen */
.producto {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    height: 250px;
    /* 👈 fuerza misma altura en todas las filas */
}

/* 📸 Imagen — recortada para mantener el rectángulo perfecto */
.producto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.producto:hover img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

/* 🌟 Overlay restaurado */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.producto:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    color: #fff;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 10px;
}

.catalogo-btn-container {
    text-align: center;
    margin-top: 10px;
}

.btn-outline-catalogo {
    position: relative;
    display: inline-block;
    padding: 12px 32px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gris-pavers, #4A4A4A);
    border: 1.5px solid var(--verde-pavers, #7CB342);
    text-decoration: none;
    background: transparent;
    border-radius: 0;
    /* 👈 bordes rectos */
    transition: all 0.3s ease;
}

.btn-outline-catalogo::before {
    content: "";
    bottom: -1.5px;
    left: -1.5px;
    width: 8px;
    height: 8px;
    background-color: var(--verde-pavers, #7CB342);
    transition: background-color 0.3s ease;
}

.btn-outline-catalogo:hover {
    background-color: var(--verde-pavers, #7CB342);
    color: #fff;
}

.btn-outline-catalogo:hover::before {
    background-color: var(--gris-pavers, #4A4A4A);
}




/* 🧭 Anchos Masonry */
.masonry-5 {
    grid-column: span 5;
}

.masonry-4 {
    grid-column: span 4;
}

.masonry-3 {
    grid-column: span 3;
}

/* 📱 Responsive */
@media (max-width: 992px) {
    .productos-grid-masonry {
        grid-template-columns: repeat(6, 1fr);
    }

    .masonry-5 {
        grid-column: span 6;
    }

    .masonry-4 {
        grid-column: span 3;
    }

    .masonry-3 {
        grid-column: span 3;
    }

    .producto {
        height: 200px;
    }
}

@media (max-width: 600px) {
    .productos-grid-masonry {
        grid-template-columns: 1fr;
    }

    .masonry-5,
    .masonry-4,
    .masonry-3 {
        grid-column: span 1;
    }

    .producto {
        height: 180px;
    }
}


/* ===== PROYECTOS DESTACADOS ===== */
.proyectos-destacados {
    background: #f8f9fa;
}

.proyecto-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proyecto-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.proyecto-item.invertido {
    flex-direction: row-reverse;
}

.proyecto-imagen {
    flex: 1;
    min-width: 50%;
    height: 350px;
    overflow: hidden;
}

.proyecto-imagen img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.proyecto-texto {
    flex: 1;
    padding: 40px 60px;
}

.proyecto-texto h3 {
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 15px;
}

.proyecto-texto p {
    color: #555;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Responsivo */
@media (max-width: 900px) {

    .proyecto-item,
    .proyecto-item.invertido {
        flex-direction: column;
    }

    .proyecto-texto {
        padding: 30px 25px;
        text-align: center;
    }

    .proyecto-imagen {
        height: 250px;
    }
}

/* ===== INSPIRACIÓN ===== */
#inspiracion {
    background-color: #f8f8f8;
    color: var(--gris-oscuro);
    text-align: center;
    padding: 60px 0;
}

/* Contenedor general */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

/* Carrusel */
.carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

/* Tarjeta de inspiración */
.inspiration-card {
    position: relative;
    flex: 0 0 auto;
    width: 280px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inspiration-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

/* Imagen */
.inspiration-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 4px solid var(--color-principal);
}

/* Texto descriptivo */
.inspiration-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    padding: 12px;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.inspiration-card:hover .inspiration-text {
    opacity: 1;
}

/* Botones */
.carousel-container button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    border-radius: 20%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
    font-size: 20px;
    padding: 8px 14px;
}

.carousel-container button.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.carousel-container button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

@media (max-width: 768px) {
    .inspiration-card {
        flex: 0 0 280px;
    }

    .inspiration-img {
        height: 200px;
    }
}

/* ===== BOTÓN CTA PRO ===== */
.btn-cta {
    display: inline-block;
    background: var(--verde-pavers);
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(124, 179, 66, 0.35);
    transition: all 0.3s ease;
}

.btn-cta::after {
    content: " →";
    margin-left: 8px;
    transition: transform 0.25s ease;
}

.btn-cta:hover {
    background: #3d8b40;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(124, 179, 66, 0.45);
}

.btn-cta:hover::after {
    transform: translateX(4px);
}

/* Mobile */
@media (max-width: 900px) {
    .btn-cta {
        display: none;
    }
}


/* ===== TARJETAS ===== */
.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: var(--transicion);
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ===== NUESTROS SERVICIOS ===== */
#servicios {
    position: relative;
    padding: 100px 10%;
    color: #fff;
    background: linear-gradient(to bottom,
            #1a1a1a 0%,
            #1a1a1a 40%,
            #0f1912 70%,
            #6a6969 100%);
    transition: background 0.8s ease;
    overflow: hidden;
}

/* Fondo decorativo con leve brillo verde */
.servicios-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(80, 255, 160, 0.1), transparent 60%);
    z-index: 0;
}

/* Título */
#servicios .section-title {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #fff;
    letter-spacing: 1px;
}

/* Grilla */
.servicios-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Tarjetas */
.servicio-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
}

.servicio-card:hover {
    transform: translateY(-8px);
    background: rgba(30, 60, 40, 0.3);
    box-shadow: 0 10px 35px rgba(0, 255, 120, 0.15);
}

/* Íconos */
.servicio-card i {
    font-size: 2rem;
    color: var(--verde-pavers, #59ff91);
    margin-bottom: 15px;
}

/* Títulos */
.servicio-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

/* Descripción */
.servicio-card p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
}

/* Responsivo */
@media (max-width: 768px) {
    #servicios {
        padding: 70px 8%;
    }

    .servicio-card {
        padding: 30px 20px;
    }
}

/* ===== CTA FINAL ===== */
.cta-final {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    color: #fff;
    padding: 90px 20px;
    text-align: center;
}

.cta-final h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-final p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 35px;
}

@media (max-width: 768px) {
    .cta-final h2 {
        font-size: 1.6rem;
    }

    .cta-final p {
        font-size: 1rem;
    }
}


/* ===== CONTACTO ===== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--verde-pavers);
    box-shadow: 0 0 6px rgba(124, 179, 66, 0.4);
}

/* Texto debajo del botón */
.contact-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
    text-align: center;
    line-height: 1.4;
}

/* Responsivo */
@media (max-width: 600px) {
    .contact-form {
        padding: 20px;
        margin: 20px;
    }
}

/* ===== FOOTER ===== */
footer {
    background: #111;
    border-top: 1px solid rgba(0, 255, 120, 0.1);
    /* Fondo oscuro sólido */
    color: #f5f5f5;
    padding: 60px 10% 25px;
    font-family: 'Poppins', sans-serif;
}

/* Contenedor principal */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

/* Información de contacto */
.footer-info {
    flex: 1 1 50px;
}

.footer-info h4 {
    color: var(--verde-pavers);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info li {
    margin-bottom: 12px;
    color: #d1d1d1;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-info i {
    color: var(--verde-pavers);
    font-size: 1rem;
}

/* Redes sociales */
.footer-redes {
    flex: 1 1 50px;
    display: flex;
    justify-content: flex-end;
}

.footer-redes-inner{
    display: flex;
    flex-direction: column;
    align-items: center; /* CLAVE: centra íconos respecto al texto */
}

.footer-redes h5 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    margin-right: 0;
    gap: 18px;
}

.footer-icons {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    margin-right: 0;
}

.footer-icons a {
    color: #fff;
    font-size: 1.4rem;
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-icons a:hover {
    background: var(--verde-pavers);
    color: #0f0f0f;
    transform: translateY(-3px);
}

/* Copy centrado */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 15px;
}

.footer-bottom p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom span {
    color: var(--verde-pavers);
    font-weight: 600;
}

.footer-bottom small {
    display: block;
    margin-top: 6px;
    font-size: 0.75rem;
    color: #888;
}

.footer-bottom small a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom small a:hover {
    color: var(--verde-pavers);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 800px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-redes {
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    .footer-redes-inner{
    align-items: center;
    }

    .footer-icons {
        justify-content: center;
        margin-right: 0;
    }

    .footer-info {
        margin-bottom: 0;
    }

    .footer-redes h5{
    text-align: center;
    margin-right: 0;
    }

    .footer-info li {
        justify-content: center;
    }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    z-index: 5000;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    text-decoration: none;
    display: flex;
}

.whatsapp-float i {
    line-height: 1;
    display: block;
    font-size: 1.8rem;
    position: relative;
    top: 1px;
    /* micro ajuste visual */
}

/* Visible al hacer scroll */
.whatsapp-float.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.6);
}

/* ===== ANIMACIÓN LATIDO SUAVE (WhatsApp) ===== */
@keyframes whatsappPulse {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.08);
    }

    70% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

/* Aplica el latido SOLO cuando está visible */
.whatsapp-float.visible {
    animation: whatsappPulse 2.2s ease-in-out infinite;
}


/* Mobile */
@media (max-width: 600px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
}


/* ===== GALERÍA EQUIPO (Sobre Nosotros) ===== */
.team-gallery {
    margin-top: 55px;
}

.team-gallery-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 26px;
}

.team-gallery-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--verde-pavers);
    border-radius: 999px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1100px;
    /* 👈 esto lo hace más “premium” */
    margin: 0 auto;
}

.team-photo {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
    transform: translateZ(0);
}

.team-photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .35s ease, filter .35s ease;
}

/* unifica un poquito el look entre fotos */
.team-photo img {
    filter: saturate(0.92) contrast(1.05);
}

.team-photo:hover img {
    transform: scale(1.06);
    filter: saturate(1) contrast(1.08);
}

/* Responsive */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-photo img {
        height: 240px;
    }
}

#nosotros .text-center {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: #444;
}

#nosotros {
    background: linear-gradient(180deg, #ffffff 0%, #f6f8f6 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}


.about-card {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    padding: 45px 40px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .about-card {
        padding: 35px 20px;
    }
}

/* “chips” / pilares */
.about-highlights {
    margin: 28px auto 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(124, 179, 66, 0.10);
    border: 1px solid rgba(124, 179, 66, 0.25);
    color: #2f3a2f;
    font-weight: 600;
    font-size: 0.9rem;
}

.highlight i {
    color: var(--verde-pavers);
    font-size: 1rem;
}

/* CTA mini */
.about-cta {
    text-align: center;
    margin-top: 28px;
}

/* ===== FORM STATUS (bonito) ===== */
.form-status {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.95rem;
    display: none;
}

.form-status.show {
    display: block;
}

.form-status.success {
    background: rgba(124, 179, 66, 0.12);
    border: 1px solid rgba(124, 179, 66, 0.35);
    color: #2f3a2f;
}

.form-status.error {
    background: rgba(220, 53, 69, 0.10);
    border: 1px solid rgba(220, 53, 69, 0.25);
    color: #6a1a1a;
}

/* Solo visible para lectores de pantalla */
.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;
}

/* Contenedor del honeypot */
.hp-wrap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
