/* ============================================
   FAQ & FOOTER SECTION STYLES
   ============================================ */

/* FAQ Container */
.faq-container {
      padding: 100px 24px;
      background-color: var(--bg, #fafafa);
      position: relative;
      overflow: hidden;
}

html.dark-mode .faq-container {
      background-color: var(--bg, #09090b);
}

/* Decorative Background Elements */
.faq-container::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(11, 105, 255, 0.1), transparent);
      border-radius: 50%;
      pointer-events: none;
}

.faq-container::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(11, 105, 255, 0.08), transparent);
      border-radius: 50%;
      pointer-events: none;
}

/* FAQ Header */
.faq__header-wrapper {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
      z-index: 1;
}

.faq__badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--surface-2, #f1f1f3);
      color: var(--text-2, #52525b);
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      margin-bottom: 20px;
      border: 1px solid var(--border, #e4e4e7);
}

html.dark-mode .faq__badge {
      border-color: rgba(11, 105, 255, 0.3);
}

@keyframes float {

      0%,
      100% {
            transform: translateY(0);
      }

      50% {
            transform: translateY(-8px);
      }
}

.faq__title {
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 12px;
      line-height: 1.2;
}

.faq__title span {
      background: linear-gradient(135deg, var(--brand), #0854cc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
}

.faq__subtitle {
      font-size: 1.1rem;
      color: var(--muted);
      margin: 0;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
}

/* FAQ Content Wrapper (legacy) */
.faq__content-wrapper {
      max-width: 720px;
      margin: 0 auto 60px;
      position: relative;
      z-index: 1;
}

/* FAQ 2-col layout */
.faq__inner {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 80px;
      align-items: start;
      position: relative;
      z-index: 1;
}

.faq__left {
      position: sticky;
      top: 100px;
}

.faq__heading {
      font-size: 2.8rem;
      font-weight: 900;
      color: var(--text, #0b1830);
      line-height: 1.1;
      letter-spacing: -0.04em;
      margin: 16px 0 20px;
}

.faq__desc {
      font-size: 0.98rem;
      color: var(--muted, #6c757d);
      line-height: 1.7;
      margin-bottom: 32px;
}

.faq__chat-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #0b69ff;
      color: white;
      border: none;
      padding: 13px 22px;
      border-radius: 10px;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 4px 12px rgba(11, 105, 255, 0.2);
}

.faq__chat-btn:hover {
      background: #0854cc;
      transform: translateY(-2px);
      box-shadow: 0 8px 18px rgba(11, 105, 255, 0.28);
}

/* Accordion na coluna direita — estilo separador */
.faq__right .accordion__item {
      border: none !important;
      border-top: 1px solid var(--border, #e4e4e7) !important;
      border-radius: 0 !important;
      background: transparent !important;
      margin-bottom: 0 !important;
      box-shadow: none !important;
}

.faq__right .accordion__item:last-child {
      border-bottom: 1px solid var(--border, #e4e4e7) !important;
}

html.dark-mode .faq__right .accordion__item {
      border-color: rgba(255, 255, 255, 0.08) !important;
}

html.dark-mode .faq__right .accordion__item:last-child {
      border-color: rgba(255, 255, 255, 0.08) !important;
}

.faq__right .accordion__summary {
      padding: 22px 4px;
}

.faq__right .accordion__item.open .accordion__summary {
      background: none !important;
}

.faq__right .accordion__content {
      padding: 0 4px 22px 42px;
}

/* FAQ Categories (legacy) */
.faq__category {
      margin-bottom: 0;
}

.faq__category-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--brand);
      margin-bottom: 16px;
      padding: 8px 14px;
      background: rgba(11, 105, 255, 0.06);
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
}

html.dark-mode .faq__category-title {
      background: rgba(11, 105, 255, 0.1);
}

.faq__category-title::before {
      display: none;
}

/* Accordion Items — custom button-based */
.accordion__item {
      margin-bottom: 8px;
      border-radius: var(--radius-md, 8px);
      border: 1px solid var(--border, #e4e4e7);
      background-color: var(--surface, #ffffff);
      overflow: hidden;
      transition: border-color 0.15s, box-shadow 0.15s;
}

.accordion__item:hover {
      border-color: rgba(11, 105, 255, 0.3);
}

.accordion__item.open {
      border-color: rgba(11, 105, 255, 0.4);
      box-shadow: 0 4px 16px rgba(11, 105, 255, 0.08);
}

html.dark-mode .accordion__item {
      border-color: var(--border, #3f3f46);
}

html.dark-mode .accordion__item.open {
      border-color: rgba(11, 105, 255, 0.3);
}

/* Accordion Summary — button */
.accordion__summary {
      width: 100%;
      padding: 18px 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 1.02rem;
      font-weight: 600;
      color: var(--text);
      background: none;
      border: none;
      text-align: left;
      transition: background 220ms ease, color 220ms ease;
}

.accordion__summary::before {
      content: '+';
      width: 26px;
      height: 26px;
      min-width: 26px;
      background: var(--surface-2, #f1f1f3);
      color: var(--text-2, #52525b);
      border: 1px solid var(--border, #e4e4e7);
      border-radius: 6px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1rem;
      transition: background 0.2s, color 0.2s, transform 0.2s;
      flex-shrink: 0;
}

.accordion__item.open .accordion__summary {
      color: var(--brand);
      background: linear-gradient(90deg, rgba(11, 105, 255, 0.04), transparent);
}

.accordion__item.open .accordion__summary::before {
      content: '−';
      background: linear-gradient(135deg, #0b69ff, #003ea8);
      color: white;
      border-color: transparent;
}

/* Accordion Body (animated via JS) */
.accordion__body {
      max-height: 0;
      overflow: hidden;
}

.accordion__body[hidden] {
      display: block !important;
      max-height: 0;
      overflow: hidden;
}

/* Accordion Content (Answer) */
.accordion__content {
      padding: 12px 20px 20px;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.6;
      animation: slideDown 0.25s ease-out;
}

@keyframes slideDown {
      from {
            opacity: 0;
            transform: translateY(-12px);
      }

      to {
            opacity: 1;
            transform: translateY(0);
      }
}

.accordion__content p {
      margin: 0;
}

.accordion__content strong {
      color: var(--text);
      font-weight: 600;
}

/* FAQ CTA Box */
.faq__cta-box {
      background: linear-gradient(135deg, rgba(11, 105, 255, 0.08), rgba(23, 162, 184, 0.06));
      border: 2px solid rgba(11, 105, 255, 0.15);
      border-radius: 16px;
      padding: 60px 40px;
      text-align: center;
      max-width: 900px;
      margin: 60px auto;
      width: 100%;
      box-sizing: border-box;
      position: relative;
      overflow: hidden;
}


html.dark-mode .faq__cta-box {
      border-color: rgba(11, 105, 255, 0.25);
}

.faq__cta-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 50%, rgba(11, 105, 255, 0.1), transparent);
      pointer-events: none;
}

.cta__title {
      font-size: 2rem;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
}

.cta__subtitle {
      font-size: 1.1rem;
      color: var(--muted);
      margin-bottom: 32px;
      position: relative;
      z-index: 1;
}

.cta__button {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--brand), #0854cc);
      color: white;
      border: none;
      padding: 14px 32px;
      border-radius: 12px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
      box-shadow: 0 8px 20px rgba(11, 105, 255, 0.3);
      position: relative;
      z-index: 1;
}

.cta__button:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(11, 105, 255, 0.4);
}

.cta__button i {
      font-size: 1.1rem;
}

/* ============================================
   FOOTER SECTION STYLES
   ============================================ */

.main-footer {
      background: linear-gradient(180deg, var(--surface), var(--bg));
      border-top: 1px solid rgba(11, 105, 255, 0.1);
      padding: 60px 20px 30px;
      color: var(--text);
      position: relative;
      overflow: hidden;
}

html.dark-mode .main-footer {
      border-top-color: rgba(11, 105, 255, 0.15);
}

/* Footer Decorative Background */
.main-footer::before {
      content: '';
      position: absolute;
      top: -300px;
      right: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(11, 105, 255, 0.05), transparent);
      border-radius: 50%;
      pointer-events: none;
}

/* Footer Container */
.footer__container {
      max-width: 1200px;
      margin: 0 auto 40px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 50px;
      position: relative;
      z-index: 1;
}

/* Footer Logo & Info */
.footer__col--info {
      grid-column: 1;
}

.footer__logo {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
}

.footer__logo::before {
      content: '🐾';
      font-size: 1.5rem;
}

.footer__address {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 20px;
      margin: 0 0 20px 0;
}

.footer__contact {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.8;
      margin: 0;
}

.footer__contact i {
      color: var(--brand);
      margin-right: 6px;
      font-size: 0.9rem;
}

.footer__contact a {
      color: var(--brand);
      text-decoration: none;
      font-weight: 500;
      transition: opacity 0.3s ease, color 0.3s ease;
}

.footer__contact a:hover {
      opacity: 0.7;
      text-decoration: underline;
}

/* Footer Columns */
.footer__col {
      display: flex;
      flex-direction: column;
      gap: 8px;
}

.footer__heading {
      font-size: 11px;
      font-weight: 600;
      color: var(--text-3, #a1a1aa);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin: 0 0 14px 0;
      padding-bottom: 0;
}

/* Footer heading sem underline colorido */
.footer__heading::after {
      display: none;
}

.footer__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
}

.footer__list li {
      margin: 0;
}

.footer__list a {
      color: var(--text-3, #a1a1aa);
      text-decoration: none;
      font-size: 13px;
      transition: color 0.15s;
      display: inline-flex;
      align-items: center;
      gap: 4px;
}

.footer__list a:hover {
      color: var(--text, #09090b);
}

.footer__contact-item {
      margin: 0;
}

/* Footer Copy */
.footer__copy {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      font-size: 0.9rem;
      color: var(--muted);
      padding-top: 20px;
      border-top: 1px solid rgba(11, 105, 255, 0.1);
      position: relative;
      z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
      .faq__inner {
            grid-template-columns: 1fr;
            gap: 48px;
      }

      .faq__left {
            position: static;
      }

      .faq__heading {
            font-size: 2rem;
      }

      .faq__title {
            font-size: 2rem;
      }

      .faq__subtitle {
            font-size: 1rem;
      }

      .accordion__summary {
            padding: 16px 18px;
            font-size: 1rem;
      }

      .accordion__content {
            padding: 0 18px 18px;
      }

      .faq__cta-box {
            padding: 40px 24px;
      }

      .cta__title {
            font-size: 1.6rem;
      }

      .footer__container {
            grid-template-columns: 1fr;
            gap: 40px;
      }

      .footer__col--info {
            grid-column: auto;
      }

      .footer__heading::after {
            width: 40px;
      }
}

@media (max-width: 480px) {
      .faq-container {
            padding: 60px 16px;
      }

      .faq__title {
            font-size: 1.6rem;
      }

      .accordion__summary {
            padding: 14px 16px;
            font-size: 0.95rem;
      }

      .accordion__summary::before {
            width: 24px;
            height: 24px;
            font-size: 1rem;
      }

      .accordion__content {
            padding: 0 16px 16px;
            font-size: 0.9rem;
      }

      .faq__cta-box {
            padding: 32px 20px;
      }

      .cta__title {
            font-size: 1.4rem;
      }

      .cta__button {
            width: 100%;
            justify-content: center;
      }

      .main-footer {
            padding: 40px 16px 20px;
      }

      .footer__container {
            gap: 30px;
      }

      .footer__logo {
            font-size: 1.2rem;
      }

      .footer__address,
      .footer__contact {
            font-size: 0.9rem;
      }

      .footer__list {
            gap: 8px;
      }

      .footer__list a {
            font-size: 0.9rem;
      }
}