@font-face {
  font-family: "Orbitron";
  src: url("./font/Orbitron-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  font-synthesis: none;
}

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", Arial, sans-serif;
  background: url("img/bgpicpin.jpg") center / cover no-repeat fixed;
  color: white;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.bubble-layer {
    position: fixed;
    /* detached from document flow */
    inset: 0;
    /* full viewport */
    width: 100vw;
    height: 100dvh;
    /* handle mobile browser UI changes */
    pointer-events: none;
    z-index: -1;
    overflow: clip;
    /* no scrollbars from children (better than hidden) */
    contain: layout paint;
    /* isolate layout/paint so effects don't escape */
    margin: 0;
}

.bubble {
    position: absolute;
    display: block;
    /* prevents any inline ghost space */
    width: min(52vmax, 600px);
    /* responsive cap */
    height: auto;
    filter: blur(60px);
    opacity: 0.9;
    will-change: transform, opacity;
    user-select: none;
}

.b1 {
    width: 500px;
    top: -300px;
    left: -350px;
}

.b2 {
    top: 400px;
    right: -350px;
    opacity: 1;
}

.b3 {
    top: 35%;
    left: -400px;
}

.b4 {
    left: 30%;
    width: 550px;
    top: -90px
}

.b5 {
    top: 55%;
    right: -400px;
    opacity: 5;
}

.b6 {
    width: 400px;
    left: 290px;
    top: 72%;
    opacity: .9;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
    z-index: 100;
}

.logo {
    display: inline-flex;
    align-items: center;
    margin-top: -8px;
    text-decoration: none
}

.logo-img {
    height: 60px;
    margin-left: -8px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.about-hero {
    position: relative;
    text-align: center;
    padding: 7rem 5rem;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 1;
}

.about-hero h1 {
    font-family: "Lato", sans-serif;
    font-size: 7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: auto;
    margin-top: 2rem;
    margin-bottom: 1rem;
    background: #ffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero h3 {
    font-family: "Lekton", sans-serif;
    font-size: 1.5rem;
    font-weight: 150;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: auto;
}

.hero-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-btn {
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: "Lato", sans-serif;
    border: none;
    cursor: pointer;
}

.primary-btn {
    background: linear-gradient(90deg, #00c3ff, #7b2ff7);
    color: white;
}

.secondary-btn {
    background: transparent;
    color: #fff;
    border: 2px solid currentColor;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px #7b2ff7;
    background: white;
    color: #300c69;
    border: none;
}

/* mobile adjustments */
@media (max-width: 900px) {
    .about-hero__title {
        position: static;
        font-size: clamp(2.5rem, 12vw, 6rem);
        text-align: center;
    }

    .about-hero__titles {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: .2em;
        height: 100%;
    }

    .about-hero__image {
        height: 70vh;
        right: -10vw;
        opacity: .8;
    }
}

/* mobile adjustments */
@media (max-width: 900px) {
    .transition {
        height: 22vh;
        margin-top: -8vh;
    }

    .transition .light {
        right: -6vw;
        top: -4vh;
        width: 90vw;
    }
}

/* Content Sections */
.content-section {
    padding: 5rem 1.5rem;
}

.content-container {
    max-width: 72rem;
    margin: 0 auto;
}

.trust-container {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    text-wrap: balance;
}

/* === Apenas o OUR HISTORY fica alinhado à esquerda === */
.history-text .section-title {
    text-align: left;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 48rem;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.content-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.content-text {
    font-size: 1.125rem;
    color: #d1d5db;
    line-height: 1.75;
    text-wrap: pretty;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(0, 0, 0, 0.6);
}

.value-card:hover {
    transform: scale(1.0);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.value-description {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.75;
}

/* CTA Section */
.cta-section {
    padding: 5rem 1.5rem;
    text-align: center;
    margin-bottom: 40px !important;
    /* pequeno aumento antes do rodapé */
}

.cta-container {
    max-width: 64rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 2rem;
    text-wrap: balance;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3.75rem;
    }
}

.cta-plus {
    color: white;
}

.cta-divider {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(90deg, #22d3ee 0%, #7b2ff7 100%);
    margin: 0 auto;
}

.footer {
    padding: 1rem 2rem 1rem;
    margin-top: 8rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3,
.footer-section h4 {
    margin: 0 0 0.5rem;
    font-family: "Lato", sans-serif;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: white
}

.footer-logo {
    font-family: "Lato", sans-serif;
    letter-spacing: 0.1em;
    font-size: 1.8rem;
    font-weight: bold;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.8;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffff;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    font-weight: bold;
}

.social-links a:hover {
    background: #ffff;
    transform: translateY(-2px);
    color: #2d2342;
}

.contact-info p {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
    color: #ffffff;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffff;
}

.service {
    position: relative;
    text-align: center;
    padding: 7rem 5rem;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 1;
}

.service h1 {
    font-family: "Lato", sans-serif;
    font-size: 5.3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: auto;
    margin-bottom: 5rem;
    background: #ffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service h3 {
    font-family: "Lekton", sans-serif;
    font-size: 1.5rem;
    font-weight: 150;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: auto;
}

.what-we-do {
    padding: 4rem 2rem;
    text-align: center;
    z-index: 2;
}

.what-we-do h2 {
    font-family: "Lato", sans-serif;
    font-size: 5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: auto;
    margin-bottom: 5rem;
    opacity: 0.9;
    background: white;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.btn-faqs {
    text-align: center;
    margin-top: 5rem;
    margin-bottom: -2rem;
}

.btn-faqs h2 {
    font-family: 'lato', sans-serif;
    font-size: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-family: "Lato", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: auto;
    margin-bottom: 1rem;
    opacity: 0.9;
    background: white;
    background-clip: text;
}

.service-card p {
    font-family: "lato", sans-serif;
    font-size: 1.2rem;
    font-weight: 200;
    letter-spacing: 0.09em;
    margin-bottom: 1rem;
    line-height: auto;
}

.service-placeholder {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    background: linear-gradient(45deg, rgba(0, 191, 255, 0.2), rgba(138, 43, 226, 0.2));
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.service-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.Contact-us h1 {
    font-family: "Lato", sans-serif;
    font-size: 6rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: auto;
    margin-bottom: 1rem;
    opacity: 0.9;
    background: white;
    background-clip: text;
}

.Contact-us h3 {
    font-family: "lekton", sans-serif;
    font-size: 1.05rem;
    max-width: 500px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: auto;
    opacity: 0.9;
    margin-bottom: -3rem;
    background: white;
    background-clip: text;
}



.where-we-are h1 {
    font-family: "Lato", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: auto;
    margin-bottom: 1rem;
    opacity: 0.9;
    background: white;
    background-clip: text;
}

.where-we-are p {
    font-family: "Lekton", sans-serif;
    font-size: 1.05rem;
    max-width: 500px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: auto;
    opacity: 0.9;
    background: white;
    background-clip: text;
}



.container {
    background-color: rgba(255, 255, 255, 0.173);
    padding: 20px 20px;
    width: 40rem;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.container h2 {
    font-family: "Lato", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: auto;
    margin-bottom: 1rem;
    opacity: 0.9;
    background: white;
    background-clip: text;
}

.contact-form .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.contact-form label.full {
    grid-column: 1/-1
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.397);
    background: transparent;
    color: var(--text);
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #ffff
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(255, 255, 255, 0.397);
    background: transparent;
}

.btn {
    display: block;
    width: fit-content;
    margin: 20px auto 0;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #00c3ff, #7b2ff7);
    color: white;
    font-family: 'lato', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    z-index: 2;
}



.btn-primary {
    z-index: 2;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px #7b2ff7;
    background: white;
    color: #300c69;
    border: none;
}

.contact-info {
    padding: 0.3rem 0;
    text-align: left;
}

.contact-info h3 {
    font-family: "Lato", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: auto;
    margin-bottom: 1rem;
    opacity: 0.9;
    background: white;
    background-clip: text;
}

.contact-info ul {
    font-family: "Lekton", sans-serif;
    font-size: 1.05rem;
    max-width: 700px;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: auto;
    margin-bottom: 1rem;
    opacity: 0.9;
    background: white;
    background-clip: text;
}

.modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    transition: opacity .2s ease;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(2px);
}

.modal__dialog {
    position: relative;
    width: min(650px, 92vw);
    max-height: 80vh;
    overflow: auto;
    border-radius: 16px;
    background: #111827;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
    padding: 1.25rem 1.25rem 1.5rem;
    transform: translateY(10px) scale(.98);
    transition: transform .2s ease;
}

.modal.is-open .modal__dialog {
    transform: translateY(0) scale(1);
}

.modal__close {
    position: absolute;
    top: .6rem;
    right: .6rem;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: #1f2937;
    color: #e5e7eb;
    cursor: pointer;
    font-size: 1rem;
    line-height: 36px;
}

.modal__close:hover {
    background: #374151;
}

#legal-title {
    margin: 0 2rem 0.75rem 0;
    font-size: 1.25rem;
    letter-spacing: .2px;
}

.modal__content p {
    margin: .75rem 0;
    line-height: 1.5;
}

.modal__content a {
    color: #93c5fd;
    text-decoration: underline;
}

.modal__content a:hover {
    text-decoration: none;
}

.contact-info a {
    color: var(--accent);
}


.con {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 6rem 4rem;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 0;
}

.contact-info-column {
    flex: 1;

    max-width: 600px;
    padding-top: 1rem;
}

.Contact-us {
    padding: 0;
    text-align: left;
    margin-bottom: 3rem;
}

.Contact-us h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.Contact-us h3 {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 0;
    line-height: 1.6;
}

.where-we-are {
    padding: 0;
    text-align: left;
    margin-top: 2rem;
}

.where-we-are h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.where-we-are p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.btn-faq {
    margin-top: 2rem;
    margin-right: 0;
    text-align: center;
}

.contact-section {
    flex: 1;
    padding: 0;
    margin: 0;
    max-width: 500px;
}

.container {
    margin-left: 0;
    width: 100%;
    padding: 30px;
}

.container h2 {
    margin-bottom: 1.5rem;
}

.contact-form .grid {
    gap: 20px;
}

.contact-form input[type="date"] {
    height: 48px;
}


@media (max-width: 1024px) {
    .con {
        padding: 4rem 2rem;
        gap: 2rem;
    }

    .Contact-us h1 {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    .con {
        flex-direction: column;
        padding: 3rem 1.5rem;
        gap: 3rem;
    }

    .contact-info-column,
    .contact-section {
        max-width: 100%;
    }

    .Contact-us {
        text-align: left;
    }

    .where-we-are {
        text-align: left;
    }

    .Contact-us h1 {
        font-size: 3.5rem;
    }

    .Contact-us h3,
    .where-we-are p {
        font-size: 1rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .where-we-are h1 {
        font-size: 2rem;
    }

    .contact-form .grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-form label.full {
        grid-column: 1;
    }

    .btn-faq {
        text-align: center;
    }
}

body {
    font-family: "Open Sans", Arial, sans-serif;
  }
  
  h1, h2, h3, h4, h5, h6,
  nav,
  .nav-links a,
  .logo,
  .about-hero h1, .about-hero h3,
  .hero-btn, .primary-btn, .secondary-btn,
  .section-title,
  .value-title, .value-description,
  .cta-title,
  .footer-section h3, .footer-section h4, .footer-logo,
  .service h1, .service h3,
  .what-we-do h2,
  .service-card h3, .service-card p,
  .btn-faqs h2,
  .Contact-us h1, .Contact-us h3,
  .where-we-are h1, .where-we-are p,
  .container h2,
  .contact-info h3, .contact-info ul,
  .btn, .btn-primary,
  .tabs, .tab-btn, .tab-btn.active,
  .tabs [role="tab"],
  .modal, .modal__content, #legal-title,
  .btn-faqs, .btn-faqs * {
    font-family: "Orbitron", sans-serif;
    letter-spacing: 0.02em;
    font-weight: 600;
  }
  
  p, li, span, a, input, textarea, label {
    font-family: "Open Sans", Arial, sans-serif;
  }
  /* BOTÃO DO MENU NO MOBILE */
.mobile-menu-btn {
    display: none;
    font-size: 2.2rem;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 1001;
  }
  
  /* MENU MOBILE */
  @media (max-width: 768px) {
  
    nav {
      padding: 1rem 1.5rem !important;
    }
  
    /* Exibir botão */
    .mobile-menu-btn {
      display: block;
    }
  
    /* Esconder o menu desktop */
    .nav-links {
      display: none !important;
      position: absolute;
      top: 100%;
      right: 1rem;
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
      width: 200px;
      border-radius: 12px;
      background: #120a25 !important;
      border: 1px solid rgba(255,255,255,0.15);
      z-index: 3000;
    }
  
    /* Quando clicar no botão */
    .nav-links.active {
      display: flex !important;
    }
  
    /* Ajustar links */
    .nav-links a {
      pointer-events: auto;
      display: block;
      padding: 0.3rem 0;
    }
  }
  
  /* ============================================
   TIPOGRAFIA GLOBAL — OPÇÃO A
   (Mantém Orbitron + Lato + Open Sans)
=============================================== */

/* Títulos principais (H1 e H2) → ORBITRON */
h1, h2,
.about-hero h1, .service h1,
.section-title,
.service-card h3 {
    font-family: "Orbitron", sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
}

/* Subtítulos (H3, H4) → LATO */
h3, h4,
.about-hero h3, .service h3,
.footer-section h4,
.value-title {
    font-family: "Lato", sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
}

/* Parágrafos e textos longos → OPEN SANS */
p, li, span,
.content-text,
.value-description,
.service-card p,
.contact-info p,
.container p,
.contact-form label span {
    font-family: "Open Sans", sans-serif !important;
    font-weight: 400;
    line-height: 1.55;
}

/* Botões → LATO */
button, .btn, .hero-btn,
.primary-btn, .secondary-btn {
    font-family: "Lato", sans-serif !important;
    font-weight: 600;
    letter-spacing: 0.03em;
}


/* ============================================
   TIPOGRAFIA MOBILE — AJUSTE DE TAMANHOS
=============================================== */
@media (max-width: 768px) {

    /* ----------- TÍTULOS ----------- */
    h1 {
      font-size: 2.4rem !important;
      line-height: 1.2 !important;
    }
  
    h2 {
      font-size: 1.9rem !important;
    }
  
    h3 {
      font-size: 1.35rem !important;
    }
  
    h4 {
      font-size: 1.15rem !important;
    }
  
    /* ----------- PARÁGRAFOS ----------- */
    p, .content-text, .value-description {
      font-size: 1rem !important;
      line-height: 1.55 !important;
    }
  
    /* ----------- HERO SECTION ----------- */
    .about-hero {
      padding: 4rem 1.5rem !important;
    }
  
    .about-hero h1 {
      margin-bottom: 0.5rem !important;
    }
  
    /* ----------- CARDS ----------- */
    .service-card,
    .value-card {
      padding: 1.25rem !important;
    }
  
    /* ----------- CONTAINERS ----------- */
    .content-section {
      padding: 2.5rem 1.25rem !important;
    }
  
    /* ----------- BOTÕES ----------- */
    .btn, .hero-btn {
      padding: 10px 18px !important;
      font-size: 0.95rem !important;
    }
  }