﻿/* Fondo suave tipo verde claro */
.header-soft {
    background: linear-gradient(135deg, #e3efe9, #ddeee7);
}

/* Links del menú */
.header-link {
    color: #315a47;
    font-weight: 500;
    letter-spacing: .2px;
}

    .header-link:hover {
        color: #1b3c2f;
    }

/* Botón “Prueba gratis” */
.header-cta {
    border-radius: 12px;
    background-color: #2f7a52 !important;
    color: #fff !important;
}

    .header-cta:hover {
        background-color: #276846 !important;
    }

/* Ajuste del nav centrado */
.navbar-nav .nav-link {
    padding: 0.5rem 0 !important;
}

/* Mobile spacing */
@media (max-width: 992px) {
    .navbar-nav {
        margin-top: 1rem;
    }
}


:root {
    --bs-primary: #327554;
    --bs-primary-rgb: 50,117,84;
}

/* Fondo y tipografía del footer */
.footer-dark {
    background-color: #11362b; /* verde oscuro */
    color: rgba(255,255,255,.85);
}

/* Enlaces del footer */
.footer-link {
    color: rgba(255,255,255,.7);
    text-decoration: none;
}

    .footer-link:hover {
        color: #fff;
        text-decoration: underline;
    }

/* Botones sociales (sutiles) */
.footer-dark .btn i {
    font-size: 1.1rem;
    line-height: 1;
}

.footer-dark .btn:hover {
    background-color: rgba(255,255,255,.18) !important;
}




/* Fondo con gradiente y textura suave */
.bg-gradient-hero {
    background: radial-gradient(900px 400px at 80% 20%, rgba(255,255,255,.08), transparent), linear-gradient(135deg, #2b6b4d 0%, #3b8b69 100%);
    /* Ajuste de tonalidad hacia el primario */
    background-color: #327554;
}

/* Subrayado decorativo del título */
.hero-underline {
    position: relative;
    height: .5rem;
    margin-top: .35rem;
}

    .hero-underline::after {
        content: "";
        display: block;
        height: .5rem;
        width: 55%;
        border-radius: 999px;
        background: rgba(255,255,255,.35);
    }
