:root {
    --primary-pink: #E8B4B8;
    --soft-pink: #F4E4E6;
    --rose-gold: #B76E79;
    --dark-text: #2d2d2d;
    --light-bg: #FFF8F9;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
    --link-color: #8B4852;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(0.625rem);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rose-gold) !important;
    letter-spacing: 0.062rem;
}

/* Logo no navbar */
.navbar-logo {
    height: 3.750rem;
    width: auto;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23B76E79' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1rem !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0.125rem;
    background: var(--rose-gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--rose-gold) !important;
}

/* ========== LINK ATIVO NO MENU ========== */
.nav-link.active {
    color: var(--rose-gold) !important;
    font-weight: 600;
}

.nav-link.active::after {
    width: 80%;
}

/* Ícones sociais no navbar - bolinhas elegantes */
.social-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icons a {
    width: 2.500rem;
    height: 2.500rem;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--rose-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-icons a:hover {
    transform: translateY(-0.312rem) scale(1.1);
    box-shadow: 0 8px 20px rgba(183, 110, 121, 0.4);
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--primary-pink) 100%);
}

/* Hero Section com Banner */
.hero {
    height: 40.625rem;
    background-image: url('../images/banner-desktop.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-row {
    min-height: 40.625rem;
}

/* Banner mobile */
@media (max-width: 768px) {
    .hero {
        background-image: url('../images/banner-mobile.webp');
        min-height: 44rem;
        background-size: cover;
        background-position: right center;
    }

    .hero-row {
        min-height: 44rem;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Centralizar no mobile - MELHORADO */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        align-items: center;
    }

    .hero-content .lead {
        text-align: center !important;
    }

    /* Botão maior e mais largo no mobile */
    .hero-content .btn-primary {
        padding: 1rem 2.5rem;
        font-size: 1.05rem;
        min-width: 18.750rem;
        font-weight: 700;
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .lead {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 37.500rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.btn-primary {
    background: var(--white);
    color: var(--rose-gold);
    border: 2px solid var(--white);
    padding: 0.8rem 3rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    min-width: 15.625rem;
    animation: pulse 2s infinite;
}

/* Animação de pulsar no botão */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: none;
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--rose-gold);
    transform: translateY(-0.188rem);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 1.875rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--white);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-0.625rem);
    }

    60% {
        transform: translateX(-50%) translateY(-0.312rem);
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s backwards;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(1.875rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* NOVAS ANIMAÇÕES ADICIONADAS */
.animate-left {
    opacity: 0;
    transform: translateX(-6.250rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-top {
    opacity: 0;
    transform: translateY(-6.250rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-right {
    opacity: 0;
    transform: translateX(6.250rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-left-up {
    opacity: 0;
    transform: translateX(-6.250rem) translateY(6.250rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-bottom {
    opacity: 0;
    transform: translateY(6.250rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-right-up {
    opacity: 0;
    transform: translateX(6.250rem) translateY(6.250rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-left.visible,
.animate-top.visible,
.animate-right.visible,
.animate-left-up.visible,
.animate-bottom.visible,
.animate-right-up.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.animate-testimonial-left {
    opacity: 0;
    transform: translateX(-6.250rem) translateY(6.250rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-testimonial-bottom {
    opacity: 0;
    transform: translateY(6.250rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-testimonial-right {
    opacity: 0;
    transform: translateX(6.250rem) translateY(6.250rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-testimonial-left.visible,
.animate-testimonial-bottom.visible,
.animate-testimonial-right.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* ANIMAÇÕES MENORES NO MOBILE - 1.875rem */
@media (max-width: 768px) {

    body,
    html {
        overflow-x: hidden;
        width: 100%;
    }

    .animate-left {
        transform: translateX(-1.875rem);
    }

    .animate-right {
        transform: translateX(1.875rem);
    }

    .animate-top {
        transform: translateY(-1.875rem);
    }

    .animate-bottom {
        transform: translateY(1.875rem);
    }

    .animate-left-up {
        transform: translateX(-1.875rem) translateY(1.875rem);
    }

    .animate-right-up {
        transform: translateX(1.875rem) translateY(1.875rem);
    }

    .animate-testimonial-left {
        transform: translateX(-1.875rem) translateY(1.875rem);
    }

    .animate-testimonial-bottom {
        transform: translateY(1.875rem);
    }

    .animate-testimonial-right {
        transform: translateX(1.875rem) translateY(1.875rem);
    }
}

/* FIM DAS NOVAS ANIMAÇÕES */

/* Sections */
section {
    padding: 5rem 0;
}

.bg-light-section {
    background: var(--light-bg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rose-gold);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-text);
    opacity: 0.9;
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: 0 15px 40px rgba(183, 110, 121, 0.2);
    border-color: var(--primary-pink);
}

.service-card.highlight {
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--white) 100%);
    border-color: var(--rose-gold);
}

.service-icon {
    width: 5.000rem;
    height: 5.000rem;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--rose-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--rose-gold);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Link "Saiba mais" - mesma cor do título da seção */
.service-link {
    color: var(--rose-gold);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.service-link:hover {
    color: #8B4852;
    gap: 0.625rem;
}

.service-link i {
    margin-left: 0.312rem;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(0.312rem);
}

/* About Section */
.about-image img {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}

.rounded-custom {
    border-radius: 20px;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-box:hover {
    transform: translateY(-0.312rem);
    box-shadow: 0 10px 30px rgba(183, 110, 121, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rose-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--dark-text);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.3;
    font-weight: 500;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    border-left: 4px solid var(--primary-pink);
}

.testimonial-card:hover {
    transform: translateY(-0.312rem);
    box-shadow: 0 15px 40px rgba(183, 110, 121, 0.2);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--rose-gold);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--dark-text);
    font-size: 0.9rem;
    opacity: 0.85;
    font-weight: 500;
}

/* ========== NOVOS CARDS DE CONTATO ========== */
.contact-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 180, 184, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(183, 110, 121, 0.25);
    border-color: var(--primary-pink);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--rose-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: var(--white);
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(183, 110, 121, 0.3);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 30px rgba(183, 110, 121, 0.5);
}

.contact-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--rose-gold);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.contact-card p {
    color: var(--dark-text);
    font-size: 1rem;
    margin: 0;
    line-height: 1.8;
    font-weight: 500;
}

.contact-card p strong {
    color: var(--rose-gold);
    font-weight: 600;
}

/* ALTERAÇÃO: Cor do link (telefone e e-mail) alterada para corresponder exatamente ao endereço */
.contact-card-link {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-card-link:hover {
    color: var(--rose-gold);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Animações dos cards de contato */
.animate-contact-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-contact-right {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-contact-left-up {
    opacity: 0;
    transform: translateX(-100px) translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-contact-right-up {
    opacity: 0;
    transform: translateX(100px) translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-contact-left.visible,
.animate-contact-right.visible,
.animate-contact-left-up.visible,
.animate-contact-right-up.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Título das redes sociais */
.social-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--rose-gold);
    font-family: 'Playfair Display', serif;
}

/* Container centralizado das redes sociais */
.social-links-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Links sociais - bolinhas elegantes */
.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.812rem;
    height: 2.812rem;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--rose-gold) 100%);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    margin-right: 0.8rem;
    margin-bottom: 0.8rem;
    transition: var(--transition);
    font-size: 1.3rem;
}

.social-btn:hover {
    transform: translateY(-0.312rem) scale(1.15);
    box-shadow: 0 10px 25px rgba(183, 110, 121, 0.4);
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--primary-pink) 100%);
}

.social-btn i {
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #B76E79 0%, #D4949C 50%, #B76E79 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
}

/* Logo no footer */
.footer-logo {
    height: 3.750rem;
    width: auto;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-text {
    opacity: 0.95;
    margin-bottom: 1.5rem;
    text-align: center;
}

.footer-social {
    text-align: center;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.812rem;
    height: 2.812rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.3rem;
    margin-right: 0.8rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--white);
    color: var(--rose-gold);
    transform: translateY(-0.312rem) scale(1.1);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.95;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 0.312rem;
}

.footer-info {
    list-style: none;
    padding: 0;
}

.footer-info li {
    margin-bottom: 0.8rem;
    opacity: 0.95;
}

.footer-info i {
    margin-right: 0.5rem;
    width: 1.250rem;
}

.footer-email-link {
    color: var(--white);
    text-decoration: none !important;
    transition: var(--transition);
}

.footer-email-link:hover {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.9;
    font-weight: 400;
}

.privacy-link {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
    font-weight: 400;
}

.privacy-link:hover {
    opacity: 1;
}

/* Faixa Animada (Marquee) */
.marquee-section {
    background: linear-gradient(135deg, #B76E79 0%, #D4949C 50%, #B76E79 100%);
    padding: 2.5rem 0;
    overflow: hidden;
    position: relative;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    width: 100%;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    min-width: 100%;
    animation: scroll 40s linear infinite;
    color: var(--white);
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 0.188rem;
    white-space: nowrap;
}

.marquee-content span {
    display: inline-block;
    padding: 0;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Pacotes Promocionais */
.package-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: 0 15px 40px rgba(183, 110, 121, 0.2);
    border-color: var(--primary-pink);
}

.package-badge {
    position: absolute;
    top: 1.250rem;
    right: 1.250rem;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--primary-pink) 100%);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.062rem;
}

.package-icon {
    width: 5.000rem;
    height: 5.000rem;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--rose-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.package-card:hover .package-icon {
    transform: rotate(360deg) scale(1.1);
}

.package-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--rose-gold);
    margin-bottom: 1rem;
}

.package-description {
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    opacity: 1;
    font-weight: 500;
}

.package-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.old-price {
    font-size: 1rem;
    color: #666;
    text-decoration: line-through;
    opacity: 1;
    font-weight: 600;
}

.new-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--rose-gold);
    font-family: 'Playfair Display', serif;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.package-features li {
    padding: 0.5rem 0;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.package-features i {
    color: var(--rose-gold);
    font-size: 1rem;
}

.package-card .btn-primary {
    margin-top: auto;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--rose-gold) 100%);
    color: var(--white);
    border: none;
    padding: 15px 25px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    width: 100%;
    display: block;
    animation: none !important;
}

.package-card .btn-primary:hover {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--primary-pink) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(183, 110, 121, 0.4);
}

.promo-note {
    color: var(--dark-text);
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 2rem;
    font-weight: 500;
}

.promo-note i {
    color: var(--rose-gold);
    margin-right: 0.5rem;
}

/* ========== BOTÃO VOLTAR AO TOPO ========== */
.back-to-top {
    position: fixed;
    width: 3.125rem;
    height: 3.125rem;
    bottom: 9.375rem;
    right: 2.5rem;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--rose-gold) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    text-align: center;
    font-size: 1.3rem;
    box-shadow: 0 5px 20px rgba(183, 110, 121, 0.3);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--primary-pink) 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(183, 110, 121, 0.5);
}

.back-to-top:active {
    transform: translateY(-2px);
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 3.750rem;
    height: 3.750rem;
    bottom: 2.5rem;
    right: 2.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6), 0 0 0 15px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    color: var(--white);
    animation: none;
}

.whatsapp-float i {
    transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
    transform: rotate(15deg);
}

/* Tooltip do WhatsApp */
.whatsapp-float::before {
    content: "Fale conosco!";
    position: absolute;
    right: 4.375rem;
    background: var(--white);
    color: var(--dark-text);
    padding: 0.625rem 1rem;
    border-radius: 10px;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.whatsapp-float::after {
    content: "";
    position: absolute;
    right: 3.750rem;
    border: 8px solid transparent;
    border-left-color: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
    opacity: 1;
    visibility: visible;
}

/* ========== LGPD COOKIE BANNER ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #B76E79 0%, #D4949C 50%, #B76E79 100%);
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -0.25rem 1rem rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text h5 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-banner-text h5 i {
    font-size: 1.3rem;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cookie-banner-text a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 600;
}

.cookie-banner-text a:hover {
    opacity: 0.8;
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-banner .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-banner .btn-light {
    background-color: #fff;
    color: var(--rose-gold);
    border: none;
}

.cookie-banner .btn-light:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

.cookie-banner .btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    background-color: transparent;
}

.cookie-banner .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar .social-icons {
        margin-top: 1rem;
        justify-content: center;
    }

    .marquee-content {
        font-size: 1rem;
        letter-spacing: 0.125rem;
    }

    .navbar-logo {
        height: 2.500rem;
    }

    .footer-logo {
        height: 2.500rem;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero .lead {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-outline-light {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    section {
        padding: 3rem 0;
    }

    .social-btn {
        width: 2.500rem;
        height: 2.500rem;
        font-size: 1.1rem;
    }

    .marquee-content {
        font-size: 1.1rem;
        letter-spacing: 0.094rem;
    }

    .marquee-section {
        padding: 2rem 0;
    }

    .navbar-logo {
        height: 3.5rem;
    }

    .footer-logo {
        height: 3.5rem;
    }

    /* Responsivo para mobile - Botão Voltar ao Topo */
    .back-to-top {
        width: 2.812rem;
        height: 2.812rem;
        bottom: 7.5rem;
        right: 1.5rem;
        font-size: 1.1rem;
    }

    /* Responsivo para mobile - WhatsApp */
    .whatsapp-float {
        width: 3.500rem;
        height: 3.500rem;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1.8rem;
    }

    .whatsapp-float::before {
        right: 4.000rem;
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }

    .whatsapp-float::after {
        right: 3.375rem;
    }

    /* Responsivo para mobile - Footer Bottom */
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-bottom p {
        text-align: center;
    }

    /* Responsivo para mobile - Cookie Banner */
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner-content {
        gap: 1rem;
    }

    .cookie-banner-text h5 {
        font-size: 1rem;
    }

    .cookie-banner-text p {
        font-size: 0.9rem;
    }

    .cookie-banner-actions {
        width: 100%;
    }

    .cookie-banner .btn {
        flex: 1;
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
        justify-content: center;
    }

    /* Responsivo para mobile - Cards de Contato */
    .contact-card {
        padding: 2.5rem 2rem;
    }

    .contact-card-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .contact-card h3 {
        font-size: 1.3rem;
    }

    .contact-card p {
        font-size: 0.95rem;
    }

    /* Animações menores no mobile */
    .animate-contact-left {
        transform: translateX(-30px);
    }

    .animate-contact-right {
        transform: translateX(30px);
    }

    .animate-contact-left-up {
        transform: translateX(-30px) translateY(30px);
    }

    .animate-contact-right-up {
        transform: translateX(30px) translateY(30px);
    }
}