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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(145deg, #f9eafa 0%, #e7c7eb 48%, #cfa4da 100%);
    min-height: 100vh;
    color: #49285d;
    overflow-x: hidden;
}

.encontro-main {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.floral-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.9;
    background-image:
        radial-gradient(circle at 7% 14%, rgba(127, 43, 157, 0.45) 0 20px, transparent 21px),
        radial-gradient(ellipse at 2% 18%, rgba(186, 58, 165, 0.38) 0 42px, transparent 43px),
        radial-gradient(ellipse at 12% 7%, rgba(102, 31, 130, 0.4) 0 54px, transparent 55px),
        radial-gradient(circle at 94% 82%, rgba(180, 42, 142, 0.3) 0 26px, transparent 27px),
        radial-gradient(ellipse at 100% 88%, rgba(127, 43, 157, 0.36) 0 64px, transparent 65px);
    background-repeat: no-repeat;
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 44px;
    padding: 42px 20px 92px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 15%, rgba(237, 116, 205, 0.25), transparent 28%),
        radial-gradient(circle at 88% 88%, rgba(178, 110, 224, 0.32), transparent 30%),
        linear-gradient(135deg, #290f38 0%, #5f1e70 52%, #963989 100%);
    border-radius: 0 0 72px 72px;
    box-shadow: 0 24px 54px rgba(79, 30, 95, 0.24);
    transition: box-shadow 0.35s, filter 0.35s;
}

.hero:hover {
    filter: saturate(1.08);
    box-shadow: 0 28px 62px rgba(79,30,95,0.32);
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 50%;
}

.hero::before { top: -112px; left: -72px; }
.hero::after { right: -78px; bottom: -132px; }

.hero-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.logo-mb {
    height: 154px;
    width: auto;
    opacity: 1;
    filter: drop-shadow(0 10px 18px rgba(25, 5, 32, 0.3));
}

.hero-flower {
    position: absolute;
    width: 430px;
    height: 430px;
    opacity: 0.92;
    background-image: url('../images/flores-roxas-web.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    filter: drop-shadow(0 18px 24px rgba(28, 7, 34, 0.22));
}

.hero-flower-left {
    top: -46px;
    left: -180px;
}

.hero-flower-right {
    right: -198px;
    bottom: -82px;
    transform: rotate(180deg) scale(0.86);
}

/* Welcome */
.welcome {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 10px auto 80px;
    padding: 52px 48px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,0.82), rgba(250,235,250,0.66));
    border: 1px solid rgba(147,63,170,0.2);
    border-radius: 30px;
    box-shadow: 0 18px 46px rgba(91,45,113,0.08);
    transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}

.welcome:hover {
    transform: translateY(-6px);
    border-color: rgba(147,63,170,0.38);
    box-shadow: 0 24px 54px rgba(91,45,113,0.16);
}

.welcome::before {
    content: '“';
    position: absolute;
    top: -42px;
    left: 24px;
    color: rgba(161, 57, 159, 0.15);
    font-family: 'Playfair Display', serif;
    font-size: 190px;
    line-height: 1;
}

.section-kicker {
    display: block;
    margin-bottom: 14px;
    color: #a32f91;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.welcome h2,
.section-heading h2 {
    color: #542060;
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    line-height: 1.15;
}

.welcome p,
.section-heading p {
    color: rgba(73,40,93,0.76);
    font-size: 16px;
    line-height: 1.8;
}

.welcome p {
    margin-top: 18px;
}

/* Hotel */
.hotel {
    position: relative;
    z-index: 1;
    margin: 0 -20px;
    padding: 64px 20px 76px;
    background: linear-gradient(145deg, rgba(70,21,82,0.96), rgba(122,38,127,0.94));
    border-radius: 54px;
    transition: box-shadow 0.35s, transform 0.35s;
}

.hotel:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 54px rgba(70,21,82,0.22);
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 30px;
    text-align: center;
}

.section-heading p {
    margin-top: 14px;
}

.hotel .section-kicker {
    color: #f1b4e5;
}

.hotel .section-heading h2 {
    color: #fff;
}

.hotel .section-heading p {
    color: rgba(255,255,255,0.76);
}

