* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* Base Body */
body {
    position: relative;
    background-color: #faf9fb;
    color: #350f22;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Utils */
.relative {
    position: relative !important;
}

/* Animations (Intersection Observer) */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.fade-up {
    transform: translateY(40px);
}

.fade-right {
    transform: translateX(-40px);
}

.fade-left {
    transform: translateX(40px);
}

/* Glow Effects */
.background-glow {
    position: absolute;
    top: -20vh;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 64, 129, 0.15) 0%, rgba(53, 15, 34, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* Hero Section */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #1b0711 0%, #350f22 100%);
    position: relative;
    width: 100vw;
    padding: 80px 20px 0 20px;
    overflow: hidden;
}

.content {
    max-width: 550px;
    z-index: 2;
}

/* Adjust Logo */
.logo {
    margin-bottom: 20px;
    text-align: left;
}

.logo img {
    max-width: 240px;
    height: auto;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.3));
}

h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 10px;
}

.highlight {
    background: linear-gradient(90deg, #ff4081 0%, #ff85a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-text {
    color: #ff4081;
}

p {
    font-size: 24px;
    color: #ffdce6;
    margin: 20px 0 40px;
    font-weight: 300;
    line-height: 1.4;
}

/* Premium Buttons */
.botao,
.botao-economia {
    text-align: center;
}

.btn-premium {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 40px;
    background: linear-gradient(135deg, #ff4081 0%, #d81b60 100%);
    color: white;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(255, 64, 129, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 25px rgba(255, 64, 129, 0.5);
    background: linear-gradient(135deg, #ff5c93 0%, #e91e63 100%);
}

.image-container {
    position: relative;
    z-index: 2;
    margin-left: 40px;
}

.image-container img {
    width: 480px;
    position: relative;
    z-index: 2;
}

.image-glow {
    display: none;
}

/* Wave Divider */
.divider {
    background-color: #350f22;
    width: 100vw;
}

.custom-shape-divider-bottom-1740660722 {
    position: relative;
    width: 100vw;
    margin-top: 0;
    bottom: -2px;
    left: 0;
    overflow: hidden;
    line-height: 0;
    display: flex;
    justify-content: center;
}

.custom-shape-divider-bottom-1740660722 svg {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    height: 15vw;
    min-height: 100px;
    transform: scaleY(-1);
    border: none;
}

.custom-shape-divider-bottom-1740660722 .shape-fill {
    fill: #faf9fb;
    /* Match the body background below it */
}

/* Sobre Nos Section */
.sobre {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 80px 20px;
    text-align: left;
    width: 100vw;
    background: #faf9fb;
}

.image-sobreNos img {
    max-width: 500px;
    width: 100%;
    filter: drop-shadow(0px 10px 20px rgba(53, 15, 34, 0.15));
    transition: transform 0.5s ease;
}

.image-sobreNos img:hover {
    transform: translateY(-10px);
}

.sobreNosText {
    max-width: 600px;
}

.sobre h2 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1b0711;
}

.sobre p {
    font-size: 20px;
    color: #4a2b3b;
    margin: 0;
    line-height: 1.6;
}

/* Extra Content / Cards */
.extra-content {
    background-color: #faf9fb;
    position: relative;
    display: flex;
    justify-content: center;
    width: 100vw;
    padding: 60px 20px;
}

.box {
    background: linear-gradient(180deg, #350f22 0%, #1b0711 100%);
    box-shadow: 0px 30px 60px rgba(0, 0, 0, 0.4);
    color: #ffffff;
    text-align: center;
    width: 100%;
    max-width: 1400px;
    border-radius: 40px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 64, 129, 0.05) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.extra-content h2 {
    color: white;
    font-size: 46px;
    margin-bottom: 60px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    /* Glassmorphism */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 30px 20px;
    width: 280px;
    text-align: center;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 20px 40px rgba(255, 64, 129, 0.2);
    border-color: rgba(255, 64, 129, 0.3);
}

.card-icon-wrapper {
    margin: 0 auto 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
}

.card p {
    font-size: 16px;
    color: #e0d5dd;
    line-height: 1.5;
}

/* Economia */
.economia {
    background-color: #faf9fb;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 80px 20px 40px;
    width: 100vw;
}

.economiaText {
    max-width: 500px;
}

.economia h2 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    color: #1b0711;
    margin-bottom: 20px;
}

.economia p {
    font-size: 18px;
    color: #4a2b3b;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.economia img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0px 20px 40px rgba(53, 15, 34, 0.3);
    border: 5px solid #350f22;
    transition: transform 0.5s ease;
}

.economia img:hover {
    transform: scale(1.02);
}

.btn-economia-w {
    width: 100%;
    text-align: center;
}

/* Footer */
.site-footer {
    background: #1b0711;
    width: 100vw;
    padding: 60px 40px 40px;
    color: #ffffff;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    max-width: 300px;
    height: auto;
}

.footer-contact {
    text-align: left;
}

.footer-contact p {
    margin: 10px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact a {
    color: #ffdce6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ff4081;
    text-decoration: underline;
}


/* Media Queries */

@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
    }

    .content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logo {
        text-align: center;
    }

    h1 {
        font-size: 48px;
    }

    p {
        font-size: 20px;
    }

    .botao {
        text-align: center;
    }

    .image-container {
        margin-top: 40px;
        margin-left: 0;
    }

    .image-container img {
        width: 100%;
        max-width: 400px;
    }

    .sobre {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 60px 20px;
    }

    .sobreNosText {
        text-align: center;
    }

    .economia {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 60px 20px;
    }

    .economiaText {
        max-width: 100%;
        margin: 0;
    }

    .economia img {
        margin: 0;
    }

    .custom-shape-divider-bottom-1740660722 svg {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 350px;
    }

    .extra-content h2 {
        font-size: 36px;
    }

    .box {
        padding: 60px 20px;
    }

    .botao-economia {
        text-align: center;
    }
}

@media (max-width: 500px) {
    h1 {
        font-size: 38px;
    }

    .btn-premium {
        padding: 14px 20px;
        font-size: 16px;
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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

    .footer-contact p {
        justify-content: center;
    }
}