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

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1b1b1b;
    background-color: #f7f7f7;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 16px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
}

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

.logo-text {
    white-space: nowrap;
}

.main-nav {
    display: flex;
    gap: 14px;
    font-size: 0.95rem;
}

.main-nav a {
    padding: 6px 10px;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
    background: #fbe6ea;
    color: #b3002d;
}

.btn-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #ff4b5c, #ff9a3c);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

/* Hero */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: #fff;
    background-image: linear-gradient(120deg, #b3002d 0%, #ff4b5c 40%, #ff9a3c 100%);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/9.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    mix-blend-mode: soft-light;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 55%);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 32px;
    padding: 60px 0 80px;
}

.hero-text h1 {
    font-size: clamp(2.4rem, 4vw, 3.1rem);
    margin: 0 0 10px;
}

.hero-subtitle {
    font-size: 1.05rem;
    margin: 0 0 8px;
    font-weight: 500;
}

.hero-tagline {
    margin: 0 0 20px;
    max-width: 30rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #ffe066;
    color: #7a1b00;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    background: transparent;
}

.hero-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.hero-contact i {
    margin-right: 4px;
}

.hero-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
}

.hero-logo-card img {
    border-radius: 18px;
}

/* Sections */
.section {
    padding: 60px 0;
}

.section-alt {
    background: #ffffff;
}

.section h2 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 10px;
}

.section-intro {
    max-width: 640px;
    margin-bottom: 30px;
}

.two-columns {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.highlight-card {
    background: linear-gradient(145deg, #ffe066, #ff9a3c);
    color: #4a1a00;
    padding: 22px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.highlight-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.highlight-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.highlight-card li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.highlight-card i {
    margin-top: 2px;
}

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.card {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 18px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.card h3 {
    margin-top: 0;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.gallery-item {
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    object-fit: cover;
    height: 170px;
    width: 100%;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 20px;
}

.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
}

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

/* Video */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

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

/* Social */
.social-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 26px;
}

.social-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 18px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.fb-embed-wrapper {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 10px;
}

.social-link {
    font-size: 0.9rem;
}

.ig-placeholder {
    margin-top: 16px;
    padding: 12px;
    border-radius: 12px;
    background: #f8f1ff;
    font-size: 0.9rem;
}

/* Contact */
.contact-list {
    list-style: none;
    padding-left: 0;
    margin: 16px 0 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.contact-list i {
    width: 20px;
}

.contact-form {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.contact-form h3 {
    margin-top: 0;
}

.form-row {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-row label {
    font-size: 0.9rem;
}

.form-row input,
.form-row textarea {
    padding: 9px 10px;
    border-radius: 10px;
    border: 1px solid #d0d0d0;
    font: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #ff4b5c;
    box-shadow: 0 0 0 2px rgba(255, 75, 92, 0.12);
}

.full-width {
    width: 100%;
}

.form-note {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 8px;
}

/* Footer */
.site-footer {
    background: #1b1b1b;
    color: #f5f5f5;
    padding: 18px 0;
    font-size: 0.9rem;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.site-footer a {
    color: #ffe066;
    text-decoration: underline;
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    right: 16px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    z-index: 80;
    font-size: 1.6rem;
}

/* Checklist */
.checklist {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.checklist li::before {
    content: "✔";
    margin-right: 6px;
    color: #0c9f5c;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-media {
        order: -1;
    }

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

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

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

@media (max-width: 720px) {
    .header-inner {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .main-nav {
        display: none;
    }

    .btn-header-cta {
        margin-left: auto;
    }

    .section {
        padding: 48px 0;
    }

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

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

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero {
        min-height: 70vh;
    }

    .hero-content {
        padding-top: 40px;
        padding-bottom: 50px;
    }
}
