* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Inter', sans-serif;
    background: #0b0b0f;
    color: #eaeaf0
}



.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 4rem;
    max-width: 5rem;
    width: 5rem;
    font-weight: 600
}

.logo img {
    height: 5rem;
}

.nav button {
    margin-left: 10px
}

.btn {
    padding: 12px 22px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 500
}

.primary {
    background: linear-gradient(135deg, #d4af37, #f5d77a);
    color: #000;
    font-size: 1.2rem;
}

.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.2rem;
}

.hero {
    padding: 120px 60px;
    text-align: center;
    background-image: url("./src/images/bg1.webp");
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.1;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.hero p {
    margin-top: 20px;
    font-size: 20px;
    background: rgba(20, 20, 20, 0.2);

    /* 2. O filtro de desfoque */
    backdrop-filter: blur(10px);

    /* 3. Compatibilidade com Safari */
    -webkit-backdrop-filter: blur(10px);

    /* Estilos adicionais para melhorar o visual */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    color: #fff
}

.hero-buttons {
    margin-top: 30px
}

.hero img {
    margin-top: 60px;
    width: 100%;
    max-width: 900px;
    border-radius: 16px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8)
}

.section {
    padding: 100px 60px
}

.center {
    text-align: center
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px
}

.card {
    padding: 30px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15)
}

.split {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap
}

.split img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px
}


/* ==================== BENTO GRID (Serviços Minimalista) ==================== */
.bento-section {
    background: var(--bg-alt);
    padding: clamp(3rem, 8vh, 5rem) 0;
}

.section-title-center {
    text-align: center;
    margin-bottom: clamp(2rem, 5vh, 3rem);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

/* Cards estilo bento/Masonry clean */
.bento-card {
    background: var(--bg-main);
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-default);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

.card-icon {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.bento-card p {
    margin-top: 0.5rem;
}

/* ==================== TRUST SECTION (Sinais de Confiança) ==================== */
.trust-section {
    padding: clamp(3rem, 8vh, 5rem) 0;
    background: var(--bg-main);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0 2rem;
}

.testimonial-card {
    background: var(--bg-alt);
    border-radius: 28px;
    padding: 1.8rem;
    transition: var(--transition-default);
    border-left: 4px solid var(--secondary);
}

.testimonial-card p {
    font-style: normal;
    font-weight: 450;
}

.testimonial-author {
    margin-top: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1.5rem, 5vw, 3rem);
    margin-top: 3rem;
    opacity: 0.7;
}

.partner-logos span {
    font-size: clamp(0.8rem, 2vw, 1rem);
    font-weight: 500;
    color: var(--primary);
    letter-spacing: -0.2px;
    background: #ececec;
    padding: 0.4rem 1rem;
    border-radius: 40px;
}

.cta {
    background: linear-gradient(135deg, #111, #000);
    color: white;
    text-align: center;
    padding: 100px 40px;
    border-radius: 20px;
    margin: 60px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-weight: 700;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #05050a;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: #eaeaf0;
    padding: clamp(3rem, 8vh, 5rem) 0;
    margin-top: 60px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(2rem, 5vw, 4rem);
}

/* Column Styling */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-column h4 {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}

/* Brand Section */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo {
    height: 2.5rem;
    width: auto;
    opacity: 0.9;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #aaa;
    max-width: 280px;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.08);
    color: #d4af37;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.25s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-social a:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

/* Navigation Links */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav a {
    font-size: 0.9rem;
    color: #aaa;
    text-decoration: none;
    transition: all 0.25s ease;
    padding-bottom: 2px;
}

.footer-nav a:hover {
    color: #d4af37;
    padding-left: 4px;
}

/* Contact Address */
.footer-address {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-style: normal;
}

.footer-address a {
    font-size: 0.9rem;
    color: #aaa;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-address a:hover {
    color: #d4af37;
}

/* Bottom Section */
.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    margin-top: clamp(2rem, 5vh, 3rem);
    padding-top: clamp(1.5rem, 4vh, 2.5rem);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1.5rem, 5vw, 3rem);
    padding-right: clamp(1.5rem, 5vw, 3rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #666;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.badge {
    font-size: 0.8rem;
    color: #aaa;
    padding: 0.4rem 0.8rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    white-space: nowrap;
}

/* ==================== WHATSAPP FLOATING BUTTON ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    border: none;
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.4), rgba(37, 211, 102, 0.1) 70%, transparent);
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
}

.whatsapp-icon {
    width: 70px;
    height: 70px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(37, 211, 102, 0.25));
    transition: filter 0.25s ease;
}

.whatsapp-float:hover .whatsapp-icon {
    filter: drop-shadow(0 8px 20px rgba(37, 211, 102, 0.4));
}

.whatsapp-float:active {
    animation: none;
    transform: scale(0.95);
}

/* Animação de flutuação suave */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Animação de brilho pulsante */
@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4),
            0 0 0 10px rgba(37, 211, 102, 0.2);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.3),
            0 0 0 20px rgba(37, 211, 102, 0.1);
    }
}

