/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #1e293b;
    line-height: 1.5;
    background-color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.relative {
    position: relative;
}

.text-gold {
    color: #fbbf24;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.5s ease;
}

header.scrolled {
    background-color: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(8px);
    padding: 0.5rem 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 3.5rem;
    filter: brightness(0) invert(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: none;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
}

.nav-menu a:hover {
    color: #fbbf24;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #fbbf24;
    color: #ffffff;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 6px -1px rgba(251, 191, 36, 0.4);
}

.btn-header:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
}

/* Hero */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8rem;
    padding-bottom: 6rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.95));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background-color: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #fbbf24;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: 2.25rem;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: serif;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 4.5rem;
    }
}

.hero-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.trust-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .trust-bar {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
}

.trust-item svg {
    color: #fbbf24;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
}

.trust-sub {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fbbf24;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: #fbbf24;
    color: #ffffff;
    padding: 1.25rem 2.5rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: 0 25px 50px -12px rgba(251, 191, 36, 0.3);
}

.btn-main:hover {
    background-color: #f59e0b;
    transform: scale(1.05);
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

/* Seções Gerais */
section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 5rem;
}

.section-tag {
    color: #fbbf24;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: block;
}

.section-header h2 {
    font-size: 2.25rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-family: serif;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header p {
    font-size: 1.125rem;
    color: #475569;
}

.divider {
    width: 6rem;
    height: 0.375rem;
    background-color: #fbbf24;
    margin: 2rem auto 0;
    border-radius: 9999px;
}

/* Serviços */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: #f8fafc;
    padding: 2.5rem;
    border-radius: 2.5rem;
    border: 1px solid #f1f5f9;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    background-color: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(251, 191, 36, 0.1);
    transform: translateY(-0.5rem);
    border-color: #fde68a;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background-color: #ffffff;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    margin-bottom: 2rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: #fbbf24;
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.service-card p {
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.highlight {
    color: #fbbf24;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-footer svg {
    color: #fbbf24;
    transition: transform 0.3s ease;
}

.service-card:hover .service-footer svg {
    transform: translateX(0.5rem);
}

.services-cta {
    margin-top: 5rem;
    text-align: center;
}

.btn-gold {
    display: inline-flex;
    background-color: #fbbf24;
    color: #ffffff;
    padding: 1.5rem 3rem;
    border-radius: 9999px;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(251, 191, 36, 0.2);
}

.btn-gold:hover {
    background-color: #f59e0b;
}

/* Why Choose Us */
#why-choose-us {
    background-color: #020617;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.why-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 33.33%;
    height: 100%;
    background-color: rgba(251, 191, 36, 0.05);
    filter: blur(120px);
    border-radius: 9999px;
    transform: translateX(50%);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.section-tag-gold {
    color: #fbbf24;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: block;
}

#why-choose-us h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    font-family: serif;
}

@media (min-width: 768px) {
    #why-choose-us h2 {
        font-size: 3rem;
    }
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-item {
    display: flex;
    gap: 1.5rem;
}

.why-icon {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    transition: all 0.3s ease;
}

.why-item:hover .why-icon {
    background-color: rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.5);
}

.why-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.why-item:hover .why-text h3 {
    color: #fbbf24;
}

.why-text p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.why-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.images-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pt-12 {
    padding-top: 3rem;
}

.img-wrapper {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.aspect-3-4 {
    aspect-ratio: 3/4;
}

.aspect-square {
    aspect-ratio: 1/1;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Process Section */
#process {
    background-color: #f8fafc;
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-line {
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fde68a;
    transform: translateY(-50%);
    z-index: 0;
}

@media (min-width: 768px) {
    .process-line {
        display: block;
    }
}

.process-step {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    z-index: 10;
    transition: border-color 0.3s ease;
}

.process-step:hover {
    border-color: #fbbf24;
}

.step-icon {
    width: 4rem;
    height: 4rem;
    background-color: #fbbf24;
    color: #ffffff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(251, 191, 36, 0.3);
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
}

/* Authority */
#authority {
    background-color: #ffffff;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .authority-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.authority-content h2 {
    font-size: 2.25rem;
    color: #0f172a;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-family: serif;
}

@media (min-width: 768px) {
    .authority-content h2 {
        font-size: 3rem;
    }
}

.authority-content p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.authority-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.auth-item {
    display: flex;
    gap: 1.25rem;
}

.auth-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: #fffbeb;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    transition: all 0.3s ease;
}

