@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Primary Colors */
    --color-bg: #000000;
    --color-surface: #111111;
    --color-surface-soft: #1a1a1a;
    --color-gold: #C5A059;
    --color-gold-light: #E2C284;
    --color-gold-dark: #8C6A3B;
    --color-gold-gradient: linear-gradient(135deg, #C5A059, #E2C284, #C5A059);
    --color-text: #F5F5F5;
    --color-text-muted: #A0A0A0;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Layout */
    --section-padding: 100px 20px;
    --container-width: 1200px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--color-bg);
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(197, 160, 89, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(197, 160, 89, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(197, 160, 89, 0.015) 0%, transparent 50%);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism utility */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
}

.glass-gold {
    background: rgba(197, 160, 89, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.glass-gold:hover {
    background: rgba(197, 160, 89, 0.08);
    border-color: rgba(197, 160, 89, 0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: #000;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(197, 160, 89, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
    }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(197, 160, 89, 0.2);
}

/* Section Styling */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title .divider {
    width: 60px;
    height: 3px;
    background: var(--color-gold-gradient);
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(197, 160, 89, 0.3));
    transition: var(--transition);
}

.logo:hover img {
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.5));
    transform: scale(1.05);
}

.logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.6rem;
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 3px;
}

nav ul li a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition);
}

nav ul li a:not(.btn):hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--color-gold);
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background: url('imagens/WhatsApp Image 2026-04-29 at 18.58.17.jpeg') center/cover no-repeat;
    margin-top: 0;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--color-bg), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    display: block;
    font-size: 0.9rem;
    color: var(--color-gold-light);
    text-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.hero .highlight {
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--color-text-muted);
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Sobre */
.sobre {
    position: relative;
}

.sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold-dark), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    z-index: 2;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    filter: sepia(20%) brightness(90%);
    transition: var(--transition-slow);
}

.about-image:hover img {
    filter: sepia(10%) brightness(100%);
    transform: scale(1.02);
}

.image-border {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-gold);
    border-radius: var(--border-radius);
    z-index: -1;
    transition: var(--transition);
}

.about-image:hover .image-border {
    top: 15px;
    left: 15px;
}

.gold-text {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #fff;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--color-text-muted);
}

.quote {
    font-style: italic;
    border-left: 3px solid var(--color-gold);
    padding-left: 20px;
    margin: 30px 0 !important;
    font-size: 1.1rem;
    color: var(--color-text) !important;
    position: relative;
}

.quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 3rem;
    color: var(--color-gold);
    opacity: 0.3;
    font-family: var(--font-heading);
}

.stats-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    position: relative;
    padding-left: 20px;
}

.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 2px;
    background: var(--color-gold-gradient);
    border-radius: 1px;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Direitos Grid */
.direitos {
    position: relative;
}

.direitos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold-dark), transparent);
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.right-card {
    padding: 40px 30px;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.right-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.right-card:hover::before {
    opacity: 1;
}

.right-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-gold-gradient);
    transition: var(--transition);
    border-radius: 1px;
}

.right-card:hover::after {
    width: 80%;
}

.right-card:hover {
    transform: translateY(-10px);
    background: rgba(197, 160, 89, 0.1);
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.1);
}

.right-card i {
    color: var(--color-gold);
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.right-card:hover i {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.4));
}

.right-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
    transition: var(--transition);
}

.right-card:hover h3 {
    color: var(--color-gold-light);
}

.right-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Atuação */
.atuacao {
    position: relative;
}

.atuacao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold-dark), transparent);
}

.atuacao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.atuacao-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.atuacao-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.atuacao-text p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.atuacao-list {
    margin-top: 30px;
}

.atuacao-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--color-text-muted);
    transition: var(--transition);
    padding: 10px 15px;
    border-radius: 8px;
}

.atuacao-list li:hover {
    color: var(--color-text);
    background: rgba(197, 160, 89, 0.05);
    transform: translateX(5px);
}

