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

body {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top, #1f2937 0, #020617 55%, #000000 100%);
    color: #e5e7eb;
    line-height: 1.6;
}

/* Hero */

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3rem;
    padding: 1.5rem 7vw 4rem;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 10%, rgba(248, 250, 252, 0.15), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(251, 191, 36, 0.18), transparent 55%),
        radial-gradient(circle at 20% 80%, rgba(244, 63, 94, 0.15), transparent 55%);
    opacity: 0.8;
    pointer-events: none;
    z-index: -2;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.6));
    z-index: -1;
}

/* Navbar */

.navbar {
    position: sticky;
    top: 0.75rem;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
    margin-bottom: 2.5rem;
}

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

.logo-area img {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid #fde047;
}

.logo-area span {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #f9fafb;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.1rem;
    font-size: 0.85rem;
}

.nav-links a {
    color: #cbd5f5;
    text-decoration: none;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    transition: all 0.25s ease;
}

.nav-links a:hover {
    color: #0f172a;
    background: #facc15;
}

.btn-call-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f97316, #facc15);
    color: #0f172a;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(248, 181, 0, 0.55);
}

/* Hero content */

.hero-content {
    align-self: center;
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(252, 211, 77, 0.7);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    background: rgba(15, 23, 42, 0.7);
}

.hero-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #facc15;
    box-shadow: 0 0 0 6px rgba(250, 204, 21, 0.25);
}

.hero h1 {
    font-size: clamp(2.2rem, 3.2vw + 1.5rem, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #f9fafb;
}

.hero h1 span {
    background: linear-gradient(120deg, #f97316, #facc15, #f9a8d4);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-text {
    font-size: 0.97rem;
    color: #e5e7eb;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #f97316, #facc15);
    color: #0f172a;
    box-shadow: 0 16px 40px rgba(234, 179, 8, 0.45);
}

.btn-primary:hover {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 20px 45px rgba(234, 179, 8, 0.6);
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.7);
    color: #e5e7eb;
    border-color: rgba(148, 163, 184, 0.6);
}

.btn-secondary:hover {
    background: rgba(31, 41, 55, 0.95);
}

.full-width {
    width: 100%;
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: #cbd5f5;
}

.hero-info span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Hero image */

.hero-image {
    position: relative;
    align-self: center;
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: 8% 8% auto auto;
    border-radius: 999px;
    background: radial-gradient(circle at 20% 0%, rgba(248, 250, 252, 0.32), transparent 55%);
    z-index: -1;
}

.hero-image img {
    width: 100%;
    border-radius: 32px;
    border: 2px solid rgba(252, 211, 77, 0.7);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85);
    object-fit: cover;
}

/* General sections */

.section {
    padding: 4rem 7vw;
}

.section-title {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.section-title h2 {
    font-size: clamp(1.6rem, 2.1vw + 1rem, 2.2rem);
    margin-bottom: 0.8rem;
}

.section-title h2 span {
    background: linear-gradient(135deg, #f97316, #facc15);
    -webkit-background-clip: text;
    color: transparent;
}

.section-title p {
    color: #cbd5f5;
    font-size: 0.95rem;
}

/* Services */

.services {
    background: radial-gradient(circle at top, rgba(15, 118, 110, 0.35), rgba(15, 23, 42, 0.98));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 24px;
    padding: 1.4rem 1.4rem 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
}

.service-card i {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
    color: #fbbf24;
}

.service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

/* Bodas */

.bodas {
    background: linear-gradient(160deg, #020617, #0f172a 45%, #022c22 100%);
}

.bodas-content {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: 2.8rem;
    align-items: start;
}

.bodas-text h2 {
    font-size: clamp(1.7rem, 2.3vw + 1rem, 2.3rem);
    margin-bottom: 0.8rem;
}

.bodas-text h2 span {
    background: linear-gradient(135deg, #f97316, #facc15);
    -webkit-background-clip: text;
    color: transparent;
}

.bodas-text p {
    color: #e5e7eb;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.highlight-list {
    list-style: none;
    margin-bottom: 1.3rem;
}

.highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: #e5e7eb;
    margin-bottom: 0.4rem;
}

.highlight-list i {
    color: #facc15;
    margin-top: 0.1rem;
}

.bodas-side {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.bodas-tag {
    padding: 1rem 1.1rem;
    border-radius: 20px;
    border: 1px dashed rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.85);
}

.bodas-tag span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #facc15;
    font-weight: 600;
}

.bodas-tag p {
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.bodas-detail {
    padding: 1rem 1.2rem;
    border-radius: 22px;
    background: radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.15), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.5);
    font-size: 0.9rem;
}

/* Gallery */

.gallery {
    background: radial-gradient(circle at top, rgba(59, 130, 246, 0.28), #020617 55%, #000000 100%);
}

.gallery-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
}

.gallery-item {
    width: 100%;
    display: block;
    border-radius: 16px;
    object-fit: cover;
    height: 160px;
    cursor: pointer;
    border: 1px solid rgba(148, 163, 184, 0.6);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.9);
    border-color: #facc15;
}

