/* ============================================
   SERPA ADVOCACIA EMPRESARIAL - STYLESHEET
   Paleta: Royal Brown #4A3F3B | Stone Brown #CFC8C4 | Preto #000000
   ============================================ */

/* ---------- FONTS ---------- */
@font-face {
    font-family: 'Avenir LT Pro';
    src: url('avenir-lt-pro/AvenirLTProLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir LT Pro';
    src: url('avenir-lt-pro/AvenirLTProRoman.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir LT Pro';
    src: url('avenir-lt-pro/AvenirLTProMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir LT Pro';
    src: url('avenir-lt-pro/AvenirLTProHeavy.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --royal-brown: #473F3B;
    --royal-brown-dark: #3a312e;
    --royal-brown-light: #5d524d;
    --stone-brown: #CFC8C4;
    --stone-brown-light: #e8e4e2;
    --stone-brown-lighter: #f5f3f2;
    --preto: #000000;
    --branco: #ffffff;
    --text-primary: #333333;
    --text-secondary: #666666;
    --shadow-sm: 0 2px 8px rgba(74, 63, 59, 0.08);
    --shadow-md: 0 4px 16px rgba(74, 63, 59, 0.12);
    --shadow-lg: 0 8px 32px rgba(74, 63, 59, 0.16);
    --transition: 0.3s ease;
    --radius: 6px;
    --radius-lg: 12px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Avenir LT Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background-color: var(--branco);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- TYPOGRAPHY ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--royal-brown);
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ---------- SECTION SHARED ---------- */
.section {
    padding: 80px 0;
}

.section--alt {
    background-color: var(--stone-brown-lighter);
}

.section__header {
    text-align: center;
    margin-bottom: 56px;
}

.section__header h2 {
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section__header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--royal-brown);
    margin: 16px auto 0;
    border-radius: 2px;
}

.section__header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all var(--transition);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--royal-brown);
    color: var(--branco);
    border: 2px solid var(--royal-brown);
}

.btn--primary:hover {
    background-color: var(--royal-brown-dark);
    border-color: var(--royal-brown-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--whatsapp {
    background-color: #4A5D23;
    border-color: #4A5D23;
    color: var(--branco);
}

.btn--whatsapp:hover {
    background-color: #3A491C;
    border-color: #3A491C;
}

.btn--secondary {
    background-color: transparent;
    color: var(--branco);
    border: 2px solid var(--branco);
}

.btn--secondary:hover {
    background-color: var(--branco);
    color: var(--royal-brown);
    transform: translateY(-2px);
}

.btn--outline {
    background-color: transparent;
    color: var(--royal-brown);
    border: 2px solid var(--royal-brown);
}

.btn--outline:hover {
    background-color: var(--royal-brown);
    color: var(--branco);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--small {
    padding: 10px 24px;
    font-size: 0.875rem;
}

/* ---------- HEADER / NAV ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: all var(--transition);
}

.header--scrolled {
    background-color: var(--branco);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--branco);
    letter-spacing: 1px;
    transition: color var(--transition);
}

.header__logo span {
    font-weight: 300;
    opacity: 0.85;
}

.header--scrolled .header__logo {
    color: var(--royal-brown);
}

.logo-img {
    height: 48px;
    width: auto;
    transition: all var(--transition);
}

.header__logo .logo-dark {
    display: none;
}

.header__logo .logo-white {
    display: block;
}

.header--scrolled .header__logo .logo-white {
    display: none;
}

.header--scrolled .header__logo .logo-dark {
    display: block;
}

.footer .logo-img {
    height: 64px;
    display: block;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition);
    position: relative;
    letter-spacing: 0.3px;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--branco);
    transition: width var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

.header--scrolled .nav__link {
    color: var(--royal-brown);
}

.header--scrolled .nav__link::after {
    background-color: var(--royal-brown);
}

/* Mobile toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
    z-index: 1001;
}

.nav__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--branco);
    transition: all var(--transition);
    border-radius: 2px;
}

.header--scrolled .nav__toggle span {
    background-color: var(--royal-brown);
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(74, 63, 59, 0.92) 0%,
            rgba(74, 63, 59, 0.78) 50%,
            rgba(74, 63, 59, 0.88) 100%);
    z-index: -1;
}

.hero__content {
    max-width: 720px;
    padding-top: 80px;
}

.hero__badge {
    display: inline-block;
    padding: 6px 18px;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--stone-brown-light);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    color: var(--branco);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero__subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1rem, 2vw, 1.15rem);
    margin-bottom: 36px;
    max-width: 560px;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- SOBRE O ESCRITÓRIO ---------- */
.sobre-content {
    max-width: 1100px;
    margin: 0 auto;
}

.sobre-identidade {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 56px;
}

.sobre-simbolo {
    flex-shrink: 0;
    width: 120px;
}

.sobre-simbolo svg,
.sobre-simbolo img {
    width: 100%;
    height: auto;
}

.sobre-identidade__texto p {
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.85;
}

.sobre-identidade__texto p:last-child {
    margin-bottom: 0;
}

.sobre-identidade__texto strong {
    color: var(--royal-brown);
    font-weight: 700;
}

.sobre-identidade__texto em {
    color: var(--royal-brown);
    font-style: italic;
}

/* Perfil do Advogado */
.sobre-perfil {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px 0;
    position: relative;
}

.perfil-foto {
    flex: 0 0 45%;
    max-width: 400px;
    z-index: 1;
}

.perfil-foto img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: var(--shadow-lg);
    filter: grayscale(100%);
    /* Optional, fits some law firm aesthetics */
}

.perfil-quote {
    background-color: var(--branco);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    margin-left: -80px;
    z-index: 2;
    position: relative;
    max-width: 500px;
}

.quote-icon {
    margin-bottom: 15px;
    color: var(--preto);
}

.quote-text p {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 25px;
    font-weight: 400;
}

.perfil-info {
    position: relative;
}

.perfil-linha {
    width: 30px;
    height: 1px;
    background-color: #ddd;
    margin-bottom: 12px;
}

.perfil-nome {
    font-size: 0.85rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.perfil-cargo {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .sobre-perfil {
        flex-direction: column;
    }

    .perfil-foto {
        width: 100%;
        max-width: 100%;
        flex: 1;
    }

    .perfil-quote {
        margin-left: 0;
        margin-top: -40px;
        width: 90%;
        padding: 30px;
    }
}

/* Missão, Visão, Valores */
.sobre-mvv {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sobre-mvv__card {
    background-color: var(--branco);
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all var(--transition);
}

.sobre-mvv__card:hover {
    transform: translateY(-5px);
}

.sobre-mvv__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
}

.sobre-mvv__card:hover .sobre-mvv__icon {
    background-color: var(--royal-brown);
}

.sobre-mvv__icon svg {
    width: 24px;
    height: 24px;
    fill: var(--royal-brown);
    transition: fill var(--transition);
}

.sobre-mvv__card:hover .sobre-mvv__icon svg {
    fill: var(--branco);
}

.sobre-mvv__card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.sobre-mvv__card p {
    font-size: 0.9rem;
    line-height: 1.75;
}

.sobre-valores-list {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sobre-valores-list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.sobre-valores-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: var(--royal-brown);
    border-radius: 50%;
}

/* ---------- ÁREAS DE ATUAÇÃO ---------- */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.area-card {
    background-color: var(--branco);
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
}

.area-card:hover {
    transform: translateY(-5px);
}

.area-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Removed background hover effect for icons */

.area-card__icon svg {
    width: 32px;
    height: 32px;
    fill: var(--royal-brown);
    transition: transform var(--transition);
}

.area-card:hover .area-card__icon svg {
    transform: scale(1.1);
}

.area-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.area-card p {
    font-size: 0.9rem;
    margin-bottom: 18px;
    line-height: 1.6;
}

.area-card .btn--small {
    font-size: 0.8rem;
    padding: 8px 20px;
}

/* ---------- DIFERENCIAIS ---------- */
#diferenciais {
    background-image: url('images/fundoIcone.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.diferencial-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 50px 40px;
    background-color: var(--branco);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition);
}

.diferencial-item:hover {
    transform: translateY(-5px);
}

.diferencial-item__check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.diferencial-item__check svg {
    width: 24px;
    height: 24px;
    fill: var(--royal-brown);
}

.diferencial-item h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.diferencial-item p {
    font-size: 0.88rem;
}

/* ---------- MÉTODO ---------- */
.metodo-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

.metodo-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 16px;
}

.metodo-step__number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background-color: var(--royal-brown);
    color: var(--branco);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.metodo-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(50% + 28px);
    width: calc(100% - 56px);
    height: 2px;
    background-color: var(--stone-brown);
    z-index: 1;
}

.metodo-step h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.metodo-step p {
    font-size: 0.88rem;
    max-width: 200px;
    margin: 0 auto;
}

/* ---------- INSIGHTS ---------- */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.insight-card {
    background-color: var(--branco);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--stone-brown);
    transition: all var(--transition);
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.insight-card__image {
    height: 180px;
    background-color: var(--stone-brown-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.insight-card__image svg {
    width: 48px;
    height: 48px;
    fill: var(--royal-brown);
    opacity: 0.4;
}

.insight-card__body {
    padding: 28px;
}

.insight-card__tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--stone-brown-lighter);
    color: var(--royal-brown);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.insight-card__body h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.insight-card__body p {
    font-size: 0.9rem;
    margin-bottom: 18px;
    line-height: 1.7;
}

/* ---------- FAQ ---------- */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--stone-brown);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.active {
    border-color: var(--royal-brown);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--royal-brown);
    text-align: left;
    cursor: pointer;
    transition: background-color var(--transition);
    background-color: var(--branco);
}

