/* Estilos Gerais */
:root {
    --color-black: #0a0a0a;
    --color-wine: #6e0d25;
    --color-red: #b22222;
    --color-gold: #d4af37;
    --color-dark-gray: #1a1a1a;
    --color-light-gray: #333333;
    --color-white: #ffffff;
    --color-off-white: #f5f5f5;
    --font-primary: 'Cinzel', serif;
    --font-secondary: 'Raleway', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-off-white);
    background-color: var(--color-black);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

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

/* Botões */
.btn-primary, .btn-secondary, .btn-secondary-old, .btn-nav {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-nav {
    padding: 5px!important;
    margin-top: 0px!important;
}

.btn-primary {
    background-color: var(--color-red);
    color: var(--color-white);
    border: 2px solid var(--color-red);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

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

.btn-secondary:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

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

.btn-secondary-old:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.btn-nav {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 2px;
}

.btn-nav:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.9);
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

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

.logo h1 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--color-gold);
    font-weight: 700;
    letter-spacing: 1px;
}

.nav ul {
    margin-left: 18%;
    width: 100%;
    display: flex;
    gap: 20px;
}

.nav a {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--color-white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0px!important;
    position: relative;
    padding-top: 8px!important;
    float: left;
}

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

.nav a:not(.btn-nav):hover:after {
    width: 100%;
}

.nav a:not(.btn-nav):hover {
    color: var(--color-gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Seções Gerais */
.section {
    padding: 80px 0;
}

.section.dark {
    background-color: var(--color-dark-gray);
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--color-gold);
    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-wine);
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.text-content, .image-content {
    flex: 1;
    text-align: justify;
}

.text-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.image-content img {
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--color-wine);
    width: 100%;
}

.image-content p {
    text-align: center;
    font-style: italic;
    font-weight: bold;
    font-size: 13px;
    margin-top: 5px;
}

/* Dirigentes Section */
.dirigentes-wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.dirigente {
    flex: 0 0 calc(50% - 30px);
    text-align: center;
    max-width: 400px;
}

.dirigente-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--color-gold);
}

.dirigente h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 15px;
}

/* Fundamentos Section */
.fundamentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

.fundamento:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.fundamento-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.fundamento h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--color-gold);
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-section h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--color-dark-gray);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    width: 100%;
}

.footer-logo {
    width: 100%;
}

.footer-logo h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.footer-social h4, .footer-contact h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 15px;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-light-gray);
    border-radius: 50%;
    color: var(--color-gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

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

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

.footer-contact a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Página de Oráculo */
.oraculo-page .hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/oraculo-hero-bg.svg');
}

/* Atendimentos Section */
.atendimentos-wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.atendimento {
    flex: 0 0 calc(50% - 30px);
    text-align: center;
    max-width: 400px;
    background-color: var(--color-light-gray);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.atendimento:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.atendimento-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--color-gold);
}

.atendimento h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.atendimento p {
    margin-bottom: 20px;
}

/* Benefícios Section */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

.beneficio:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.beneficio-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.beneficio h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--color-gold);
    margin-bottom: 15px;
}

/* Depoimentos Section */
.depoimentos-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.depoimento {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    background-color: var(--color-light-gray);
    border-radius: 8px;
    padding: 30px;
    position: relative;
}

.depoimento:before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--color-wine);
    position: absolute;
    top: 10px;
    left: 10px;
    opacity: 0.3;
}

.depoimento-content {
    margin-bottom: 20px;
    font-style: italic;
}

.depoimento-author {
    text-align: right;
    color: var(--color-gold);
    font-weight: 600;
}

/* FAQ Section */
.faq-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.faq-item {
    background-color: var(--color-light-gray);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-item h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.faq-item h3:before {
    content: '\25B6';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-wine);
    font-size: 0.8rem;
}

/* Responsividade */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .content-wrapper .image-content {
        order: -1;
    }
    
    .dirigente, .atendimento {
        flex: 0 0 100%;
        margin-bottom: 40px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .faq-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-primary, .btn-secondary {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

.header .container {
  justify-content: center;
}

.nav {
  width: 100%;
}

.nav ul {
  margin-left: 0;      
  justify-content: center;
}

.nav a {
  float: none;
}

:root { --nav-h: 36px; }

.nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  float: none;
  padding: 0!important;
  height: var(--nav-h);
  line-height: var(--nav-h);
  display: inline-flex;
  align-items: center;
  position: relative;
}

.nav .btn-nav {
  height: var(--nav-h);
  line-height: var(--nav-h);
  padding: 13px 10px 10px 10px!important;
  border-radius: 4px;
}

.nav a:not(.btn-nav)::after {
  bottom: 6px;
}


.init-logos {
  margin-top: 30px;
  display: flex;          
  align-items: center;    
  justify-content: center;
  gap: 10px;              
  flex-wrap: wrap;        
}

.init-logos img {
  max-width: 40%;
  height: auto;
}

.init-logos p {
    width: 100%;
    text-align: center;
    font-style: italic;
    font-weight: bold;
    margin-top: -15px;
}

.logos {
    width: 100%;
    align-items: center;
    justify-content: center;
}

.logos div {
    width: 100%;
    text-align: center;
    align-items: center;
}

.logos img {
    max-width: 15%;
    height: auto;
    display: inline-block;
}

.logos p {
    margin-top: -10px;
    font-style: italic;
    font-weight: bold;
    text-align: center;
}