/* ===== Variáveis ===== */
:root {
    /* Cores */
    --color-primary: #1A365D;      /* Azul escuro */
    --color-secondary: #D4AF37;    /* Dourado/Âmbar */
    --color-accent: #2E8B57;       /* Verde */
    --color-light: #F5F5F5;        /* Cinza claro */
    --color-white: #FFFFFF;        /* Branco */
    --color-dark: #333333;         /* Cinza escuro */
    --color-gray: #666666;         /* Cinza médio */
    --color-light-gray: #DDDDDD;   /* Cinza claro para bordas */
    --color-danger: #E74C3C;       /* Vermelho para alertas */
    
    /* Fontes */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    
    /* Tamanhos */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 5px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
}

ul {
    list-style: none;
}

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

/* ===== Layout ===== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
  
    padding-left: 0;
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-secondary);
}

/* ===== Botões ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #25704a;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}

.btn-secondary:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}



.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px; /* Espaço entre logo, nav e contatos */
	height: 100%;
}

.logo {
    margin: 0;
    padding: 0;
}

.logo-img {
    height: 80px !important;
    width: auto !important;
    object-fit: contain;
    
    display: block;
    height: 80px;
}


.logo a {
   
    display: inline-block;
    text-decoration: none;
}

.logo h1 {
    font-size: 24px;
    margin: 0;
    color: var(--color-primary);
}

.logo span {
    color: var(--color-secondary);
}

.main-nav {
    display: flex;
    align-items: center;
}


.nav-list {
    display: flex;
    gap: 30px; /* Reduzido para aproximar os links */
    list-style: none;
    padding: 0;
    margin: 0;
}



.nav-list a {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.contact-info {
    display: flex;
    gap: 15px;
}

.contact-info.stacked {
    flex-direction: column;
    align-items: flex-end; /* ou center, se quiser centralizar */
}

.contact-info a {
    display: flex;
    align-items: center;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
}

.contact-info i {
    margin-right: 5px;
    font-size: 20px; /* ou 22px se quiser mais destaque */
}



.phone {
    color: var(--color-primary);
}

.whatsapp {
    color: #25D366;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* ===== Hero Section ===== */
.hero {
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2c4c7c 100%);
    color: var(--color-white);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-white);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* ===== About Section ===== */
.about {
    background-color: var(--color-light);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 40px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 18px;
}

.about-alert {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #FFF3CD;
    border-left: 4px solid #FFC107;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    max-width: 800px;
    margin: 0 auto;
}

.about-alert i {
    font-size: 24px;
    color: #FFC107;
}

.about-alert p {
    margin: 0;
    font-size: 16px;
}

/* ===== Benefits Section ===== */
.benefits {
    background-color: var(--color-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    border-top: 3px solid var(--color-secondary);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 36px;
    color: var(--color-secondary);
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--color-gray);
}

/* ===== How It Works Section ===== */
.how-it-works {
    background-color: var(--color-light);
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 60px;
    right: 60px;
    height: 2px;
    background-color: var(--color-light-gray);
    z-index: 1;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--box-shadow);
}

.step-icon i {
    font-size: 32px;
    color: var(--color-secondary);
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step p {
    color: var(--color-gray);
}

/* ===== Types Section ===== */
.types {
    background-color: var(--color-white);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.type-card {
    background-color: var(--color-light);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.type-card:hover {
    box-shadow: var(--box-shadow);
    transform: translateY(-5px);
}

.type-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.type-card p {
    margin-bottom: 20px;
    color: var(--color-gray);
}

/* ===== Testimonials Section ===== */
.testimonials {
    background-color: var(--color-light);
    position: relative;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial {
    padding: 20px;
}

.testimonial-content {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--color-white);
    transform: rotate(45deg);
}

.testimonial-content p {
    font-style: italic;
    color: var(--color-gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author p {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--color-primary);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--color-secondary);
}

/* ===== FAQ Section ===== */
.faq {
    background-color: var(--color-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--color-light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--color-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 18px;
    margin: 0;
}

.faq-toggle {
    font-size: 16px;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

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

.faq-item.active .faq-question {
    background-color: var(--color-primary);
}

.faq-item.active .faq-question h3 {
    color: var(--color-white);
}

.faq-item.active .faq-toggle {
    color: var(--color-white);
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p, .faq-answer ul, .faq-answer ol {
    margin-bottom: 15px;
}

.faq-answer ul, .faq-answer ol {
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 5px;
}

/* ===== Contact Section ===== */
.contact {
    background-color: var(--color-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info-block p {
    margin-bottom: 30px;
    color: var(--color-gray);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-method i {
    width: 40px;
    height: 40px;
    background-color: rgba(26, 54, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 18px;
}

.contact-method h4 {
    font-size: 16px;
    margin: 0 0 5px;
}

.contact-method p {
    margin: 0;
    color: var(--color-gray);
}

.contact-form-block {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-light-gray);
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check input {
    width: auto;
}

.form-check label {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
}

.form-check a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 60px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    color: var(--color-white);
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--color-secondary);
}

.footer-logo p {
    opacity: 0.8;
}

.footer h3 {
    color: var(--color-white);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-secondary);
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: var(--color-white);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--color-secondary);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-contact i {
    color: var(--color-secondary);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
}

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

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--color-white);
    opacity: 0.8;
    font-size: 14px;
}

.footer-copyright p {
    opacity: 0.8;
    font-size: 14px;
}

/* ===== Responsividade ===== */
@media (max-width: 1023px) {
    .header {
        height: 70px;
    }
    
    .hero {
        padding-top: calc(70px + 60px);
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .steps::before {
        display: none;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .contact-info {
        display: none;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 28px;
    }
    
    .benefit-card,
    .type-card {
        padding: 20px;
    }
    
    .section {
        padding: 60px 0;
    }
}


.precatorios-section {
  background-color: var(--color-light);
  padding: 60px 0;
}

.precatorios-table-wrapper {
  overflow-x: auto;
}

.precatorios-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-secondary);
  background-color: var(--color-white);
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.precatorios-table th,
.precatorios-table td {
  padding: 14px 18px;
  border: 1px solid var(--color-light-gray);
  text-align: left;
}

.precatorios-table th {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-primary);
  text-transform: uppercase;
  font-size: 14px;
}

.precatorios-table tr:hover {
  background-color: #f1f1f1;
}
#precatorios {
    scroll-margin-top: 100px; /* ou o tamanho do header */
}




.contact-info .fa-phone-alt {
    font-size: 30px;
    color: var(--color-primary); /* ou outro tom desejado */
}

.contact-info .fa-whatsapp {
    font-size: 30px;
    color: #25D366;
}






/* Botão flutuante do WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;   /* distância do fundo */
  right: 20px;    /* distância da direita */
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1ebe5b;
}
