/* --- ESTILO MINIMALISTA BLACK & WHITE --- */
:root {
    --bg-color: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --accent: #ffffff;
    --accent-muted: #e0e0e0;
    --text-white: #ffffff;
    --text-gray: #888888;
    --border-color: #222222;
    --border-light: #333333;
    --font-main: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.7;
    font-weight: 300;
}

h1, h2, h3, h4 {
    font-family: var(--font-main);
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: -0.5px;
}

p {
    color: var(--text-gray);
    font-size: 1rem;
}

strong {
    color: var(--text-white);
    font-weight: 600;
}

/* --- HEADER & NAV --- */
nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 5%;
    background: rgba(10, 10, 10, 0.95);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.logo {
    margin-bottom: 15px;
}

.logo img {
    height: 110px;
    width: 110px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-menu a:hover {
    color: var(--text-white);
}

/* Menú móvil */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    width: 50px;
    height: 50px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--text-gray);
}

.mobile-menu .mobile-cta {
    margin-top: 20px;
    padding: 15px 40px;
    background: var(--text-white);
    color: var(--bg-color);
    border-radius: 30px;
}

.btn-outline {
    border: 1px solid var(--border-light);
    color: var(--text-white);
    padding: 10px 25px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 6px;
    background: transparent;
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--bg-color);
}

.btn-premium {
    border: none;
    background: var(--text-white);
    color: var(--bg-color);
    padding: 10px 25px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 6px;
    cursor: pointer;
}

