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

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #2a1230;
    background-color: #ffffff;
}

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

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

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f0d4e4;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.7rem 0;
}

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

.logo-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.1rem;
    margin: 0;
    color: #c0175e;
    font-weight: 800;
}

.logo-text p {
    margin: 0;
    font-size: 0.8rem;
    color: #7b4765;
}

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

.main-nav a {
    padding: 0.3rem 0.5rem;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s;
}

.main-nav a:hover {
    background: #c0175e;
    color: #fff;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: #c0175e;
}

.hero {
    position: relative;
    color: #ffffff;
    min-height: 430px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: stretch;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(192, 23, 94, 0.86), rgba(30, 14, 60, 0.7));
}

.hero-content {
    position: relative;
    padding: 4rem 0 3.5rem;
    max-width: 620px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero h2 {
    font-size: clamp(2rem, 3.1vw + 1rem, 2.8rem);
    margin: 1rem 0 0.5rem;
}

.hero-text {
    font-size: 1rem;
    max-width: 40rem;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn.primary {
    background: #ffd54f;
    color: #3b1c20;
    border-color: #e1b532;
}

.btn.primary:hover {
    background: #ffe27f;
}

.btn.ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
}

.btn.ghost:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn.full {
    width: 100%;
}

.hero-awards {
    margin-top: 1.2rem;
    font-size: 0.9rem;
    opacity: 0.92;
}

.hero-awards i {
    color: #ffeb3b;
}

.section {
    padding: 3.5rem 0;
}

.section-alt {
    background: #fff6fb;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h3 {
    margin: 0 0 0.5rem;
    font-size: 1.6rem;
    color: #c0175e;
}

.section-header p {
    margin: 0;
    color: #6b4a5d;
}

.grid-2 {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2.5rem;
    align-items: flex-start;
}

.section h3 {
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 0.6rem;
}

.section p {
    line-height: 1.6;
    color: #4a2e3f;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.check-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.4rem;
}

.check-list li::before {
    content: "\f005";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.15rem;
    font-size: 0.7rem;
    color: #c0175e;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    color: #c0175e;
}

.text-link i {
    font-size: 0.8rem;
}

.info-card {
    background: #fff6fb;
    border-radius: 1.2rem;
    padding: 1.5rem 1.7rem;
    border: 1px solid #f5c7df;
    box-shadow: 0 12px 30px rgba(192, 23, 94, 0.08);
    font-size: 0.95rem;
}

.info-card h4 {
    margin: 0.5rem 0 0.2rem;
    color: #c0175e;
}

.info-card p {
    margin: 0.15rem 0;
}

.info-card i {
    color: #c0175e;
    margin-right: 0.4rem;
}

.small-note {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    color: #7b4765;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.9rem;
}

.gallery-item {
    border-radius: 0.9rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    height: 190px;
    width: 100%;
    object-fit: cover;
}

.gallery-item:hover {
    transform: translateY(-4px);
    filter: brightness(1.05);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.gallery-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
    color: #7b4765;
}

.awards-image-wrapper {
    max-width: 480px;
    margin-left: auto;
}

.awards-img {
    border-radius: 1.2rem;
    border: 1px solid #f5c7df;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

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

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

.section-social {
    background: #fef3ff;
}

.fb-wrapper {
    display: flex;
    justify-content: center;
}

.section-contact {
    background: radial-gradient(circle at top left, #ffe6f3, #ffffff 55%);
}

.contact-info p {
    margin: 0.25rem 0;
    font-size: 0.95rem;
}

.contact-info i {
    color: #c0175e;
    margin-right: 0.4rem;
}

.contact-form {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 1.5rem 1.7rem;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.06);
    border: 1px solid #f5c7df;
}

.form-row {
    margin-bottom: 0.9rem;
}

.form-row label {
    display: block;
    font-size: 0.86rem;
    margin-bottom: 0.25rem;
    color: #5a3044;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 0.55rem 0.6rem;
    border-radius: 0.7rem;
    border: 1px solid #e2b7d1;
    font-family: inherit;
    font-size: 0.95rem;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #c0175e;
    box-shadow: 0 0 0 1px rgba(192, 23, 94, 0.12);
}

.form-note {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #7b4765;
}

.main-footer {
    background: #24091b;
    color: #fbe7f3;
    padding: 1.4rem 0 1.1rem;
    font-size: 0.85rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.footer-brand a {
    color: #ffd1ff;
    font-weight: 500;
}

.whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 1.2rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.6rem;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
    z-index: 60;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
}

/* Lightbox */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    z-index: 70;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 92vw;
    max-height: 92vh;
    border-radius: 0.8rem;
}

.lightbox-close {
    position: absolute;
    top: 1.2rem;
    right: 1.3rem;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: #ffffff;
    border-radius: 999px;
    padding: 0.35rem 0.6rem;
    cursor: pointer;
    font-size: 1.1rem;
}

/* Responsive */

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 380px;
    }

    .hero-content {
        padding-top: 3.3rem;
        padding-bottom: 3rem;
    }
}

@media (max-width: 780px) {
    .main-nav {
        position: absolute;
        inset: 100% 0 auto 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.99);
        padding: 0.7rem 1rem 1rem;
        border-bottom: 1px solid #f0d4e4;
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.18s ease, opacity 0.18s ease;
    }

    .main-nav.open {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-toggle {
        display: inline-flex;
    }
}

@media (max-width: 600px) {
    .header-content {
        padding-inline: 0.3rem;
    }

    .hero-content {
        text-align: left;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .gallery-item {
        height: 170px;
    }

    .video-wrapper {
        border-radius: 0.9rem;
    }

    .contact-form {
        padding: 1.2rem 1.3rem;
    }
}
