:root {
    --primary-color: #1A73E8;
    --secondary-color: #FF6B35;
    --accent-color: #34A853;
    --light-bg: #F8F9FA;
    --dark-text: #202124;
    --footer-bg: #1A1A1A;
    --footer-text: #E0E0E0;
}

/* Header mejorado */
.navbar {
    background: var(--light-bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--dark-text) !important;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 50px;
    margin-right: 10px;
}

.navbar-brand .slogan {
    font-size: 0.9rem;
    color: #666;
    margin-left: 10px;
    font-weight: 400;
    border-left: 1px solid #ddd;
    padding-left: 10px;
}

.nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Sección Hero con degradado mejorado */
.hero-section {
    background: linear-gradient(135deg, rgba(26,115,232,0.08) 0%, rgba(255,107,53,0.05) 100%);
    padding: 100px 0;
}

.hero-image {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
}

.hero-image:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1.2;
}

.hero-title span {
    color: var(--primary-color);
}

/*--------------------------*/
.cta-buttons .btn {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    margin: 5px;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: white !important;
}

.btn-secondary {
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    color: white !important;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Características principales */
.features-section {
    padding: 80px 0;
    background: white;
}

.feature-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 30px;
    margin: 15px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.feature-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Banners publicitarios */
.ads-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.ad-banner {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.ad-banner:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Últimas publicaciones */
.latest-posts {
    padding: 80px 0;
    background: white;
}

.post-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease-in-out;
}

.post-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.post-category {
    color: var(--primary-color);
    font-weight: 600;
}

/* Sección de estadísticas */
.stats-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Footer mejorado */
.main-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 30px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
}

.footer-section h5 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-icons a {
    color: var(--footer-text);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

/* Ajustes para estadísticas en móviles */
@media (max-width: 767.98px) {
    .stats-section .col-md-3 {
        margin-bottom: 1.5rem; /* Espacio entre cuadros */
    }

    .stat-card {
        padding: 20px; /* Reducir el padding en móviles */
    }

    .stat-number {
        font-size: 2rem; /* Reducir el tamaño del número */
    }
}

/*STYLE DEL LA PAGINA COMO FUNCIONA? ----------------------------------*/
.how-it-works {
    background: #f8f9fa;
}

.security-section {
    border-left: 4px solid var(--primary-color);
}

.step-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
}

.user-type-card {
    border: 2px solid transparent;
    border-radius: 0.75rem; /* Añadido para coincidir con rounded-top-3 */
    overflow: hidden; /* Elimina espacios blancos no deseados */
    transition: all 0.3s;
}

.user-type-card .card-header {
    border-radius: 0 !important; /* Anula redondeo de Bootstrap */
}

.user-type-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Nuevos colores para el usuario que postula */
.bg-warning.text-dark {
    background-color: #faec23 !important;
    color: #35310d !important;
}

/* Estilos DE LOS TIPOS DE PLANES! */
.plan-card {
    border-radius: 1.1rem; /* Redondeo general de la tarjeta */
    transition: transform 0.3s;
}

.plan-card .card-header {
    border-radius: 1rem 1rem 0 0; /* Redondeo solo en la parte superior */
    border-bottom: none; /* Elimina el borde inferior */
}

.bg-explorador {
    background-color: #6c757d !important; /* Gris */
}
.bg-verificado {
    background-color: #1a73e8 !important; /* Azul */
}
.bg-premium {
    background-color: #ff6b35 !important; /* Naranja */
}
.btn-outline-explorador {
    border-color: #6c757d;
    color: #6c757d;
}
.btn-outline-explorador:hover {
    background-color: #6c757d;
    color: white;
}

.btn-verificado {
    background-color: #1a73e8;
    color: white;
}
.btn-verificado:hover {
    background-color: #1557b0;
}

.btn-premium {
    background-color: #ff6b35;
    color: white;
}
.btn-premium:hover {
    background-color: #e65a2b;
}

.payment-methods img {
    transition: transform 0.3s;
}

.payment-methods img:hover {
    transform: scale(1.1);
}

/* Estilos teminos.php */
.terms-page {
    background: #f8f9fa;
}

.terms-header {
    margin-bottom: 3rem;
}

.terms-title {
    color: var(--primary-color);
}

.terms-subtitle {
    color: #666;
}

.terms-section {
    margin-bottom: 2.5rem;
}

.terms-section-title {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.terms-list-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.terms-icon {
    color: var(--primary-color);
}

.terms-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

.terms-contact a:hover {
    text-decoration: underline;
}

/* Estilos politica.php */
.privacy-page {
    background: #f8f9fa;
}

.privacy-header {
    margin-bottom: 3rem;
}

.privacy-title {
    color: var(--primary-color);
}

.privacy-subtitle {
    color: #666;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section-title {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.privacy-list-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.privacy-icon {
    color: var(--primary-color);
}

.privacy-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-contact a:hover {
    text-decoration: underline;
}

/* Estilos condiciones.php */
.conditions-page {
    background: #f8f9fa;
}

.conditions-header {
    margin-bottom: 3rem;
}

.conditions-title {
    color: var(--primary-color);
}

.conditions-subtitle {
    color: #666;
}

.conditions-section {
    margin-bottom: 2.5rem;
}

.conditions-section-title {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.conditions-list-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.conditions-icon {
    color: var(--primary-color);
}

.conditions-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

.conditions-contact a:hover {
    text-decoration: underline;
}

/* Estilos faq.php */
.faq-page {
    background: #f8f9fa;
}

.faq-header {
    margin-bottom: 3rem;
}

.faq-title {
    color: var(--primary-color);
}

.faq-subtitle {
    color: #666;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
}

.faq-question {
    font-weight: 500;
    background-color: #fff;
    color: var(--primary-color);
    border: none;
    border-radius: 0.5rem;
}

.faq-question:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
}

.faq-question:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.faq-answer {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0 0 0.5rem 0.5rem;
}