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

body {
    background-color: #eee7dd;
    background-image: url("images/concrete-wall-2.png");
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #2c1810;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header */
header {
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 120px;
    height: auto;
}

/* Main Content */
main {
    padding: 0;
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-image {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-content h1 {
    font-family: 'Pirata One', cursive;
    font-size: 3rem;
    line-height: 1.2;
    color: #2c1810;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a3428;
    max-width: 500px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #b7473b;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 4px 6px rgba(183, 71, 59, 0.2);
}

.cta-button:hover {
    background-color: #a03d32;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(183, 71, 59, 0.3);
}

.cta-button img {
    width: 20px;
    height: 20px;
}

/* Promo CTA Section */
.promo-cta {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 4rem 0;
}

.promo-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(44, 24, 16, 0.85) 0%,
        rgba(26, 26, 26, 0.85) 100%
    );
    z-index: 1;
}

.promo-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    color: #eee7dd;
}

.promo-title {
    font-family: 'Pirata One', cursive;
    font-size: 3rem;
    color: #eecb87;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.promo-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(238, 231, 221, 0.95);
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.promo-divider {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.promo-divider img {
    max-width: 180px;
    width: 100%;
    height: auto;
    opacity: 0.85;
    filter: drop-shadow(0 2px 8px rgba(207, 160, 86, 0.4));
}

.promo-button {
    background-color: #eecb87;
    color: #2c1810;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
    box-shadow: 0 6px 20px rgba(238, 203, 135, 0.4);
    animation: pulsePromo 2s ease-in-out infinite;
}

.promo-button:hover {
    background-color: #d4b170;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(238, 203, 135, 0.6);
}

.promo-button img {
    filter: brightness(0);
}

.promo-badge {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.promo-badge span {
    background: linear-gradient(135deg, #b7473b 0%, #8b3028 100%);
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(183, 71, 59, 0.4);
    animation: blinkBadge 2s ease-in-out infinite;
}

@keyframes pulsePromo {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(238, 203, 135, 0.4);
    }
    50% {
        box-shadow: 0 6px 30px rgba(238, 203, 135, 0.7);
    }
}

@keyframes blinkBadge {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.98);
    }
}

/* Tarot Spreads Section */
.tarot-spreads {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
    text-align: center;
}

.tarot-spreads h2 {
    font-family: 'Pirata One', cursive;
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 1rem;
    font-weight: 400;
}

.spreads-subtitle {
    font-size: 1.125rem;
    color: #4a3428;
    margin-bottom: 3rem;
}

/* Main Spread Container */
.main-spread-container {
    display: flex;
    align-items: stretch;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Image Outside Card */
.spread-image-outside {
    flex: 0 0 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 8px 24px rgba(183, 71, 59, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.spread-image-outside:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(183, 71, 59, 0.25);
}

.spread-image-outside img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.spread-image-outside:hover img {
    transform: scale(1.05);
}

/* Main Spread Card */
.main-spread-card {
    flex: 1;
    background: linear-gradient(135deg, rgba(238, 203, 135, 0.15) 0%, rgba(183, 71, 59, 0.08) 100%);
    border: 2px solid rgba(183, 71, 59, 0.2);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 24px rgba(183, 71, 59, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.main-spread-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(183, 71, 59, 0.25);
}

.spread-badge {
    display: inline-block;
    background: linear-gradient(135deg, #b7473b 0%, #8b3028 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.main-spread-card h3 {
    font-family: 'Pirata One', cursive;
    font-size: 1.75rem;
    color: #2c1810;
    margin-bottom: 1rem;
    font-weight: 400;
}

.spread-content h3 {
    font-family: 'Pirata One', cursive;
    font-size: 2rem;
    color: #2c1810;
    margin-bottom: 1rem;
    font-weight: 400;
}

.spread-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a3428;
    margin-bottom: 1.5rem;
}

.spread-positions {
    margin-bottom: 1.5rem;
}

.spread-positions h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spread-positions ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1rem;
}

.spread-positions li {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4a3428;
    padding-left: 0.5rem;
}

.spread-positions li strong {
    color: #b7473b;
    margin-right: 0.25rem;
}

.spread-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-icon {
    font-size: 1.25rem;
}

.detail-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c1810;
}

.spread-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: #b7473b;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(183, 71, 59, 0.2);
}

.spread-cta-button:hover {
    background-color: #a03d32;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(183, 71, 59, 0.3);
}

.spread-cta-button.secondary {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
}

/* Secondary Spreads Container */
.secondary-spreads-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Secondary Spread Row */
.secondary-spread-row {
    display: flex;
    align-items: stretch;
    gap: 2.5rem;
}

/* Row with image on left */
.spread-row-left {
    flex-direction: row;
}

/* Row with image on right */
.spread-row-right {
    flex-direction: row;
}

/* Image Outside for Secondary Cards */
.spread-image-outside.secondary {
    flex: 0 0 320px;
}

/* Secondary Spread Card */
.secondary-spread-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.85);
    border: 2px solid rgba(183, 71, 59, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.secondary-spread-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(183, 71, 59, 0.2);
}

