/* Reset básico para eliminar márgenes y paddings por defecto */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* Estilos generales del cuerpo */
body {
    line-height: 1.6;
    color: #333;
}

/* Menú de Navegación */
.navbar {
    background: #D32F2F;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar-brand a{
    text-decoration: none;
    color: white;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
}

.navbar-brand h1 {
    font-size: 1.5em;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FFE0B2;
}

.nav-link.active {
    color: #FFE0B2;
    border-bottom: 2px solid #FFE0B2;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 2px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background: url('tacos-bg.jpg') no-repeat center/cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.cta {
    background: #D32F2F;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
    margin-right: 10px;
}

.cta:hover {
    background: #B71C1C;
}

.cta.whatsapp {
    background: #25D366;
}

.cta.whatsapp:hover {
    background: #1eba55;
}

.cta.secondary {
    background: #F57C00;
}

.cta.secondary:hover {
    background: #E65100;
}

/* Sección de Anuncios */
.ads {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.ads h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    color: #D32F2F;
}

.ad {
    display: flex;
    align-items: center;
    background: #FFF3E0;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ad.featured {
    background: #FFE0B2;
    border: 2px solid #D32F2F;
}

.ad-image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 20px;
}

.ad-content {
    flex: 1;
}

.ad-content h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #D32F2F;
}

.ad-content p {
    margin-bottom: 10px;
}

/* Sección del Anunciante */
.advertiser {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.advertiser h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    color: #D32F2F;
}

.advertiser-content {
    display: flex;
    align-items: center;
    background: #FFF3E0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.advertiser-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 20px;
}

.advertiser-text {
    flex: 1;
}

.advertiser-text p {
    margin-bottom: 10px;
}

.advertiser-text ul {
    margin-bottom: 10px;
    padding-left: 20px;
}

.advertiser-text a {
    color: black;
    text-decoration: none;
}

.advertiser-text a:hover {
    text-decoration: underline;
}

.advertiser-ctas {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

/* Sección de Testimonios */
.testimonials {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #F5F5F5;
}

.testimonials h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    color: #D32F2F;
}

.testimonial {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial span {
    display: block;
    font-weight: bold;
    color: #D32F2F;
}

/* Sección de Ubicaciones */
.locations {
    padding: 50px 20px;
    text-align: center;
    background: #F5F5F5;
}

.locations h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #D32F2F;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.locations-grid a {
    background: #D32F2F;
    color: white;
    padding: 15px;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background 0.3s ease;
}

.locations-grid a:hover {
    background: #B71C1C;
}

/* Sección de Formulario */
.form-section {
    padding: 50px 20px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #D32F2F;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

form button {
    background: #D32F2F;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

form button:hover {
    background: #B71C1C;
}

/* Sección de Contacto */
.contact-info {
    padding: 50px 20px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #D32F2F;
}

.contact-info p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.contact-info a {
    color: #D32F2F;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Sección de Blog */
.blog {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    color: #D32F2F;
}

.blog-post {
    display: flex;
    align-items: center;
    background: #FFF3E0;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.blog-image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 20px;
}

.blog-content {
    flex: 1;
}

.blog-content h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #D32F2F;
}

.blog-content p {
    margin-bottom: 10px;
}

.blog-content ul {
    margin-bottom: 10px;
    padding-left: 20px;
}

.blog-content a {
    color: #D32F2F;
    text-decoration: none;
}

.blog-content a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #D32F2F;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.footer-section p,
.footer-section ul {
    font-size: 1em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section a {
    color: #FFE0B2;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 0.9em;
}

/* Botón de WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.whatsapp-btn:hover {
    background: #1eba55;
}

.whatsapp-btn img {
    width: 24px;
}

/* Media Queries para Responsividad */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-brand {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #D32F2F;
        padding: 10px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 10px;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.8em;
    }

    .hero p {
        font-size: 1em;
    }

    .hero {
        height: 50vh;
    }

    .ads h2,
    .locations h2,
    .form-section h2,
    .contact-info h2,
    .testimonials h2,
    .blog h2,
    .advertiser h2 {
        font-size: 1.5em;
    }

    .ad,
    .blog-post,
    .advertiser-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .ad-image,
    .blog-image,
    .advertiser-image {
        width: 100%;
        height: 200px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .advertiser-ctas {
        flex-direction: column;
        gap: 10px;
    }

    .testimonial {
        padding: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .cta {
        padding: 8px 16px;
        font-size: 0.9em;
    }

    .whatsapp-btn {
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .ad-image,
    .blog-image,
    .advertiser-image {
        height: 150px;
    }

    .navbar-brand h1 {
        font-size: 1.2em;
    }

    .logo {
        width: 30px;
        height: 30px;
    }
}

/* Sección de Política de Cookies y Privacidad */
.privacy-policy {
    padding: 50px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.policy-content {
    background: #FFF3E0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.policy-content h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #D32F2F;
}

.policy-content p {
    margin-bottom: 15px;
}

.policy-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.policy-content a {
    color: #D32F2F;
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Banner de Cookies */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #FFE0B2;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9em;
}

.cookie-content a {
    color: #D32F2F;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-banner .cta {
    padding: 8px 15px;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
}