
:root {
    --color-primary: #f25aa5;
    --color-primary-dark: #d83f87;
    --color-secondary: #ffc93c;
    --color-accent: #2e65c5;
    --color-bg: #fdf6ff;
    --color-bg-alt: #f5f8ff;
    --color-text: #262238;
    --color-text-light: #6a6980;
    --radius-lg: 1.5rem;
    --radius-md: 1rem;
    --radius-pill: 999px;
    --shadow-soft: 0 18px 45px rgba(20, 8, 65, 0.15);
    --shadow-subtle: 0 10px 24px rgba(23, 15, 75, 0.08);
}

/* Global */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-text);
    background: radial-gradient(circle at top left, #ffe3f2 0%, transparent 45%),
                radial-gradient(circle at bottom right, #e4f0ff 0%, transparent 45%),
                #ffffff;
}

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

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

.container {
    width: min(1120px, 100% - 2.5rem);
    margin: 0 auto;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--color-bg-alt);
}

.section h2 {
    font-size: clamp(2rem, 2.4vw, 2.4rem);
    margin: 0 0 1rem;
}

.section-intro {
    margin: 0 0 2.5rem;
    max-width: 700px;
    color: var(--color-text-light);
    font-size: 1.02rem;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

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

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

.logo img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(242, 90, 165, 0.2);
}

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

.logo-title {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--color-accent);
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--color-primary-dark);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.95rem;
}

.main-nav a {
    position: relative;
    padding-bottom: 0.2rem;
    color: var(--color-text-light);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transition: width 0.2s ease-out;
}

.main-nav a:hover {
    color: var(--color-text);
}

.main-nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    padding: 0.4rem;
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-text);
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    border: none;
    cursor: pointer;
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out, color 0.12s ease-out;
    text-align: center;
    white-space: nowrap;
}

.btn i {
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 60px rgba(210, 75, 140, 0.4);
}

.btn-secondary {
    background: #fff;
    color: var(--color-accent);
    border: 1px solid rgba(46, 101, 197, 0.18);
    box-shadow: var(--shadow-subtle);
}

.btn-secondary:hover {
    background: #f4f6ff;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: var(--color-text);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.75);
}

.btn-block {
    width: 100%;
}

.btn-call-header {
    font-size: 0.92rem;
}

/* Hero */

.hero {
    position: relative;
    min-height: min(580px, 90vh);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    filter: brightness(0.68) saturate(1.15);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 50%),
        linear-gradient(135deg, rgba(9, 9, 121, 0.72), rgba(242, 90, 165, 0.55));
    mix-blend-mode: soft-light;
}

.hero-content {
    position: relative;
    color: #fff;
    padding: 6.5rem 0 4.5rem;
    max-width: 650px;
    text-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

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

.hero-lead {
    font-size: 1.1rem;
    margin: 0 0 1.3rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.badge {
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
}

.hero-note {
    font-size: 0.92rem;
    opacity: 0.96;
}

/* Layout helpers */

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.text-block p {
    color: var(--color-text-light);
    font-size: 1.02rem;
}

.icon-list {
    list-style: none;
    padding: 0;
    margin: 1.6rem 0 0;
    display: grid;
    gap: 0.6rem;
}

.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.98rem;
    color: var(--color-text-light);
}

.icon-list i {
    color: var(--color-primary-dark);
    margin-top: 0.15rem;
}

/* Media blocks */

.media-block {
    display: grid;
    gap: 1rem;
}

.photo-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    background: #fff;
}

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

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

.photo-grid-small img {
    border-radius: var(--radius-md);
    height: 132px;
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-subtle);
}

/* Cards */

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

.card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.7rem 1.6rem;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.card h3 {
    margin: 0 0 0.9rem;
    font-size: 1.1rem;
}

.card ul {
    padding-left: 1.1rem;
    margin: 0;
    color: var(--color-text-light);
    font-size: 0.96rem;
}