.faq-item__question:hover {
    background-color: var(--stone-brown-lighter);
}

.faq-item__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--stone-brown-lighter);
    transition: all var(--transition);
    margin-left: 16px;
}

.faq-item.active .faq-item__icon {
    transform: rotate(180deg);
    background-color: var(--royal-brown);
}

.faq-item__icon svg {
    width: 14px;
    height: 14px;
    fill: var(--royal-brown);
    transition: fill var(--transition);
}

.faq-item.active .faq-item__icon svg {
    fill: var(--branco);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item__answer-inner {
    padding: 0 24px 24px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ---------- CONTATO ---------- */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: var(--branco);
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
}

.contato-info__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contato-info__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--stone-brown-lighter);
    border-radius: 50%;
}

.contato-info__icon svg {
    width: 20px;
    height: 20px;
    fill: var(--royal-brown);
}

.contato-info__item h3 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.contato-info__item p {
    font-size: 0.9rem;
}

.contato-info__item a {
    color: var(--royal-brown);
    font-weight: 500;
    transition: opacity var(--transition);
}

.contato-info__item a:hover {
    opacity: 0.7;
}

.contato-map {
    margin-top: 24px;
    flex-grow: 1;
    display: flex;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contato-map iframe {
    width: 100%;
    height: 100%;
    min-height: 250px;
    border: 0;
}

/* Form */
.contato-form {
    background-color: var(--branco);
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
}

.contato-form h3 {
    margin-bottom: 24px;
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--royal-brown);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: inherit;
    font-size: 0.95rem;
    border: 1px solid #eee;
    background-color: #fcfcfc;
    color: var(--text-primary);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--royal-brown);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contato-form .btn {
    width: 100%;
    margin-top: 10px;
    border-radius: 0;
}