.atuacao-list li i {
    color: var(--color-gold);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Atuação - Ilustração SVG */
.atuacao-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.atuacao-svg {
    width: 100%;
    max-width: 350px;
    height: auto;
}

/* Perfil Section */
.perfil-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.perfil-card {
    max-width: 500px;
    width: 100%;
    background: rgba(197, 160, 89, 0.05);
    padding: 20px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: var(--transition-slow);
}

.perfil-card:hover {
    transform: translateY(-10px) rotate(1deg);
    border-color: var(--color-gold);
    box-shadow: 0 40px 80px rgba(197, 160, 89, 0.2);
}

.perfil-image-wrapper {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.perfil-image-wrapper img {
    width: 100%;
    display: block;
    transition: var(--transition-slow);
}

.perfil-card:hover .perfil-image-wrapper img {
    transform: scale(1.05);
}

.perfil-cta {
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .perfil-card {
        max-width: 100%;
    }
}

/* Location Section */
.location {
    position: relative;
}

.location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold-dark), transparent);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.location-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(197, 160, 89, 0.2);
    transition: var(--transition-slow);
}

.location-image:hover img {
    transform: scale(1.05);
}

.location-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    border-radius: var(--border-radius-lg);
    pointer-events: none;
}

.location-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.location-text p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.address-box {
    display: flex;
    gap: 20px;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    transition: var(--transition);
}

.address-box:hover {
    background: rgba(197, 160, 89, 0.08);
    border-color: rgba(197, 160, 89, 0.2);
    transform: translateX(5px);
}

.address-box i {
    color: var(--color-gold);
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-top: 5px;
}

.address-box h3 {
    margin-bottom: 10px;
    color: #fff;
}

.address-box p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

/* Contato */
.contato {
    position: relative;
}

.contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold-dark), transparent);
}

.contact-container {
    text-align: center;
}

.contact-box {
    padding: 80px 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(197, 160, 89, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-box h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-box p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.contact-numbers {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-gold);
    padding: 15px 25px;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(197, 160, 89, 0.1);
    background: rgba(197, 160, 89, 0.03);
}

.contact-item:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.1);
}

.contact-item i {
    transition: var(--transition);
}

.contact-item:hover i {
    transform: scale(1.2);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: #050505;
    padding: 80px 0 0;
    border-top: 1px solid var(--color-surface-soft);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold-dark), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-info .logo {
    margin-bottom: 20px;
}

.footer-info p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 1px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

.footer-contact p {
    color: var(--color-text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid var(--color-surface-soft);
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    }

    50% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    }

    100% {
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    color: var(--color-gold);
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: rgba(197, 160, 89, 0.1);
}

/* Mobile Menu Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: all;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold-dark);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Selection */
::selection {
    background: rgba(197, 160, 89, 0.3);
    color: #fff;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero {
        background-attachment: scroll;
    }
}

/* Responsive */
@media (max-width: 992px) {

    .about-grid,
    .atuacao-content,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .atuacao-illustration {
        order: -1;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 20px;
    }

    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    .hero {
        padding-top: 100px;
        text-align: center;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 20px;
        margin-top: 30px;
    }

    .hero-btns .btn {
        width: 100%;
        padding: 18px;
    }

    .contact-numbers {
        flex-direction: column;
        gap: 20px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links ul li a {
        padding-left: 0;
    }

    .footer-links ul li a::before {
        display: none;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .contact-box h2 {
        font-size: 2.2rem;
    }

    .contact-item {
        justify-content: center;
    }

    .stats-grid {
        justify-content: center;
    }

    .stat-item {
        padding-left: 0;
        padding-top: 15px;
    }

    .stat-item::before {
        left: 50%;
        top: 0;
        height: 2px;
        width: 40px;
        transform: translateX(-50%);
    }

    .atuacao-content {
        padding: 30px 20px;
    }

    .contact-box {
        padding: 50px 20px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}