/* ================= MOBILE FOOTER ================= */
@media (max-width: 768px) {
    .carousel-wrapper {
        gap: 1.5rem;
    }

    .carousel-wrapper>div:first-child {
        text-align: center;
        max-width: 100%;
    }

    .carousel-container {
        max-width: 100%;
        border-radius: 12px;
    }

    .carousel-dots {
        gap: 0.6rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .footer {
        padding: 2.5rem 0;
        margin-top: 40px;
    }

    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
        padding: 0 1.2rem;
    }

    .footer-column h4 {
        font-size: 0.85rem;
    }

    .footer-description {
        font-size: 0.85rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.2rem;
    }

    .footer-copyright {
        order: 1;
    }

    .footer-badges {
        order: 2;
        justify-content: center;
        width: 100%;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 64px;
        height: 64px;
    }

    .whatsapp-icon {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .footer-social {
        gap: 0.8rem;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 0.7rem;
    }

    .footer-nav a {
        font-size: 0.85rem;
    }

    .footer-address a {
        font-size: 0.85rem;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 56px;
        height: 56px;
    }

    .whatsapp-icon {
        width: 56px;
        height: 56px;
    }
}

.small-proof {
    margin-top: 15px;
    color: #999;
    font-size: 14px
}

/* ANIMAÇÕES GERAIS */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* HERO animação */
.hero h1 {
    animation: fadeSlide 1s ease forwards;
}

.hero p {
    animation: fadeSlide 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-buttons {
    animation: fadeSlide 1s ease 0.6s forwards;
    opacity: 0;
}

.hero img {
    animation: zoomFade 1.2s ease 0.8s forwards;
    opacity: 0;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomFade {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* BOTÕES */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}

/* ==================== CAROUSEL (CSS Only) ==================== */
.carousel-wrapper {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 5vw, 3rem);
    align-items: center;
}

.carousel-wrapper>div:first-child {
    text-align: center;
    max-width: 600px;
}

.carousel-container {
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slide 12s infinite;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-slide a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.carousel-slide a:hover img {
    transform: scale(1.02);
}

/* Animação do carrossel */
@keyframes slide {
    0% {
        transform: translateX(0%);
    }

    33.33% {
        transform: translateX(0%);
    }

    33.34% {
        transform: translateX(-100%);
    }

    66.66% {
        transform: translateX(-100%);
    }

    66.67% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(-200%);
    }
}

/* Indicadores de slide (dots) */
.carousel-dots {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    animation: dot-animate 12s infinite;
}

.dot:nth-child(2) {
    animation-delay: -4s;
}

.dot:nth-child(3) {
    animation-delay: -8s;
}

.dot.active {
    background: #d4af37;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

@keyframes dot-animate {
    0% {
        background: rgba(255, 255, 255, 0.3);
        box-shadow: none;
    }

    33.33% {
        background: #d4af37;
        box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
    }

    66.66% {
        background: rgba(255, 255, 255, 0.3);
        box-shadow: none;
    }

    100% {
        background: rgba(255, 255, 255, 0.3);
        box-shadow: none;
    }
}

/* ==================== SPLIT (mantida para compatibilidade) ==================== */
.card {
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 80px rgba(212, 175, 55, 0.2);
}

/* CTA destaque */
.cta {
    position: relative;
    overflow: hidden;
}

.cta::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 60%);
    top: -50%;
    left: -50%;
    animation: pulseGlow 6s linear infinite;
}

@keyframes pulseGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* evita zoom estranho em iPhone */
input,
select,
textarea {
    font-size: 16px;
}

/* melhora toque */
button {
    min-height: 44px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    header {
        padding: 15px 20px;
        flex-direction: row;
    }

    .logo img {
        height: 3rem;
    }

    .nav button {
        padding: 8px 14px;
        font-size: 12px;
    }

    /* HERO */
    .hero {
        padding: 80px 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .hero img {
        margin-top: 30px;
    }

    /* SEÇÕES */
    .section {
        padding: 60px 20px;
    }

    h2 {
        font-size: 24px;
    }

    /* GRID vira 1 coluna */
    .grid {
        grid-template-columns: 1fr;
    }

    /* SPLIT vira coluna */
    .split {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .split img {
        max-width: 100%;
    }

    /* CTA */
    .cta {
        margin: 20px;
        padding: 60px 20px;
    }

    /* BOTÕES */
    .btn {
        width: 100%;
        text-align: center;
    }
}