/* Tipografía moderna y elegante */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f7fa;
    color: #2c3e50;
    font-size: 16px;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: #2c3e50 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.navbar-brand img {
    height: 45px;
    margin-right: 10px;
    border-radius: 10px;
}

.nav-link {
    font-weight: 500;
    color: #ffffff !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8cbf88 !important;
}

/* HERO Section */
.hero-section {
    background-color: #52616b; /* Azul grisáceo profesional */
    color: #ffffff;
    padding: 120px 0;
    text-align: center;
    
}
.hero-section h1,
.hero-section p {
    color: #ffffff !important;
}



.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-section p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    color: #f8f9fa;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Secciones generales */
.section-spacing {
    padding: 70px 0;
}

/* Tarjetas */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    background-color: #ffffff;
}

.card:hover {
    transform: translateY(-8px);
}

.card-title {
    font-weight: 600;
    font-size: 1.4rem;
    color: #2c3e50;
}

/* Planes */
.card-plan .card-header {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 15px 15px 0 0;
}

.card-plan .bg-esencial {
    background-color: #8cbf88;
}

.card-plan .bg-premium {
    background-color: #a690d9;
}

.card-plan .bg-vip {
    background-color: #6486c5;
}

.card-plan .card-body ul {
    list-style: none;
    padding: 0;
}

.card-plan .card-body ul li {
    padding: 10px 0;
    border-bottom: 1px dashed #ccc;
    color: #555;
}

.card-plan .card-body ul li:last-child {
    border-bottom: none;
}

/* Botones */
.btn-plan {
    background-color: #2c3e50;
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 10px 25px;
    border-radius: 50px;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-plan:hover {
    background-color: #1f2c3b;
}

.btn-lg {
    background-color: #2c3e50;
    color: white;
    border: none;
    transition: 0.3s ease;
}

.btn-lg:hover {
    background-color: #1f2c3b;
}

/* Íconos */
.icon-feature {
    font-size: 3rem;
    color: #8cbf88;
    margin-bottom: 15px;
}

/* Inputs */
input, textarea {
    border-radius: 8px !important;
    border: 1px solid #ccc !important;
    font-size: 1rem;
    padding: 10px;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin: 0;
}

.social-icons a {
    color: white;
    font-size: 1.3rem;
    transition: 0.3s ease;
}

.social-icons a:hover {
    color: #8cbf88;
}
/* NAVBAR MODERNO */
/* NAVBAR MODERNO */
.navbar {
    background-color: #2C3E50 !important;  /* Azul corporativo oscuro */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar-brand img {
    height: 45px;
    margin-right: 10px;
    border-radius: 50%;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff !important;
}

.nav-link {
    font-weight: 500;
    color: #ecf0f1 !important;
    margin-right: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: "";
    display: block;
    height: 2px;
    width: 0;
    background: #8cbf88;
    transition: 0.4s ease;
    position: absolute;
    bottom: 0;
    left: 0;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #8cbf88 !important;
}

/* BOTÓN DE INICIAR SESIÓN */
.navbar .btn {
    background-color: #8cbf88;
    color: white;
    font-weight: 600;
    border-radius: 20px;
    padding: 6px 16px;
    transition: 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: none;
}

.navbar .btn:hover {
    background-color: #6da66d;
    color: white;
}
body {
    padding-top: 80px;
}