.hotel-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hotel-photo {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 5px solid rgba(255,255,255,0.8);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(91,45,113,0.14);
}

.hotel-photo::after {
    content: '+';
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #fff;
    font-size: 25px;
    font-weight: 300;
    line-height: 1;
    background: rgba(73, 22, 89, 0.76);
    border: 1px solid rgba(255,255,255,0.46);
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(42, 12, 52, 0.22);
}

.hotel-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.hotel-photo {
    cursor: zoom-in;
}

.hotel-photo:hover img {
    transform: scale(1.04);
}

.hotel-photo figcaption {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 12px 16px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(90deg, rgba(74,27,91,0.88), rgba(155,45,141,0.82));
    border-radius: 14px;
}

.hero-badge {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 68px;
    font-weight: 900;
    background: linear-gradient(135deg, #fff, #f1b7ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -2px;
    text-shadow: none;
    position: relative;
}

.hero-heading {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 8px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.72);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero-theme {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.theme-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: rgba(255,255,255,0.62);
    font-weight: 300;
}

.theme-name {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, #f3b9ea 48%, #df83d2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Info Cards */
.info {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 0 60px;
}

.info-card {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(126,60,160,0.14);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, #6c2b88, #bd3aa6, #9a4bd0);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 46px rgba(91,45,113,0.14);
    border-color: rgba(126,60,160,0.3);
}

.info-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(187,58,166,0.2), rgba(137,62,188,0.16));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a32f91;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 10px;
    color: #61216c;
}

.info-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(73,40,93,0.76);
}

.valor {
    font-family: 'Playfair Display', serif;
    font-size: 28px !important;
    font-weight: 700;
    color: #a32f91 !important;
}

.payment-note {
    margin-top: 4px;
    color: #8e3aa6 !important;
    font-size: 12px !important;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* CTA Section */
.cta {
    position: relative;
    z-index: 1;
    text-align: center;
    overflow: hidden;
    padding: 68px 28px;
    margin: 36px -20px 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(224,129,209,0.3), transparent 28%),
        linear-gradient(135deg, rgba(91,33,104,0.96), rgba(139,49,145,0.92));
    border-radius: 30px;
    border: 1px solid rgba(126,60,160,0.16);
    transition: box-shadow 0.35s, transform 0.35s;
}

.cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 54px rgba(70,21,82,0.24);
}

.photo-modal {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    padding: 28px;
    background: rgba(35, 10, 45, 0.9);
}

.photo-modal.is-open {
    display: flex;
}

.photo-modal img {
    max-width: min(1100px, 94vw);
    max-height: 78vh;
    object-fit: contain;
    border: 5px solid rgba(255,255,255,0.86);
    border-radius: 20px;
    box-shadow: 0 22px 64px rgba(0,0,0,0.36);
}

.photo-modal p {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
}

.photo-modal-counter {
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    letter-spacing: 3px;
}

.photo-modal-nav {
    position: absolute;
    top: 50%;
    width: 54px;
    height: 54px;
    color: #fff;
    font-size: 30px;
    background: rgba(148,47,137,0.78);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(-50%);
}

.photo-modal-prev {
    left: 22px;
}

.photo-modal-next {
    right: 22px;
}

.photo-modal-nav:hover {
    background: rgba(192,65,167,0.92);
}

.photo-modal-close {
    position: absolute;
    top: 20px;
    right: 28px;
    color: #fff;
    font-size: 46px;
    line-height: 1;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.cta-kicker {
    display: block;
    margin-bottom: 10px;
    color: #f0b9e9;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 12px;
    color: #fff;
}

.cta-text {
    max-width: 660px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.76);
    font-size: 15px;
    line-height: 1.7;
}

