/* Fontes e Variáveis */
:root {
    --primary-color: #670908;
    --secondary-color: #e8eaf6;
    --accent-color: #c68b33;
    --dark-color: #0d0d0d;
    --light-color: #f5f5f5;
    --text-color: #333;
    --text-light: #777;
    --font-title: 'Playfair Display', serif;
    --font-text: 'Poppins', sans-serif;
    --transition: all 0.4s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: var(--font-text);
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 1.6rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title {
    font-size: 3.6rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-subtitle {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.section-divider {
    height: 1px;
    width: 100px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.4rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #c68b33;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto 2rem;
}

.loader p {
    font-size: 1.8rem;
    letter-spacing: 1px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

/* Cursor Personalizado */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 999;
    transition: transform 0.1s;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #c68b3342;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 998;
    transition: transform 0.4s, width 0.4s, height 0.4s;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.headerLogo{
    max-width: 200px;
    margin-top: -10px;
    margin-bottom: -10px;
}

.header.scrolled {
    background-color: white;
    box-shadow: var(--box-shadow);
    padding: 1.5rem 0;
}

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

.logo-container .logo-text {
    font-size: 2.4rem;
    font-weight: 700;
    color: white;
}

.logo-container .logo-text span {
    font-weight: 400;
}

.header.scrolled .logo-text {
    color: var(--primary-color);
}

.nav-list {
    display: flex;
}

.nav-item {
    margin-left: 3rem;
    position: relative;
}

.nav-link {
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
}

.header.scrolled .nav-link {
    color: var(--text-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: var(--transition);
}

.header.scrolled .mobile-menu span {
    background-color: var(--primary-color);
}

.mobile-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(69, 69, 69, 0.5)), url('assets/imagem\ fundo.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 8rem;
}

.hero-title {
    font-size: 5.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.title-line {
    display: block;
    overflow: hidden;
    color: white;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.hero-scroll {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background-color: white;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, transparent, #670908, transparent);
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(300%);
    }
}

/* Sobre a Advogada */
.about-section {
    background-color: rgba(128, 128, 128, 0.181);
}

.about-content {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    flex: 1;
    max-width: 350px;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: url('assets/mariah-2.jpg') no-repeat center center/cover;;
    background-color: #ddd;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.about-badge span {
    font-size: 3.6rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.about-badge p {
    font-size: 1.4rem;
    margin-top: 0.5rem;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.about-list {
    margin-bottom: 3rem;
}

.about-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.about-list i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-right: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.signature {
    margin-top: 3rem;
    font-family: 'Dancing Script', cursive;
    font-size: 2.4rem;
    color: var(--primary-color);
}

/* Áreas de Atuação */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.area-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 4rem 3rem;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.area-card:hover::before {
    height: 10px;
    background-color: var(--accent-color);
}

.area-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.area-card:hover .area-icon {
    background-color: var(--primary-color);
    color: white;
}

.area-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.area-list {
    margin-bottom: 3rem;
}

.area-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.area-list li:last-child {
    border-bottom: none;
}

.area-hover {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 2rem;
    background-color: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
}

.area-card:hover .area-hover {
    bottom: 0;
    opacity: 1;
}

/* Estatísticas */
.stats-section {
    background: linear-gradient(#670908, rgba(0, 0, 0, 0.9)), url('assets/images/stats-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-item {
    padding: 3rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: -20px;
    font-family: var(--font-title);
    color: var(--accent-color);
}

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

@media (max-width: 900px) {
    .stat-number{
        font-size: 30px;
    }

    .stat-item {
        padding: 3px;
    } 
    
    .stat-text{
        font-size: 10px;
    }

    .stats-grid{
        height: 50px;
    }
}

/* Escritório - Layout geral */
.office-content {
    display: flex;
    flex-direction: column; /* Coluna em mobile */
    gap: 3rem; /* Espaço menor em mobile */
    align-items: center;
}

/* Em telas maiores volta para linha */
@media (min-width: 768px) {
    .office-content {
        flex-direction: row;
        gap: 5rem;
    }
}

.office-carousel {
    flex: 1;
    position: relative;
    width: 100%;
}

/* Ajustes do carrossel para mobile */
.office-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 250px; /* Altura menor em mobile */
    width: 100%;
}

@media (min-width: 768px) {
    .carousel-container {
        height: 400px; /* Altura original em desktop */
    }
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    position: relative;
}

.slide-placeholder {
    width: 100%;
    height: 100%;
    background-size: no-repeat center cover;
    background-position: center;
}

.slide-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 748px){
    .slide-placeholder{
        max-width: 375px;
    }
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px; /* Padding menor em mobile */
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    font-size: 1.2rem; /* Fonte menor em mobile */
}

@media (min-width: 768px) {
    .slide-caption {
        padding: 15px;
        font-size: 1.8rem;
    }
}

.carousel-controls {
    position: absolute;
    bottom: 15px; /* Posição mais próxima em mobile */
    right: 15px;
    display: flex;
    gap: 10px; /* Espaço menor entre botões */
    z-index: 10;
}

@media (min-width: 768px) {
    .carousel-controls {
        bottom: 30px;
        right: 30px;
        gap: 15px;
    }
}

.carousel-prev,
.carousel-next {
    width: 35px; /* Botões menores em mobile */
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px; /* Ícone menor */
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .carousel-prev,
    .carousel-next {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

#reviews-widget-67{
    margin-top: 0px;
    margin-bottom: 50px;
    padding-left: 200px;
    padding-right: 100px;
}

/* Ajustes para o conteúdo de informações */
.office-info {
    flex: 1;
    width: 100%; /* Ocupa toda largura em mobile */
}

.office-info h3 {
    font-size: 1.8rem; /* Título menor em mobile */
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .office-info h3 {
        font-size: 2.4rem;
        margin-bottom: 2rem;
    }

    #reviews-widget-67{
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
}
}

.office-info p {
    margin-bottom: 2rem; /* Espaço menor em mobile */
    font-size: 1rem; /* Texto menor */
}

@media (min-width: 768px) {
    .office-info p {
        margin-bottom: 3rem;
        font-size: inherit;
    }
}

.office-details {
    margin-top: 2rem; /* Espaço menor em mobile */
}

@media (min-width: 768px) {
    .office-details {
        margin-top: 3rem;
    }
}

.detail-item {
    display: flex;
    gap: 1.5rem; /* Espaço menor em mobile */
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .detail-item {
        gap: 2rem;
        margin-bottom: 2rem;
    }
}

.detail-item i {
    font-size: 1.5rem; /* Ícone menor em mobile */
    color: var(--accent-color);
    margin-top: 0.3rem; /* Ajuste fino */
}

@media (min-width: 768px) {
    .detail-item i {
        font-size: 2rem;
        margin-top: 0.5rem;
    }
}

.detail-item h4 {
    font-size: 1.4rem; /* Título menor em mobile */
    margin-bottom: 0.3rem;
}

@media (min-width: 768px) {
    .detail-item h4 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
}

.detail-item p {
    font-size: 0.9rem; /* Texto menor em mobile */
}

@media (min-width: 768px) {
    .detail-item p {
        font-size: inherit;
    }
}

/* Mapa */
.map-section {
    height: 400px;
    margin-top: 100px;
    margin-bottom: 200px;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* Seção de Avaliações */
.reviews-section {
    background-color: #f9f9f9;
    padding: 5rem 0;
}

.reviews-content {
    margin-top: 3rem;
}

/* Container do Google Reviews */
.google-reviews-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.more-reviews {
    text-align: center;
    margin-top: 2rem;
}

/* Estilo para o carrossel de avaliações (Opção 2) */
.reviews-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-container {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.review-item {
    min-width: 100%;
    padding: 1.5rem;
    box-sizing: border-box;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: bold;
    margin-left: 1rem;
}

.review-stars {
    color: #FFD700;
    margin-left: auto;
    font-size: 1.2rem;
}

.review-date {
    font-size: 0.8rem;
    color: #777;
    margin-top: 0.3rem;
}

.review-text {
    line-height: 1.6;
    margin-top: 1rem;
}

.reviews-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 1rem;
    z-index: 10;
}

.reviews-prev,
.reviews-next {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.reviews-prev:hover,
.reviews-next:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.leave-review {
    text-align: center;
    margin-top: 2.5rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 0;
    }
    
    .reviews-container {
        padding: 1rem;
    }
    
    .review-item {
        padding: 1rem;
    }
    
    .reviews-prev,
    .reviews-next {
        width: 35px;
        height: 35px;
    }
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 6rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-logo h3 span {
    font-weight: 400;
}

.footer-logo p {
    opacity: 0.8;
    font-size: 1.4rem;
}

.footer-col h4 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    opacity: 0.8;
    font-size: 1.4rem;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    font-size: 1.4rem;
    opacity: 0.8;
}

.footer-contact i {
    color: var(--accent-color);
    font-size: 1.6rem;
    margin-top: 0.3rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    font-size: 1.4rem;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 1.2rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.4rem;
    box-shadow: var(--box-shadow);
    z-index: 100;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--box-shadow-hover);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

/* Responsividade */
@media (max-width: 992px) {
    .about-content,
    .office-content,
    .contact-content {
        flex-direction: column;
    }

    .headerLogo{
        max-width: 150px;
    }

    #reviews-widget-67{
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    }
    
    .about-image {
        min-width: 100%;
    }
    
    .cursor{
        display: none;
    }
    
    .cursor-follower{
        display: none;
    }

    .hero-title {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .nav-item {
        margin: 1.5rem 0;
    }
    
    .nav-link {
        color: var(--text-color) !important;
        font-size: 1.8rem;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .hero-title {
        font-size: 3.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section {
        padding: 6rem 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .about-badge {
        padding: 1.5rem;
    }
    
    .about-badge span {
        font-size: 2.8rem;
    }
    
    .contact-form {
        padding: 3rem 2rem;
    }
}
