/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --z2-green: #CBEF1A; /* Color verde lima extraído del diseño */
    --z2-black: #111111;
    --z2-dark-gray: #333333;
    --z2-light-gray: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--z2-black);
    overflow-x: hidden;
}

/* Tipografía y Utilidades */
h1, h2, h3, h4, h5 {
    font-weight: 700;
}

.text-z2-green {
    color: #9EC40C; /* Un tono un poco más oscuro para texto sobre blanco para legibilidad */
}

.bg-z2-green {
    background-color: var(--z2-green) !important;
}

.highlight {
    color: #9EC40C;
}

/* Botones */
.btn-z2-primary {
    background-color: var(--z2-green);
    color: var(--z2-black);
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
}

.btn-z2-primary:hover {
    background-color: #b5d615;
    transform: translateY(-2px);
}

.btn-z2-dark {
    background-color: var(--z2-black);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 25px;
}

.btn-z2-dark:hover {
    background-color: #333;
    color: var(--z2-green);
}

/* Navbar */
.navbar {
    background-color: #fff;
    padding: 15px 0;
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    color: var(--z2-black) !important;
    font-weight: 500;
    margin: 0 10px;
}

.nav-link.active {
    font-weight: 700;
    border-bottom: 3px solid var(--z2-green);
}

/* Hero Sections Generales */
.hero-section {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Icon Cards */
.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--z2-green);
    margin-bottom: 20px;
}

/* Listas con check verde */
.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #9EC40C;
    font-weight: bold;
}

/* Tablas de Precio */
.pricing-card {
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px;
    background: #fff;
}

.pricing-card.premium {
    border: 2px solid var(--z2-green);
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.pricing-header {
    background: var(--z2-green);
    padding: 10px;
    text-align: center;
    font-weight: bold;
    margin: -30px -30px 20px -30px;
    border-radius: 13px 13px 0 0;
}

/* Footer Banner */
.footer-cta {
    background: #f4f4f4;
    padding: 60px 0;
    margin-top: 50px;
}