/* Gallery */

.section-header-with-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: transform 0.25s ease-out;
}

.gallery-item::after {
    content: "\f002";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0.7rem;
    bottom: 0.7rem;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    color: var(--color-primary-dark);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* Video */

.section-video {
    background: radial-gradient(circle at top left, rgba(255, 225, 244, 0.9), transparent 55%),
                radial-gradient(circle at bottom right, rgba(208, 227, 255, 0.9), transparent 55%),
                #ffffff;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

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

/* Testimonials */

.testimonials .testimonial p {
    color: var(--color-text-light);
}

.testimonials .testimonial h3 {
    margin: 0.9rem 0 0.1rem;
    font-size: 1rem;
}

.testimonial-meta {
    font-size: 0.8rem;
    color: #9ca3af;
}

.testimonials-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 2rem;
}

.testimonials-strip img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    height: 120px;
    object-fit: cover;
}

/* Social */

.section-social {
    background: linear-gradient(135deg, rgba(242, 90, 165, 0.06), rgba(46, 101, 197, 0.03));
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border-radius: var(--radius-pill);
    padding: 0.65rem 1.3rem;
    font-size: 0.94rem;
    font-weight: 600;
    box-shadow: var(--shadow-subtle);
}

.social-btn i {
    font-size: 1.05rem;
}

.facebook {
    background: #1877f2;
    color: #fff;
}

.instagram {
    background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    color: #fff;
}

/* Contact */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.contact-list li {
    display: flex;
    gap: 0.6rem;
}

.contact-list i {
    margin-top: 0.1rem;
    color: var(--color-primary-dark);
}

.map-wrapper {
    margin-top: 1.4rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(148, 163, 184, 0.35);
}

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

.contact-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.8rem 1.6rem 1.6rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.contact-form-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.6);
    padding: 0.55rem 0.75rem;
    font-family: inherit;
    font-size: 0.92rem;
    transition: border 0.15s ease-out, box-shadow 0.15s ease-out, background 0.15s ease-out;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary-dark);
    box-shadow: 0 0 0 1px rgba(242, 90, 165, 0.35);
    background: #fff;
}

.form-note {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.5rem;
}

/* WhatsApp float */

.whatsapp-float {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 18px 35px rgba(22, 163, 74, 0.6);
    z-index: 950;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-float:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 22px 45px rgba(22, 163, 74, 0.7);
}

/* Footer */

.site-footer {
    background: #020617;
    color: #e5e7eb;
    padding: 1.4rem 0 1.6rem;
    margin-top: 1rem;
}

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

.footer-madeby a {
    color: #a5b4fc;
}

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

/* Lightbox */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1000;
    padding: 1.5rem;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: min(960px, 100%);
    max-height: 70vh;
    border-radius: 1rem;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.7);
    margin-bottom: 0.75rem;
    background: #020617;
}

.lightbox-caption {
    color: #e5e7eb;
}

.lightbox-close {
    position: absolute;
    top: 1.1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #e5e7eb;
    font-size: 2rem;
    cursor: pointer;
}

/* Animations / scroll reveal */

[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

[data-animate].in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

@media (max-width: 960px) {
    .two-column,
    .contact-grid {
        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));
    }

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

    .hero-content {
        padding-top: 5.5rem;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 0.5rem 0;
    }

    .btn-call-header {
        display: none;
    }

    .main-nav {
        position: fixed;
        inset: 3.4rem 0 auto;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 0.9rem 1.25rem 1.25rem;
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        pointer-events: none;
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
    }

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

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 520px;
    }

    .hero-content {
        padding-top: 4.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .section {
        padding: 3.8rem 0;
    }
}

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

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

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

    .photo-card.large img {
        height: 220px;
    }

    .photo-grid-small img {
        height: 120px;
    }

    .site-footer {
        text-align: center;
    }

    .footer-inner {
        justify-content: center;
    }
}