.gallery-note {
    text-align: center;
    margin-top: 0.8rem;
    font-size: 0.85rem;
    color: #cbd5f5;
}

/* Video */

.video-section {
    background: #020617;
}

.video-wrapper {
    max-width: 960px;
    margin: 0 auto;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.9);
}

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

/* Redes */

.redes {
    background: radial-gradient(circle at top, rgba(52, 211, 153, 0.25), #020617 70%);
}

.redes-grid {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.red-card {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 24px;
    padding: 1.4rem 1.5rem 1.6rem;
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
}

.red-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.red-card h3 i {
    color: #60a5fa;
}

.red-card p {
    font-size: 0.9rem;
    margin-bottom: 0.9rem;
    color: #e5e7eb;
}

.fb-embed {
    margin-bottom: 0.8rem;
}

.ig-placeholder {
    border-radius: 18px;
    border: 1px dashed rgba(148, 163, 184, 0.8);
    padding: 1rem;
    text-align: center;
    background: radial-gradient(circle at top, rgba(236, 72, 153, 0.2), rgba(15, 23, 42, 0.95));
}

.ig-placeholder i {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
    background: radial-gradient(circle at 30% 0, #f97316, #f43f5e, #a855f7);
    -webkit-background-clip: text;
    color: transparent;
}

/* Contact */

.contact {
    background: #020617;
}

.contact-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 2rem;
}

.contact-info h3,
.contact-form-card h3 {
    margin-bottom: 0.8rem;
}

.contact-info ul {
    list-style: none;
    margin-bottom: 1rem;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.contact-info a {
    color: #e5e7eb;
    text-decoration: none;
}

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

.location-note {
    font-size: 0.9rem;
    color: #cbd5f5;
    margin-bottom: 0.7rem;
}

.contact-form-card {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 24px;
    padding: 1.5rem 1.6rem 1.6rem;
    border: 1px solid rgba(148, 163, 184, 0.7);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.98);
}

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

label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    color: #cbd5f5;
}

input,
textarea {
    width: 100%;
    padding: 0.6rem 0.7rem;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.9);
    color: #f9fafb;
    font-size: 0.9rem;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.6);
}

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

/* Footer */

.footer {
    padding: 1.5rem 7vw 2rem;
    background: #020617;
    border-top: 1px solid rgba(31, 41, 55, 1);
}

.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

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

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

/* Lightbox */

.lightbox {
    display: none;
    position: fixed;
    z-index: 60;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    border: 1px solid rgba(248, 250, 252, 0.5);
}

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

/* WhatsApp floating */

.whatsapp-float {
    position: fixed;
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 18px 40px rgba(22, 163, 74, 0.7);
    z-index: 55;
}

/* Responsive */

@media (max-width: 960px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
        padding-top: 1.2rem;
    }

    .hero-image {
        order: -1;
        max-width: 520px;
        margin: 0 auto;
    }

    .navbar {
        position: static;
        border-radius: 18px;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .nav-links {
        display: none;
    }

    .section {
        padding-inline: 6vw;
    }

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

@media (max-width: 640px) {
    .hero {
        padding-inline: 5vw;
        gap: 1.8rem;
    }

    .hero-image img {
        border-radius: 20px;
    }

    .footer-inner {
        flex-direction: column;
    }
}
