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

body {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #222;
    background-color: #f7f7f7;
    line-height: 1.6;
}

/* Navbar */

.main-header {
    position: relative;
    color: #fff;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .brand {
    font-weight: 700;
    font-size: 1rem;
}

.logo-text .tagline {
    font-weight: 400;
    font-size: 0.75rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

/* Hero */

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1.5rem 3rem;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(120deg, rgba(0,0,0,0.65), rgba(0,0,0,0.4)), url('../img/hero_guadalajara.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.05);
}

.hero-content {
    max-width: 700px;
    color: #fff;
    animation: fadeInUp 0.9s ease-out forwards;
    opacity: 0;
}

.hero-content h1 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hero-meta {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Buttons */

.btn {
    display: inline-block;
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    border: 2px solid #ffb74d;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn.primary {
    background: #ffb74d;
    color: #222;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.45);
    background: #ffc766;
}

.btn.ghost {
    background: transparent;
    color: #ffb74d;
}

.btn.ghost:hover {
    background: rgba(255, 183, 77, 0.1);
}

.btn.full {
    width: 100%;
    text-align: center;
}

/* Sections */

.section {
    padding: 4rem 1.5rem;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section h2 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #333;
}

.section h2 span {
    color: #f9a825;
}

.section-subtitle {
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    color: #666;
}

/* About */

.about {
    background: #fff;
}

.about .section-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1rem;
    color: #444;
}

.checklist {
    list-style: none;
    margin-top: 0.5rem;
}

.checklist li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #43a047;
    font-weight: 700;
}

.about-image img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
    object-fit: cover;
}

/* Highlights */

.highlights {
    background: #fafafa;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.card {
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-body {
    padding: 1rem 1.1rem 1.25rem;
}

.card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.card-body p {
    font-size: 0.9rem;
    color: #555;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* Strip */

.strip {
    background: linear-gradient(120deg, #ffb74d, #ff9800);
    color: #222;
    text-align: center;
}

.strip-inner {
    max-width: 800px;
    margin: 0 auto;
}

.strip h2 {
    color: #222;
    margin-bottom: 0.5rem;
}

.strip p {
    color: #333;
}

/* Gallery */

.gallery {
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.gallery-item {
    width: 100%;
    border-radius: 1rem;
    cursor: pointer;
    height: 170px;
    object-fit: cover;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* Lightbox */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 200;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.lightbox-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* Video */

.video {
    background: #fafafa;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Social */

.social {
    background: #fff;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.social-card {
    background: #fafafa;
    border-radius: 1.25rem;
    padding: 1.5rem 1.5rem 1.75rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.social-card h3 {
    margin-bottom: 0.2rem;
}

.social-card p {
    margin-bottom: 0.8rem;
    color: #555;
}

.social-embed {
    margin-bottom: 1rem;
}

.insta-fallback {
    border-radius: 0.75rem;
    border: 1px dashed #ffb74d;
    padding: 0.75rem;
    font-size: 0.9rem;
}

/* Contact */

.contact {
    background: #fafafa;
}

.contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: start;
}

.contact-info p {
    margin-bottom: 1rem;
    color: #444;
}

.contact-list {
    list-style: none;
    font-size: 0.95rem;
}

.contact-list li {
    margin-bottom: 0.4rem;
}

.contact-list a {
    color: #f57c00;
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 14px 35px rgba(0,0,0,0.1);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.6rem 0.7rem;
    border-radius: 0.7rem;
    border: 1px solid #ddd;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ffb74d;
    box-shadow: 0 0 0 2px rgba(255, 183, 77, 0.2);
    background-color: #fffef8;
}

/* Map */

.map {
    background: #fff;
}

.map-wrapper {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.16);
    height: 350px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* WhatsApp float */

.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    text-decoration: none;
    z-index: 150;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.whatsapp-icon {
    font-size: 1.6rem;
}

/* Footer */

.main-footer {
    text-align: center;
    padding: 2rem 1.5rem 2.5rem;
    background: #111;
    color: #eee;
    font-size: 0.85rem;
}

.main-footer a {
    color: #ffb74d;
    text-decoration: none;
}

.main-footer a:hover {
    text-decoration: underline;
}

/* Animations */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */

@media (max-width: 900px) {
    .about .section-inner,
    .highlights .section-inner,
    .contact-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .social-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .navbar {
        padding-inline: 1rem;
    }
}

@media (max-width: 720px) {
    .hero {
        padding-top: 4.5rem;
        min-height: 90vh;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .section {
        padding: 3rem 1.2rem;
    }

    .cards-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .gallery-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-form .form-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .navbar {
        padding-inline: 1rem;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(0,0,0,0.9);
        flex-direction: column;
        width: 220px;
        padding: 0.75rem 1rem 1rem;
        gap: 0.75rem;
        display: none;
    }

    .menu-icon {
        display: block;
    }

    #menu-toggle:checked + .menu-icon + .nav-links {
        display: flex;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
