* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fundo geral degradê vinho → verde musgo */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, #4b0f1d 0%, #245a5e 100%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Remove fundos específicos de seções */
.gallery-section,
.form-section,
.benefits-section,
.fue-section,
.results-section,
.process-section,
.faq-section,
.cta-section,
.disclaimer-section {
    background: transparent !important;
    color: #fff;
}

/* Ajuste dos textos para contraste */
h1, h2, h3, h4, h5, h6, p, label, li, strong, span {
    color: #fff;
}

/* Botões e destaques */
.cta-button,
.submit-button {
    background: linear-gradient(135deg, #fcb900 0%, #fcb900 100%);
    color: #000;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.cta-button:hover,
.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.4);
}

/* Inputs e campos de formulário */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255,255,255,0.9);
    color: #333;
}

/* Cartões e blocos */
.benefit-card,
.accordion-item {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    color: #fff;
}

/* Hero */
.hero-section {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
}

/* Footer */
.footer {
    padding: 60px 20px 20px;
}

.footer-links a {
    color: #f5f5f5;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #fcb900;
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .fue-section {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
}


/* Banner Superior */
.top-banner {
    background: linear-gradient(135deg, #d4a574 0%, #c99a5f 100%);
    color: #ffffff;
    padding: 15px 20px;
    text-align: center;
    font-size: 16px;
}

.top-banner strong {
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), /* camada de escurecimento */
        url("img/fundo.jpeg") center/cover no-repeat; /* imagem de fundo */
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    color: white;
    position: relative;
}

.hero-logo {
    max-width: 500px;
    margin-bottom: 30px;
}

.hero-content {
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    font-weight: 300;
}

.cta-button {
    background: linear-gradient(135deg, #fcb900 0%, #fcb900 100%);
    color: #000;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.4);
}

.hero-disclaimer {
    margin-top: 40px;
    font-size: 0.5rem; /* ← ajuste aqui o tamanho */
    font-style: italic;
    opacity: 0.9;
    text-align: center; /* centraliza o texto */
    max-width: 800px; /* controla largura máxima, se quiser */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

/* Galeria */
.gallery-section {
    width: 100%;
    height: 400px; /* ajuste conforme quiser (altura visível da galeria) */
    overflow: hidden;
    position: relative;
}

.gallery-container {
    overflow: hidden;
    position: relative;
}

.gallery-slider {
    display: flex;
    gap: 20px;
    animation: scroll 40s linear infinite;
    width: max-content;
}


.gallery-slide {
    flex: 0 0 300px;
    height: 300px;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}



@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Formulário Section */
.form-section {
    background: rgba(36, 90, 94, 0.9);
    padding: 80px 20px;
    color: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5px;
}

.form-container .subtitle {
    display: flex;              /* usa flexbox para centralizar */
    justify-content: center;    /* centraliza horizontalmente */
    white-space: nowrap;        /* mantém em uma linha só */
    width: 100%;                /* ocupa toda a linha */
    margin-bottom: 30px;
    font-size: 1.1rem;
    text-align: center;
}

.subtitle strong {
    color: #b8a242;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    background: white;
    color: #333;
}

.submit-button {
    float: right;
    width: auto;
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 50px;
    /* restante do estilo igual ao anterior */
}
.submit-button:hover {
    transform: translateY(-2px);
}

/* Benefits Section */
.benefits-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 80px 20px;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefits-title span {
    color: #C5A035;
}

.benefits-subtitle {
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.benefit-card {
    position: relative;
    text-align: center;
    padding: 50px 25px 30px; /* mais espaço no topo pro ícone */
    background: transparent; /* sem fundo */
    border: 2px solid #fcb900; /* borda dourada */
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* leve sombra pra destacar */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* efeito hover opcional */
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* ícone dourado, sobre a borda superior */
.benefit-icon {
    position: absolute;
    top: -25px; /* coloca o ícone sobre a borda */
    left: 50%;
    transform: translateX(-50%);
    background: #fff; /* círculo branco atrás do ícone */
    color: #fcb900;   /* dourado */
    font-size: 2.5rem;
    padding: 10px;
    border-radius: 50%;
    border: 2px solid #fcb900; /* aro dourado */
}

.benefit-card h3 {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #fcb900;
}

.benefit-card p {
    margin-top: 10px;
    color: #ffffff;
    line-height: 1.5;
}


/* FUE Section */
.fue-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: rgba(255, 255, 255, 0.9);
}

.fue-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fue-content {
    padding: 80px 60px;
}

.fue-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.fue-content h2 span {
    color: #C5A035;
}

.fue-content h3 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
    color: #C5A035;
}

.fue-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.fue-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.fue-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #25D366; /* verde oficial do WhatsApp */
    font-size: 1.1rem;
    transition: transform 0.3s, color 0.3s;
}

.whatsapp-link:hover {
    transform: translateY(-3px);
    color: #1ebc57;
}

.whatsapp-icon {
    width: 26px;
    height: 26px;
    filter: invert(54%) sepia(82%) saturate(398%) hue-rotate(96deg) brightness(94%) contrast(93%);
}

/* Results Section */
.results-section {
    background: rgba(255, 255, 255, 0.9);
}

.results-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* duas colunas: texto + imagem */
    grid-template-areas: "content image"; /* ordem: texto à esquerda, imagem à direita */
    align-items: center;
    gap: 0;
}

.results-content {
    grid-area: content;
    padding: 80px 60px;
    text-align: left;
}

.results-image-container {
    grid-area: image;
}

.results-image {
    width: 100%;
    height: 450px; /* ou o tamanho que desejar */
    object-fit: cover; /* ainda cobre todo o espaço */
    border-radius: 0;
}

.results-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.results-content h2 span {
    color: #C5A035;
}

.results-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #fcb900;
}