.secondary-spread-card h3 {
    font-family: 'Pirata One', cursive;
    font-size: 1.75rem;
    color: #2c1810;
    margin-bottom: 1rem;
    font-weight: 400;
}

.secondary-spread-card .spread-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a3428;
    margin-bottom: 1rem;
}

.secondary-spread-card .spread-positions {
    margin-bottom: 1.5rem;
}

.secondary-spread-card .spread-positions h4 {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.secondary-spread-card .spread-positions ul {
    grid-template-columns: 1fr;
    gap: 0.4rem;
}

.secondary-spread-card .spread-positions li {
    font-size: 0.85rem;
}

.secondary-spread-card .spread-details {
    justify-content: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.secondary-spread-card .detail-item {
    flex-direction: row;
    gap: 0.5rem;
}

.secondary-spread-card .detail-text {
    font-size: 0.875rem;
}

/* Pricing Disclaimer */
.pricing-disclaimer {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.disclaimer-content {
    background: linear-gradient(135deg, rgba(207, 160, 86, 0.08) 0%, rgba(183, 71, 59, 0.05) 100%);
    border-left: 4px solid #CFA056;
    border-radius: 8px;
    padding: 2rem 2.5rem;
    box-shadow: 0 4px 12px rgba(207, 160, 86, 0.15);
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.quote-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

.disclaimer-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a3428;
    margin: 0;
    font-style: italic;
}

.disclaimer-content strong {
    color: #2c1810;
    font-weight: 700;
    font-style: normal;
}

/* Benefits Section */
.benefits {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
    text-align: center;
}

.benefits h2 {
    font-family: 'Pirata One', cursive;
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 1rem;
    font-weight: 400;
}

.benefits-subtitle {
    font-size: 1.125rem;
    color: #4a3428;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(183, 71, 59, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.benefit-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a3428;
}

/* Testimonials Section */
.testimonials {
    width: 100%;
    margin: 0 auto;
    padding: 4rem 0;
    text-align: center;
    overflow: hidden;
}

.testimonials h2 {
    font-family: 'Pirata One', cursive;
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 1rem;
    font-weight: 400;
    padding: 0 1rem;
}

.testimonials-subtitle {
    font-size: 1.125rem;
    color: #4a3428;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.testimonials-swiper {
    width: 100%;
    padding: 3rem 0 4rem;
}

.testimonials-swiper .swiper-slide {
    width: 400px;
    height: auto;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(183, 71, 59, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.swiper-slide-active .testimonial-card {
    box-shadow: 0 12px 32px rgba(183, 71, 59, 0.25);
    border-color: rgba(183, 71, 59, 0.3);
}

.testimonials-swiper .swiper-pagination {
    bottom: 0;
}

.testimonials-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #b7473b;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.3);
}

/* Section Divider */
.section-divider {
    text-align: center;
    padding: 3rem 0;
}

.section-divider img {
    max-width: 460px;
    width: 100%;
    height: auto;
    opacity: 0.8;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 5rem 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.about-image {
    flex: 0 0 400px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(238, 203, 135, 0.4);
    border: 1px solid rgba(238, 203, 135, 0.4);
}

.about-text {
    flex: 1;
    color: #eee7dd;
}

.about-text h2 {
    font-family: 'Pirata One', cursive;
    font-size: 2.5rem;
    color: #eee7dd;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.about-text h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    color: #b7473b;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(238, 231, 221, 0.9);
    margin-bottom: 1.25rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .hero-image {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .hero-image img {
        max-width: 300px;
    }

    .hero-content {
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-content p {
        text-align: center;
    }

    .logo {
        width: 100px;
    }

    .promo-cta {
        min-height: 400px;
        margin: 2rem 0;
    }

    .promo-content {
        padding: 3rem 1.5rem;
    }

    .promo-title {
        font-size: 2rem;
    }

    .promo-description {
        font-size: 1.1rem;
    }

    .promo-divider img {
        max-width: 140px;
    }

    .promo-button {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .promo-badge {
        margin-top: 1.25rem;
    }

    .promo-badge span {
        font-size: 0.8rem;
        padding: 0.5rem 1.25rem;
    }

    .tarot-spreads h2 {
        font-size: 2rem;
    }

    .main-spread-container {
        flex-direction: column;
        gap: 2rem;
    }

    .spread-image-outside {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        aspect-ratio: 1;
        padding: 0;
    }

    .main-spread-card {
        width: 100%;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .spread-content h3 {
        font-size: 1.75rem;
    }

    .spread-details {
        justify-content: center;
        gap: 1.5rem;
    }

    .spread-positions ul {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .spread-positions li {
        font-size: 0.85rem;
    }

    .secondary-spreads-container {
        gap: 2rem;
    }

    .secondary-spread-row {
        flex-direction: column !important;
        gap: 2rem;
    }

    .spread-image-outside.secondary {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        aspect-ratio: 1;
    }

    .secondary-spread-card {
        width: 100%;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    /* Para o card Peladan (spread-row-right), exibir imagem acima no mobile */
    .spread-row-right .secondary-spread-card {
        order: 2;
    }

    .spread-row-right .spread-image-outside.secondary {
        order: 1;
    }

    .secondary-spread-card .spread-details {
        justify-content: center;
    }

    .secondary-spread-card .detail-item {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }

    .pricing-disclaimer {
        margin: 2rem auto;
    }

    .disclaimer-content {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        text-align: center;
        align-items: center;
    }

    .quote-icon {
        width: 32px;
        height: 32px;
    }

    .disclaimer-content p {
        font-size: 0.95rem;
    }

    .benefits h2 {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .testimonials h2 {
        font-size: 2rem;
    }

    .testimonials-swiper .swiper-slide {
        width: 320px;
    }

    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image {
        flex: 1;
        max-width: 300px;
    }

    .about-text {
        text-align: center;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text h3 {
        font-size: 1.25rem;
    }

    .footer-content {
        padding: 1.5rem 1rem;
    }

    .footer-logo img {
        max-width: 200px;
    }

    .celestial {
        font-size: 1rem;
    }

    .celestial.sun {
        font-size: 0.9rem;
    }

    .celestial.star {
        font-size: 0.8rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem 1rem;
    text-align: center;
    border-top: 1px solid rgba(238, 203, 135, 0.2);
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
    position: relative;
    z-index: 1;
}

/* Celestial Elements */
.celestial-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.celestial {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0;
    animation: celestialFloat 8s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(238, 203, 135, 0.3));
}

.celestial.moon {
    animation: celestialFloat 10s ease-in-out infinite;
}

.celestial.sun {
    animation: celestialFloat 12s ease-in-out infinite;
    font-size: 1.3rem;
}

.celestial.star {
    animation: celestialFloat 7s ease-in-out infinite;
    font-size: 1.2rem;
}

.celestial:nth-child(1) {
    animation-delay: 0s;
}

.celestial:nth-child(2) {
    animation-delay: 2.5s;
}

.celestial:nth-child(3) {
    animation-delay: 5s;
}

.celestial:nth-child(4) {
    animation-delay: 1.5s;
}

.celestial:nth-child(5) {
    animation-delay: 4s;
}

.celestial:nth-child(6) {
    animation-delay: 6.5s;
}

@keyframes celestialFloat {
    0% {
        opacity: 0;
        transform: translateY(0px) scale(0.8);
    }
    15% {
        opacity: 0.6;
        transform: translateY(-10px) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-15px) scale(1.1);
    }
    85% {
        opacity: 0.6;
        transform: translateY(-10px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(0px) scale(0.8);
    }
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    max-width: 260px;
    width: 100%;
    height: auto;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(238, 231, 221, 0.1);
    border: 2px solid rgba(238, 231, 221, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(238, 231, 221, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    background-color: rgba(238, 231, 221, 0.2);
    border-color: #b7473b;
    color: #b7473b;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.footer-content p {
    color: rgba(238, 231, 221, 0.9);
    font-size: 0.95rem;
    margin: 0.25rem 0;
}

.footer-subtitle {
    color: rgba(238, 231, 221, 0.7);
    font-size: 0.875rem;
    font-weight: 400;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #eee7dd;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loading-image {
    width: 200px;
    height: auto;
    animation: float-loading 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(238, 203, 135, 0.3));
}

@keyframes float-loading {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.loading-text {
    font-family: 'Pirata One', cursive;
    font-size: 1.5rem;
    color: #eee7dd;
    font-weight: 400;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Drawer */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay-active {
    opacity: 1;
    visibility: visible;
}

.drawer {
    position: fixed;
    top: 0;
    right: -500px;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background-color: #eee7dd;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.drawer::after {
    content: '';
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 180px;
    height: 240px;
    background-image: url('images/elixir.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.drawer-open {
    right: 0;
}

.drawer-header {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #b7473b;
    position: relative;
    z-index: 1;
}

.drawer-header h2 {
    font-family: 'Pirata One', cursive;
    font-size: 1.75rem;
    color: #eee7dd;
    margin: 0;
    font-weight: 400;
}

.close-drawer {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #eee7dd;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.close-drawer:hover {
    color: #b7473b;
}

.drawer-content {
    padding: 2rem;
    padding-bottom: 3rem;
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2c1810;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.875rem;
    border: 2px solid rgba(183, 71, 59, 0.2);
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    color: #2c1810;
    background-color: rgba(255, 255, 255, 0.8);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #b7473b;
    box-shadow: 0 0 0 3px rgba(183, 71, 59, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: #b7473b;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(183, 71, 59, 0.2);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.submit-button:hover {
    background-color: #a03d32;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(183, 71, 59, 0.3);
}

.submit-button img,
.submit-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 64px;
    height: 64px;
    background-color: #25D366;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 9997;
    color: white;
}

.floating-whatsapp:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
    width: 28px;
    height: 28px;
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    background-color: #ff3333;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(255, 51, 51, 0.5);
    animation: vibrate-badge 5s infinite;
}

@keyframes vibrate-badge {
    0% {
        transform: translate(0, 0);
    }
    2% {
        transform: translate(-2px, 1px) scale(1.1);
    }
    4% {
        transform: translate(2px, -1px) scale(1.15);
    }
    6% {
        transform: translate(-2px, -1px) scale(1.1);
    }
    8% {
        transform: translate(2px, 1px) scale(1.15);
    }
    10% {
        transform: translate(-1px, -1px) scale(1.1);
    }
    12% {
        transform: translate(1px, 1px) scale(1.05);
    }
    14% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* Responsive Drawer */
@media (max-width: 768px) {
    .drawer {
        max-width: 100%;
    }

    .drawer-header {
        padding: 1.5rem;
    }

    .drawer-header h2 {
        font-size: 1.5rem;
    }

    .drawer-content {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .floating-whatsapp {
        width: 56px;
        height: 56px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .floating-whatsapp svg {
        width: 24px;
        height: 24px;
    }
}