/* Reset e Estilos Globais */
:root {
  --primary-color: #1a2a3a;
  --secondary-color: #2c3e50;
  --accent-color: #d4af37;
  --text-color: #f0f0f0;
  --text-dark: #333;
  --bg-dark: #0f1923;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    position: relative;
    overflow-x: hidden;
    background-color: var(--bg-dark);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    z-index: -1;
    animation: bgMove 60s linear infinite;
}

@keyframes bgMove {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 1000px; }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

/* Botões */
.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-primary:hover {
    background-color: #e6c260;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-color);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.btn-link i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-link:hover i {
    transform: translateX(3px);
}

.btn-link:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.btn-link:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Cabeçalho */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    background: linear-gradient(135deg, #0f1923 0%, var(--primary-color) 100%);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 5px;
}

.logo p {
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.nav ul {
    display: flex;
    align-items: center;
}

.nav ul li {
    margin-left: 25px;
    position: relative;
}

.nav ul li a {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    transition: color 0.3s ease;
    position: relative;
}

.nav ul li a:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.nav ul li a:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-controls button {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-controls button:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

/* Seção Áreas de Atuação */
.areas-atuacao {
    padding: 100px 0;
    background-color: rgba(15, 25, 35, 0.7);
    backdrop-filter: blur(5px);
}

.section-title {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.area-card {
    background-color: rgba(26, 42, 58, 0.7);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.area-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.area-card:hover:before {
    transform: scaleX(1);
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.area-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.area-card:hover .area-icon {
    background-color: var(--accent-color);
}

.area-icon i {
    font-size: 30px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.area-card:hover .area-icon i {
    color: var(--text-dark);
}

.area-card h3 {
    margin-bottom: 20px;
    font-size: 22px;
    position: relative;
    padding-bottom: 15px;
}

.area-card h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: rgba(212, 175, 55, 0.5);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.area-card ul {
    text-align: left;
    margin-bottom: 25px;
}

.area-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.area-card ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Seção Sobre Nós */
.sobre-nos {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: rgba(15, 25, 35, 0.7);
    backdrop-filter: blur(5px);
}

.sobre-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.sobre-text {
    flex: 1;
}

.sobre-text p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.diferenciais {
    margin-top: 30px;
}

.diferenciais li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
}

.diferenciais li i {
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 18px;
}

.sobre-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.image-container {
    position: relative;
}

.exp-box {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.exp-box .number {
    font-size: 28px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.exp-box .text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Seção Holding Familiar */
.holding-familiar {
    padding: 100px 0;
    background-color: rgba(26, 42, 58, 0.7);
    backdrop-filter: blur(5px);
}

.holding-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.holding-text {
    flex: 1;
}

.holding-text h2 {
    margin-bottom: 25px;
}

.holding-text p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.beneficios {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.beneficios li {
    display: flex;
    align-items: center;
    background-color: rgba(26, 42, 58, 0.5);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.beneficios li:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: rgba(26, 42, 58, 0.8);
}

.beneficios li i {
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 20px;
    width: 30px;
    text-align: center;
}

.holding-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.holding-image:hover {
    transform: scale(1.02);
}

/* Seção Artigos Recentes */
.artigos-recentes {
    padding: 100px 0;
    background-color: rgba(15, 25, 35, 0.7);
    backdrop-filter: blur(5px);
}

.artigos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.artigo-card {
    background-color: rgba(26, 42, 58, 0.7);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.artigo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.artigo-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.artigo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artigo-card:hover .artigo-image img {
    transform: scale(1.1);
}

.artigo-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.artigo-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.artigo-content h3 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.4;
    color: var(--text-color);
}

.artigo-meta {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-bottom: 15px;
}

.artigo-content p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    flex: 1;
}

.artigo-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.artigo-relacionados {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.artigo-relacionados span {
    margin-right: 5px;
}

.artigo-relacionados a {
    color: var(--accent-color);
    font-weight: 600;
    margin-right: 5px;
}

.artigo-relacionados a:hover {
    text-decoration: underline;
}

/* Seção Contato */
.contato {
    padding: 100px 0;
    background-color: rgba(15, 25, 35, 0.7);
    backdrop-filter: blur(5px);
}

.contato-content {
    display: flex;
    gap: 50px;
}

.contato-info {
    flex: 1;
}

.contato-info h3 {
    margin-bottom: 30px;
    font-size: 24px;
    position: relative;
    padding-bottom: 15px;
    color: var(--text-color);
}

.contato-info h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
}

.contato-info ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.8);
}

.contato-info ul li i {
    margin-right: 15px;
    color: var(--accent-color);
    font-size: 18px;
    margin-top: 3px;
}

.contato-info ul li strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-color);
}

.horario-atendimento {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.horario-atendimento h4 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.horario-atendimento h4 i {
    margin-right: 10px;
    color: var(--accent-color);
}

.horario-atendimento p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.social-contato {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #e6c260;
    transform: translateY(-3px);
}

.contato-form {
    flex: 1;
    background-color: rgba(26, 42, 58, 0.7);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Mapa */
.mapa {
    height: 450px;
}

.mapa iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(50%) contrast(90%) brightness(80%);
}

/* Rodapé */
.footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 40px 0 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: rgba(212, 175, 55, 0.5);
    bottom: 0;
    left: 0;
}

.footer-col p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--accent-color);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.social-links a:hover {
    background-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

.footer-col ul li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.footer-col ul li a {
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-col ul li i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: var(--accent-color);
}

.footer-bottom {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    line-height: 1.4;
}

.footer-bottom p {
    margin-bottom: 8px;
}

.footer-bottom a {
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #e6c260;
}

/* Botão do WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsividade */
@media (max-width: 1200px) {
    .hero-content h2 {
        font-size: 42px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 36px;
    }
    
    .sobre-content,
    .holding-content,
    .contato-content {
        flex-direction: column;
    }
    
    .sobre-image,
    .holding-image {
        margin-top: 40px;
        max-width: 600px;
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: all 0.5s ease;
        overflow-y: auto;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .nav ul li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav ul li a {
        display: block;
        padding: 10px;
        color: #fff;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-content h2 {
        font-size: 30px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .beneficios {
        grid-template-columns: 1fr;
    }
    
    .contato-form {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 26px;
    }
    
    .hero-content p {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .areas-grid,
    .artigos-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col {
        margin-bottom: 30px;
    }
    
    .footer-col:last-child {
        margin-bottom: 0;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}