/* ===== VARIÁVEIS CSS ===== */
:root {
  --primary-color: #112b5c;
  --secondary-color: #d5b359;
  --tertiary-color: #d1b27c;
  --fourth-color: #112b5c;
  --text-dark: #333;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

/* ===== ESTILOS GERAIS ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--tertiary-color)
  );
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

section {
  padding: 80px 0;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary-color), #1a4080);
  border: none;
  color: var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 43, 94, 0.3);
  color: var(--white);
}

.btn-secondary-custom {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--tertiary-color)
  );
  border: none;
  color: var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(213, 178, 89, 0.3);
  color: var(--white);
}

/* ===== HEADER / NAVBAR ===== */
.navbar {
  background: var(--fourth-color);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
}

.navbar-brand {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.navbar-brand span {
  color: var(--secondary-color);
}

.navbar-nav .nav-link {
  color: var(--secondary-color);
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--tertiary-color);
}

.navbar-nav .nav-link.active {
  color: var(--bg-light);
  font-weight: 700;
}

.btn-whatsapp-nav {
  background: #25d366;
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-left: 15px;
}

.btn-whatsapp-nav:hover {
  background: #1da851;
  color: var(--white);
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a4080 100%);
  color: var(--white);
  padding: 150px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>')
    no-repeat bottom;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
}

.hero-section .lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: fadeInUp 1.2s ease;
}

.hero-buttons {
  animation: fadeInUp 1.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SOBRE A EMPRESA ===== */
.about-section {
  background: var(--white);
}

.about-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid var(--secondary-color);
  margin-bottom: 20px;
}

.about-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* ===== MISSÃO, VISÃO E VALORES ===== */
.mvv-section {
  background: var(--bg-light);
}

.mvv-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
  border-top: 4px solid var(--secondary-color);
}

.mvv-card:hover {
  transform: translateY(-10px);
}

.mvv-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.mvv-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* ===== SERVIÇOS ===== */
.services-section {
  background: var(--white);
}

.service-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.service-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.service-card h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* ===== IMPOSTO DE RENDA ===== */
.ir-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a4080 100%);
  color: var(--white);
}

.ir-section .section-title {
  color: var(--white);
}

.ir-section .section-title::after {
  background: var(--secondary-color);
}

.ir-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  height: 100%;
}

.ir-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.ir-card i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.ir-card h4 {
  margin-bottom: 15px;
}

/* ===== CONTEÚDOS EDUCATIVOS ===== */
.content-section {
  background: var(--bg-light);
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-img i {
  font-size: 4rem;
  color: var(--white);
}

.blog-card-body {
  padding: 25px;
}

.blog-card h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.blog-tag {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

/* ===== CAROUSEL INSTAGRAM ===== */
/* .instagram-section {
  background: var(--white);
}

.instagram-post {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.instagram-post-img {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #f77737);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
}

.instagram-post-content {
  padding: 20px;
}

.instagram-post-content h5 {
  color: var(--primary-color);
  margin-bottom: 10px;
} */

/* ===== CALENDÁRIO FISCAL ===== */
.calendar-section {
  background: var(--bg-light);
}

.calendar-item {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid var(--secondary-color);
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.calendar-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.calendar-date {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.calendar-alert {
  background: #fff3cd;
  border-left-color: #ffc107;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--white);
}

.accordion-button {
  background: var(--bg-light);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: var(--white);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--secondary-color);
}

/* ===== CONTATO ===== */
.contact-section {
  background: var(--bg-light);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-info {
  background: linear-gradient(135deg, var(--primary-color), #1a4080);
  color: var(--white);
  padding: 40px;
  border-radius: 15px;
  height: 100%;
}

.contact-info-item {
  margin-bottom: 30px;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-right: 15px;
}

.map-container {
  width: 100%;
  height: 150px;
  background: var(--bg-light);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  margin-top: 30px;
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1da851;
  color: var(--white);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: start;
}

.footer-logo span {
  color: var(--secondary-color);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
}

.disclaimer {
  background: #ffc107;
  color: #333;
  padding: 10px;
  text-align: center;
  font-weight: 600;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section .lead {
    font-size: 1.1rem;
  }

  section {
    padding: 50px 0;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
    bottom: 20px;
    right: 20px;
  }
}