/* ---------- FOOTER ---------- */
.footer {
    background-color: var(--royal-brown);
    color: var(--branco);
    padding: 48px 0 24px;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 24px;
}

.footer__logo {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer__logo span {
    font-weight: 300;
    opacity: 0.8;
}

.footer__links {
    display: flex;
    gap: 24px;
}

.footer__links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--branco);
}

.footer__bottom {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ---------- WHATSAPP FLUTUANTE ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: var(--branco);
}

/* ---------- RESPONSIVE ---------- */

/* Tablet */
@media (max-width: 992px) {
    .contato-grid {
        grid-template-columns: 1fr;
    }

    .sobre-mvv {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .metodo-steps {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .metodo-step:not(:last-child)::after {
        top: auto;
        left: 50%;
        bottom: -18px;
        width: 2px;
        height: 18px;
        transform: translateX(-50%);
    }

    .metodo-step p {
        max-width: 320px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .sobre-identidade {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sobre-simbolo {
        width: 100px;
    }

    .sobre-valores-list {
        text-align: left;
    }
}

/* Mobile nav */
@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--royal-brown);
        padding: 80px 32px 32px;
        transition: right var(--transition);
        z-index: 1000;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
    }

    .nav.open {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav__link {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .nav__link::after {
        display: none;
    }

    .nav__overlay {
        display: none;
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav__overlay.show {
        display: block;
    }

    .hero__content {
        text-align: center;
        padding-top: 100px;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    .insights-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .section {
        padding: 60px 0;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .contato-form {
        padding: 24px;
    }
}

/* ---------- ANIMATIONS ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}