/* ============================================================
   ADAMI CAPTAL WEALTH PLANNING LTDA - Company Style
   Template 9: Burgundy & Gold
   Primary: #6B2D47 | Accent: #D4AF7A | Dark: #3A1829 | Light: #FDF9F5
   Font: Inter Tight (100-900)
   ============================================================ */

/* --- Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary: #6B2D47;
  --accent: #D4AF7A;
  --dark: #3A1829;
  --light-bg: #FDF9F5;
  --white: #ffffff;
  --black: #000000;
  --text-dark: #1a1a1a;
  --text-muted: #6c757d;
  --font-family: 'Inter Tight', sans-serif;
}

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

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

/* --- Typography --- */
.display-1 { font-weight: 700; }
.display-2 { font-weight: 600; }
.display-4 { font-weight: 500; }
.display-5 { font-weight: 500; }
.display-7 { font-weight: 400; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
}

.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.text-black { color: var(--black) !important; }
.text-white { color: var(--white) !important; }

/* --- Buttons --- */
.btn-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 4px;
  padding: 12px 32px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: var(--dark) !important;
  border-color: var(--dark) !important;
}

.btn-black {
  background-color: var(--black) !important;
  border-color: var(--black) !important;
  color: var(--white) !important;
  border-radius: 4px;
  padding: 12px 32px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-black:hover {
  background-color: var(--dark) !important;
  border-color: var(--dark) !important;
}

.btn-black-outline {
  background-color: transparent !important;
  border: 2px solid var(--black) !important;
  color: var(--black) !important;
  border-radius: 4px;
  padding: 10px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-black-outline:hover {
  background-color: var(--black) !important;
  color: var(--white) !important;
}

/* --- Navbar (Template 9 spec: NO navbar-fixed-top, content-wrap container-fluid) --- */
.custom-navbar {
  background-color: var(--white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  padding: 12px 0;
}
.custom-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.custom-navbar .navbar-brand img {
  height: 3rem;
  border-radius: 6px;
}
.custom-navbar .navbar-caption {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary) !important;
  text-decoration: none;
}
.custom-navbar .nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--black) !important;
  padding: 8px 16px !important;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: var(--primary) !important;
  background-color: rgba(107, 45, 71, 0.06);
}
.custom-navbar .navbar-buttons .btn {
  padding: 10px 24px;
  font-size: 0.95rem;
}
.custom-navbar .navbar-toggler {
  border: none;
  padding: 8px;
}
.custom-navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

/* --- Hero Section (Template 9: Split hero, NOT full-screen, NOT parallax, container-fluid) --- */
.hero-split {
  padding: 140px 0 80px;
  background-color: var(--light-bg);
}
.hero-split .hero-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}
.hero-split .hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.hero-split .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 20px 0;
}
.hero-split .hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.hero-split .hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.hero-split .hero-details {
  display: flex;
  gap: 30px;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.hero-split .hero-detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.hero-split .hero-detail-item i {
  color: var(--accent);
  font-size: 1.2rem;
}

/* --- Section Common --- */
.section-padding {
  padding: 80px 0;
}
.section-light {
  background-color: var(--light-bg);
}
.section-dark {
  background-color: var(--dark);
  color: var(--white);
}
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }

/* --- Features / Services Cards (3-column) --- */
.feature-card {
  background: var(--white);
  border-radius: 10px;
  padding: 35px 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.feature-card .feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(107, 45, 71, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card .feature-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}
.feature-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Image + Text Sections --- */
.img-text-section .text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.img-text-section .text-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}
.img-text-section .text-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.img-text-section img {
  border-radius: 8px;
  width: 100%;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

/* --- Achievements Section --- */
.achievement-card {
  text-align: center;
  padding: 30px 20px;
}
.achievement-card .achievement-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.achievement-card .achievement-label {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- Team Section --- */
.team-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
  height: 100%;
}
.team-card:hover {
  transform: translateY(-5px);
}
.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.team-card .team-info {
  padding: 20px;
  text-align: center;
}
.team-card .team-info h5 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.team-card .team-info .role {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 8px;
}
.team-card .team-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- FAQ Accordion --- */
.accordion-faq .accordion-button {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark);
  background-color: var(--white);
  border: none;
  padding: 18px 20px;
  box-shadow: none;
}
.accordion-faq .accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: rgba(107, 45, 71, 0.03);
}
.accordion-faq .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
.accordion-faq .accordion-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.accordion-faq .accordion-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 20px 20px;
}

/* --- Contact Form --- */
.contact-form-wrapper {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.contact-form-wrapper .form-control {
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}
.contact-form-wrapper .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107, 45, 71, 0.08);
}
.contact-form-wrapper textarea.form-control {
  min-height: 130px;
}

/* --- Contact Info Cards --- */
.contact-info-card {
  text-align: center;
  padding: 25px 20px;
}
.contact-info-card .contact-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.4rem;
}
.contact-info-card h5 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.contact-info-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Map --- */
.map-wrapper {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Footer --- */
.footer {
  background-color: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 40px 0 25px;
}
.footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.footer .footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer .footer-links a:hover {
  color: var(--accent);
}
.footer .footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* --- Page Header (for sub-pages) --- */
.page-header {
  background-color: var(--light-bg);
  padding: 120px 0 50px;
  text-align: center;
}
.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.page-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .hero-split { padding: 120px 0 60px; }
  .hero-split .hero-content h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .page-header h1 { font-size: 2rem; }
  .custom-navbar .navbar-collapse {
    padding-top: 15px;
  }
  .custom-navbar .nav-link {
    padding: 10px 0 !important;
  }
}

@media (max-width: 767px) {
  .hero-split { padding: 100px 0 40px; }
  .hero-split .hero-content h1 { font-size: 1.8rem; }
  .hero-split .hero-content p { font-size: 1rem; }
  .section-title { font-size: 1.6rem; }
  .feature-card { margin-bottom: 20px; }
  .team-card img { height: 220px; }
  .contact-form-wrapper { padding: 25px; }
}

/* --- Legal Pages Shared --- */
.container a {
  color: var(--primary);
  text-decoration: none;
}
.container a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.wp-block-heading {
  margin-top: 30px;
  margin-bottom: 15px;
}

/* Cookie table styling */
.cookie-tables-white .wp-block-table table,
.cookie-tables-white .wp-block-table th,
.cookie-tables-white .wp-block-table td {
  border: 1px solid black !important;
  border-collapse: collapse !important;
}
.cookie-tables-white .wp-block-table th,
.cookie-tables-white .wp-block-table td {
  padding: 12px 8px !important;
}
.cookie-tables-white .wp-block-table th {
  background-color: #f0f0f0;
  font-weight: 600;
}