/* Responsividade */
@media (max-width: 900px) {
    .results-container {
        grid-template-columns: 1fr;
        grid-template-areas:
            "image"
            "content"; /* no mobile: imagem em cima, texto embaixo */
    }

    .results-content {
        padding: 40px 25px;
        text-align: center;
    }
}

/* ========== SEÇÃO PROCESSO ========== */
.process-section {
    padding: 80px 20px;
    background: rgba(245, 245, 245, 0.8);
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.process-accordion-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.process-accordion-header {
    background: #C5A035;
    color: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    user-select: none;
    transition: background 0.3s ease;
}

.process-accordion-header:hover {
    background: #b08f2e;
}

.process-accordion-header span {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.process-accordion-item.active .process-accordion-header span {
    transform: rotate(180deg);
}

.process-accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #ffffff;
    color: #333;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.process-accordion-item.active .process-accordion-content {
    max-height: 500px;
    padding: 20px;
}

.process-accordion-content p {
    margin: 0;
    line-height: 1.6;
}
/* ========== SEÇÃO FAQ ========== */
.faq-section {
    padding: 80px 20px;
    background: rgba(245, 245, 245, 0.8);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.faq-accordion-header {
    background: #245a5e;
    color: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-accordion-header:hover {
    background: #1a4447;
}

.faq-accordion-header span {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.faq-accordion-item.active .faq-accordion-header span {
    transform: rotate(180deg);
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #ffffff;
    color: #333;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-content {
    max-height: 500px;
    padding: 20px;
}

.faq-accordion-content p {
    margin: 0;
    line-height: 1.6;
}
/* Footer */
.footer {
    background: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 60px 20px 20px;
}
/* ========== ESTILOS COMPARTILHADOS ========== */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  color: #C5A035;
  padding: 0;
  font-weight: 600;
  font-size: 1.5rem;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent; /* remove highlight azul no mobile */
}

.cta-button:hover,
.cta-button:focus,
.cta-button:active,
.cta-button:focus-visible {
  background: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  color: #b08f2e; /* só muda a cor do texto */
  transform: translateY(-1px); /* leve movimento elegante */
}

.cta-button svg {
  stroke: currentColor;
  width: 20px;
  height: 20px;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.highlight-text {
  text-align: center;
  margin-top: 80px;
  font-size: 40px;
}

.gold-line {
  width: 80px;
  height: 3px;
  background-color: #C5A035;
  margin: 80px auto 0;
  border-radius: 2px;
  width: 1000px; 
  height: 2px;
}

.footer {
    background: linear-gradient(135deg, #4b0f1d 0%, #245a5e 100%); /* fundo preto fosco */
    color: white; /* cor do texto */
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.footer-content img{
    max-width: 300px;
}

.footer-logo {
    max-width: 300px;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #C5A035;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #C5A035;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #C5A035; /* dourado */
}

.social-icon {
    color: white;
    margin-right: 10px;
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #C5A035;
}

.copyright {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #aaa;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .fue-section {
        grid-template-columns: 1fr;
    }

    .fue-content {
        padding: 40px 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Call to Action Sections */
.cta-section {
    background: linear-gradient(135deg, #C5A035 0%, #d4a574 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Disclaimer */
.disclaimer-section {
  background: rgba(245, 245, 245, 0.85);
  padding: 40px 20px;
  font-size: medium;
  text-align: center; /* importante */
}

.disclaimer-section p {
  display: inline-block;   /* torna o p do tamanho do conteúdo */
  white-space: nowrap;     /* tudo em uma linha */
  margin: 0 auto;          /* centraliza o inline-block no container */
  color: #ffffff;
  font-size: 1.0rem;
  max-width: none;
}

.hero-section .hero-disclaimer p {
  font-size: 1.0rem !important;
  line-height: 1.4 !important;
  text-align: center !important;
  opacity: 0.9 !important;
  color: #fff !important;
}

.faq-accordion-content p,
.process-accordion-content p {
  color: #000 !important; /* força texto visível */
  background: #fff !important;
  position: relative;
  z-index: 1;
}