.btn-premium:hover {
    background: var(--accent-muted);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Botón Hero */
.btn-hero {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 40px;
    background: var(--text-white);
    color: var(--bg-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85)), url('/img/hero-background.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 20px 0;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 700;
}

.hero h1 span {
    color: var(--text-gray);
}

.subtitle {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    margin-bottom: 30px;
    display: block;
    color: var(--text-gray);
    font-weight: 500;
}

.hero-description {
    color: #bbb;
    font-weight: 400;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* --- SECCIONES GENERALES --- */
section {
    padding: 100px 10%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 70px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--text-white);
    margin: 20px auto 0;
}

/* --- LA ESENCIA --- */
.essence-section {
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.intro-text {
    font-size: 1.4rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-weight: 300;
    color: #ccc;
}

.intro-text strong {
    color: var(--text-white);
    font-weight: 600;
}

/* --- OBJETIVOS SECTION --- */
.objectives-section {
    background: #ffffff;
}

.objectives-section .section-title {
    color: #0a0a0a;
}

.objectives-section .section-title::after {
    background: #0a0a0a;
}

.objectives-section .card {
    background: #f5f5f5;
    border-color: #e0e0e0;
}

.objectives-section .card:hover {
    background: #ffffff;
    border-color: #0a0a0a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.objectives-section .card h3 {
    color: #0a0a0a;
}

.objectives-section .card p {
    color: #555;
}

.objectives-section .card-num {
    color: rgba(0, 0, 0, 0.05);
}

/* --- OBJETIVOS (GRID) --- */
.grid-5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.card {
    background: var(--bg-card);
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--border-light);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.card-num {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.card h3 {
    font-size: 1.1rem;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- SPLIT SECTION (MOTIVACIONES) --- */
.split {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.split-img {
    flex: 1;
    min-width: 400px;
    min-height: 600px;
    background: url('/img/transformacion.jpg');
    background-size: cover;
    background-position: center;
}

.split-text {
    flex: 1;
    padding: 100px 8%;
    background: #0c0c0c;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h2 {
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.split-block {
    margin-bottom: 30px;
}

.split-block h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* --- PRICING SECTION --- */
.pricing-section {
    background: linear-gradient(180deg, #f8f8f8 0%, #eeeeee 100%);
}

.pricing-section .section-title {
    color: #0a0a0a;
}

.pricing-section .section-title::after {
    background: #0a0a0a;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #0a0a0a;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #0a0a0a;
    background: #0a0a0a;
}

.pricing-card.featured .pricing-tier,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-description,
.pricing-card.featured .pricing-features li {
    color: #ffffff;
}

.pricing-card.featured .pricing-features li.disabled {
    color: #555;
}

.pricing-card.featured .pricing-features li i {
    color: #ffffff;
}

.pricing-card.featured .pricing-features li.disabled i {
    color: #444;
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: #222;
}

.pricing-card.featured::before {
    content: 'RECOMENDADO';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--text-white);
    color: var(--bg-color);
    padding: 5px 40px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.pricing-tier {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 600;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 10px;
    line-height: 1;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
}

.pricing-description {
    color: #666;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
    flex: 1;
}

/* Scrollbar personalizado */
.pricing-features::-webkit-scrollbar {
    width: 6px;
}

.pricing-features::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.pricing-features::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.pricing-features::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.pricing-card.featured .pricing-features::-webkit-scrollbar-track {
    background: #222;
}

.pricing-card.featured .pricing-features::-webkit-scrollbar-thumb {
    background: #555;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #0a0a0a;
    font-size: 0.7rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.pricing-features li.disabled {
    color: #bbb;
}

.pricing-features li.disabled i {
    color: #ccc;
}

.btn-pricing {
    display: inline-block;
    width: 100%;
    padding: 15px 30px;
    border: 1px solid #0a0a0a;
    background: transparent;
    color: #0a0a0a;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: auto;
}

.btn-pricing:hover {
    background: #0a0a0a;
    color: #ffffff;
}

.pricing-card.featured .btn-pricing {
    background: #ffffff;
    color: #0a0a0a;
    border-color: #ffffff;
}

.pricing-card.featured .btn-pricing:hover {
    background: transparent;
    color: #ffffff;
}


/* --- ACCIONES (LISTA) --- */
.actions-list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
}

.actions-list li {
    padding: 25px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.actions-list li:hover {
    background: var(--bg-card-hover);
    padding-left: 35px;
}

.actions-list li i {
    color: var(--text-white);
    margin-right: 25px;
    font-size: 1.2rem;
    opacity: 0.7;
}

.actions-list li p {
    margin: 0;
    color: #ddd;
    font-weight: 400;
}

/* --- FOOTER --- */

/* --- ALLIES SECTION --- */
.allies-section {
    background: #ffffff;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.section-title-dark {
    color: #0a0a0a !important;
}

.section-title-dark::after {
    background: #0a0a0a !important;
}

.section-subtitle-dark {
    color: #666 !important;
}

/* Carrusel de logos */
.carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
}

.carousel-track {
    display: flex;
    gap: 60px;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.carousel-track img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-container:hover .carousel-track {
    animation-play-state: paused;
}

/* --- RESTAURANTS SECTION --- */
.restaurants-section {
    background: #0d1117;
    padding: 100px 10%;
}

.restaurants-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 50px;
    align-items: center;
    justify-items: center;
}

.restaurant-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 100%;
    height: 120px;
}

.restaurant-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.restaurant-logo img {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.restaurant-logo:hover img {
    transform: scale(1.1);
}

.restaurants-cta {
    text-align: center;
    color: var(--text-gray);
    font-size: 1rem;
}

.restaurants-cta a {
    color: var(--text-white);
    text-decoration: underline;
}

.restaurants-cta a:hover {
    text-decoration: none;
}

/* --- BLOG SECTION --- */
.blog-section {
    background: #0a0a0a;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-top: -50px;
    margin-bottom: 60px;
    font-size: 1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.blog-card.blog-featured {
    grid-row: span 2;
}

.blog-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card.blog-featured .blog-image {
    height: 280px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffffff;
    color: #0a0a0a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    padding: 25px;
}

.blog-card.blog-featured .blog-content {
    padding: 30px;
}

.blog-date {
    color: var(--text-gray);
    font-size: 0.8rem;
    display: block;
    margin-bottom: 12px;
}

.blog-date i {
    margin-right: 6px;
}

.blog-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--text-white);
}

.blog-card.blog-featured h3 {
    font-size: 1.4rem;
}

.blog-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-read-more {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.blog-card:hover .blog-read-more {
    gap: 12px;
}

.blog-cta {
    text-align: center;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-light);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: var(--text-white);
    color: var(--bg-color);
}

/* --- BLOG PAGE --- */
.blog-header {
    padding: 200px 20px 80px;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.blog-header h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
}

.blog-header p {
    color: #888;
    font-size: 1.1rem;
}

.blog-page-section {
    padding: 60px 10%;
    background: #0a0a0a;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: transparent;
    border: 1px solid #333;
    color: #888;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #fff;
    color: #0a0a0a;
    border-color: #fff;
}

.blog-grid-page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .blog-header {
        padding: 150px 20px 60px;
    }
    
    .blog-header h1 {
        font-size: 2rem;
    }
    
    .blog-grid-page {
        grid-template-columns: 1fr;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
}

/* --- FOOTER --- */
footer {
    background: #050505;
    padding: 80px 10% 40px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: left;
}

.footer-contact h3,
.footer-links h3 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact p {
    color: var(--text-gray);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-contact i {
    margin-right: 10px;
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--text-white);
    color: var(--bg-color);
    border-color: var(--text-white);
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    text-align: center;
}

.footer-created-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-created-by span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.asobares-logo {
    height: 50px;
    width: auto;
}

.footer-copy {
    font-size: 0.85rem;
    color: #444;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    nav {
        padding: 15px 5%;
    }
    
    .logo {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero {
        padding-top: 140px;
    }
    
    .btn-hero {
        padding: 15px 30px;
        font-size: 0.85rem;
    }
    
    .logo img {
        height: 60px;
        width: 60px;
    }
    
    section {
        padding: 60px 5%;
    }
    
    .section-subtitle {
        margin-top: -40px;
        margin-bottom: 40px;
    }
    
    .split-img {
        min-width: 100%;
        min-height: 300px;
    }
    
    .allies-section {
        padding: 60px 5%;
    }
    
    .restaurants-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 30px 25px;
    }
    
    .pricing-features {
        max-height: 300px;
    }
    
    .pricing-price {
        font-size: 1.8rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card.blog-featured {
        grid-row: auto;
    }
    
    .blog-card.blog-featured .blog-image {
        height: 200px;
    }
    
    .blog-card.blog-featured h3 {
        font-size: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        align-items: center;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .nav-menu a {
        font-size: 0.8rem;
    }
}
