* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Header */
header {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-container {
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.logo img {
    width: 240px;
    height: auto;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #00bcd4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tagline {
    font-size: 1.1rem;
    color: #aaa;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0f0f0f 0%, #16213e 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-text p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #FAFAFA;
    color: darkblue;
    padding: 0.2rem 0.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
}

.whatsapp-btn img {
    width: 24px;
    height: auto;
}

.hero-image img {
    width: 100%;
    max-width: 300px;
}

/* Sección Ofertas */
.offers {
    background: #0a0a0a;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.section-title img {
    width: 40px;
    height: auto;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: #1a1a1a;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.5);
}

.video-card video {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.offer-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4444;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: bold;
}

.video-card h3 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.3rem;
}

.price {
    padding: 0 1rem 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #00bcd4;
}

.price span {
    font-size: 0.9rem;
    color: #888;
    font-weight: normal;
}

/* FAQ */
.faq {
    background: #111;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 1rem;
    border-left: 4px solid #00bcd4;
}

.faq-item h3 {
    margin-bottom: 0.8rem;
    color: #00bcd4;
}

.faq-item p {
    color: #bbb;
}

/* Ventajas */
.advantages {
    background: #0a0a0a;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-card {
    text-align: center;
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 1.5rem;
    transition: transform 0.2s;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-card img {
    width: 60px;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    margin-bottom: 0.5rem;
}

.advantage-card p {
    color: #aaa;
}

/* Lugares */
.places {
    background: #111;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.place-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #1a1a1a;
    padding: 0.8rem 1.2rem;
    border-radius: 2rem;
    font-weight: 500;
}

.place-item img {
    width: 24px;
    height: auto;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    text-align: center;
    border-radius: 0;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.whatsapp-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #fafafa;
    color: darkblue;
    padding: 1rem 2rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    transition: transform 0.2s;
}

.whatsapp-btn-large:hover {
    transform: scale(1.05);
}

.whatsapp-btn-large img {
    width: 50px;
}

/* Contador */
.visit-counter {
    text-align: center;
    background: #1a1a1a;
    display: inline-block;
    width: auto;
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    margin: 2rem auto;
}

/* Footer */
footer {
    background: #000;
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid #222;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}