.auth-item:hover .auth-icon {
    background-color: #fbbf24;
    color: #ffffff;
}

.auth-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.auth-text p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 0;
}

.authority-image-wrapper {
    position: relative;
}

.auth-img {
    position: relative;
    border-radius: 3rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    aspect-ratio: 1/1;
}

@media (min-width: 1024px) {
    .auth-img {
        aspect-ratio: 4/5;
    }
}

.auth-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.6), transparent);
}

.auth-badge {
    display: none;
    position: absolute;
    bottom: -2.5rem;
    left: -2.5rem;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    border: 1px solid #f1f5f9;
}

@media (min-width: 768px) {
    .auth-badge {
        display: block;
    }
}

.auth-badge-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.badge-icon {
    width: 3rem;
    height: 3rem;
    background-color: #fbbf24;
    color: #ffffff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.badge-sub {
    font-size: 0.875rem;
    font-weight: 700;
    color: #fbbf24;
    letter-spacing: 0.1em;
}

.badge-desc {
    font-size: 0.875rem;
    color: #64748b;
    max-width: 12.5rem;
}

/* Testimonials */
#testimonials {
    background-color: #f8fafc;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 2.5rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    position: relative;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    color: #334155;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 3rem;
    height: 3rem;
    background-color: #f1f5f9;
    color: #0f172a;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.user-name {
    font-weight: 700;
    color: #0f172a;
}

.user-role {
    font-size: 0.875rem;
    color: #64748b;
}

/* FAQ */
#faq {
    background-color: #ffffff;
}

.faq-wrapper {
    max-width: 56rem;
    margin: 0 auto;
}

.faq-list {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #f1f5f9;
}

@media (min-width: 768px) {
    .faq-list {
        padding: 3rem;
    }
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #fbbf24;
}

.chevron {
    color: #fbbf24;
    transition: transform 0.3s ease;
}

.faq-item.active .chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 12.5rem;
    padding-bottom: 1rem;
}

.faq-answer p {
    color: #475569;
    line-height: 1.6;
}

.faq-footer {
    margin-top: 3rem;
    text-align: center;
}

.faq-footer p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.faq-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fbbf24;
    font-weight: 700;
    font-size: 1.125rem;
}

.faq-cta:hover {
    color: #f59e0b;
}

/* Final CTA */
#final-cta {
    background-color: #020617;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
}

.cta-card {
    max-width: 64rem;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-card {
        padding: 6rem;
    }
}

.cta-card h2 {
    font-size: 1.875rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-family: serif;
}

@media (min-width: 768px) {
    .cta-card h2 {
        font-size: 3.75rem;
    }
}

.cta-card p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer */
footer {
    background-color: #020617;
    color: #ffffff;
    padding-top: 6rem;
    padding-bottom: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    height: 3rem;
    filter: brightness(0) invert(1);
    margin-bottom: 2rem;
}

.footer-info p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background-color: #fbbf24;
    color: #020617;
}

footer h4 {
    color: #fbbf24;
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.footer-nav ul li {
    margin-bottom: 1rem;
}

.footer-nav ul li a {
    color: #94a3b8;
}

.footer-nav ul li a:hover {
    color: #fbbf24;
}

.footer-contact ul li {
    display: flex;
    gap: 1rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.footer-contact ul li a:hover {
    color: #fbbf24;
}

.location-content {
    display: flex;
    gap: 1rem;
    color: #94a3b8;
}

.location-content p {
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-legal {
    max-width: 28rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-legal {
        text-align: left;
    }
}

.footer-legal p {
    color: #64748b;
    font-size: 0.75rem;
}

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

@media (min-width: 768px) {
    .footer-brand {
        text-align: right;
    }
}

.brand-name {
    color: #fbbf24;
    font-family: serif;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.copyright {
    color: #475569;
    font-size: 0.75rem;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    width: 4rem;
    height: 4rem;
    background-color: #fbbf24;
    color: #ffffff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: pulse 2s infinite;
}

@media (min-width: 768px) {
    .whatsapp-float {
        display: none;
    }
}