.contacts {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-name {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.64);
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 236px;
    padding: 13px 18px;
    color: #633073;
    text-decoration: none;
    text-align: left;
    background: #fff;
    border: 1px solid rgba(255,255,255,0.56);
    border-radius: 16px;
    box-shadow: 0 12px 26px rgba(43,11,50,0.18);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-phone:hover {
    color: #633073;
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(43,11,50,0.24);
}

.contact-phone strong {
    font-size: 16px;
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    background: #25d366;
    border-radius: 50%;
}

.whatsapp-icon svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

.site-footer {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    width: 100vw;
    margin: 52px 0 0 50%;
    overflow: hidden;
    padding: 24px 52px;
    color: rgba(255,255,255,0.86);
    background: linear-gradient(90deg, #7d319a, #a43bc4 62%, #87309f);
    border-radius: 0;
    box-shadow: 0 18px 44px rgba(81,26,97,0.22);
    text-align: center;
    transform: translateX(-50%);
    transition: box-shadow 0.35s, filter 0.35s;
}

.site-footer:hover {
    filter: saturate(1.1);
    box-shadow: 0 22px 54px rgba(81,26,97,0.3);
}

.site-footer::after {
    content: '';
    position: absolute;
    right: -74px;
    bottom: -78px;
    width: 270px;
    height: 270px;
    opacity: 0.34;
    background-image: url('../images/flores-roxas-web.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(180deg);
}

.site-footer::before {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -78px;
    width: 270px;
    height: 270px;
    opacity: 0.34;
    background-image: url('../images/flores-roxas-web.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.footer-logo {
    position: relative;
    z-index: 1;
    width: 104px;
    height: 104px;
    object-fit: contain;
}

.site-footer strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
}

.site-footer p,
.site-footer a {
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    line-height: 1.7;
    text-decoration: none;
}

.site-footer a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 40px; }
    .theme-name { font-size: 48px; }
    .hero-badge { font-size: 72px; }
}

@media (max-width: 768px) {
    .info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero { padding: 34px 15px 54px; border-radius: 0 0 42px 42px; }
    .hero-title { font-size: 30px; }
    .theme-name { font-size: 40px; letter-spacing: 2px; }
    .hero-badge { font-size: 46px; }
    .hero-heading { gap: 10px; }
    .hero-logos { gap: 25px; }
    .logo-mb { height: 126px; }
    .contacts { gap: 30px; }
    .cta h2 { font-size: 28px; }
    .welcome { margin-bottom: 60px; padding: 36px 24px; }
    .welcome h2, .section-heading h2 { font-size: 30px; }
    .hotel-gallery { grid-template-columns: 1fr; }
    .site-footer {
        flex-direction: column;
        padding: 34px 76px;
        text-align: center;
    }
    .site-footer::before,
    .site-footer::after {
        bottom: -42px;
        width: 150px;
        height: 150px;
        opacity: 0.44;
    }
    .site-footer::before { left: -70px; }
    .site-footer::after { right: -70px; }
    .footer-logo { width: 92px; height: 92px; }
    .site-footer strong { font-size: 19px; }
    .site-footer p, .site-footer a { font-size: 12px; }
    .hero-flower { width: 180px; height: 180px; opacity: 0.64; }
    .hero-flower-left { top: -20px; left: -112px; }
    .hero-flower-right { right: -116px; bottom: -34px; }
    .photo-modal-nav { width: 44px; height: 44px; font-size: 24px; }
    .photo-modal-prev { left: 10px; }
    .photo-modal-next { right: 10px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 24px; }
    .theme-name { font-size: 32px; }
    .hero-badge { font-size: 38px; }
    .hero-subtitle { font-size: 12px; letter-spacing: 2px; }
    .encontro-main { padding: 0 15px; }
    .info-card { padding: 25px 20px; }
    .hotel { margin-right: -15px; margin-left: -15px; }
    .cta { margin-right: -15px; margin-left: -15px; }
    .site-footer {
        padding: 32px 58px;
    }
    .site-footer::before,
    .site-footer::after {
        width: 126px;
        height: 126px;
        opacity: 0.4;
    }
    .site-footer::before { left: -62px; }
    .site-footer::after { right: -62px; }
    .hero-flower { width: 146px; height: 146px; opacity: 0.56; }
    .hero-flower-left { top: 4px; left: -96px; }
    .hero-flower-right { right: -98px; bottom: -22px; }
}

@media (prefers-reduced-motion: reduce) {
    .hero,
    .welcome,
    .hotel,
    .info-card,
    .hotel-photo img,
    .cta,
    .contact-phone,
    .site-footer {
        transition: none;
    }
}
