/* 
 * Estilos principais para o site de auditoria financeira
 * Cores:
 * - Fundo: #2a2d43 (indigo profundo)
 * - Acentos: #ff6f61 (coral néon), #c6ff00 (limão dourado)
 * - Texto: #f5f5f5 (branco esfumaçado), #212121 (antracite)
 * - Gradientes: de #2a2d43 para #ff6f61
 */

/* Reset e configurações globais */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #212121;
    background-color: #f5f5f5;
    overflow-x: hidden;
    padding-top: 5rem; /* Espaço para o header fixo */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Slab', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #ff6f61;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #2a2d43;
    text-decoration: underline;
}

ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container e layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

.col {
    flex: 1;
    padding: 0 1rem;
}

/* Estilos para botões */
.btn {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-align: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: skewX(-15deg);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover::after {
    width: 120%;
    left: -10%;
}

.btn-primary {
    background: linear-gradient(45deg, #2a2d43, #ff6f61);
    color: #f5f5f5;
}

.btn-secondary {
    background-color: #f5f5f5;
    color: #2a2d43;
    border: 2px solid #2a2d43;
}

.btn-secondary:hover {
    background-color: #2a2d43;
    color: #f5f5f5;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #ff6f61;
    color: #ff6f61;
}

.btn-outline:hover {
    background-color: #ff6f61;
    color: #fff;
}

/* Header e navegação */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #2a2d43;
    color: #f5f5f5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.8rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.main-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav li {
    margin-left: 2rem;
}

.main-nav a {
    color: #f5f5f5;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    text-decoration: none;
}

.main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #c6ff00;
    transition: width 0.3s ease;
}

.main-nav a:not(.btn):hover::after {
    width: 100%;
}

.main-nav a:not(.btn):hover {
    text-decoration: none;
    color: #c6ff00;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #f5f5f5;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2a2d43;
    color: #f5f5f5;
    padding: 1rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-right: 2rem;
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* Hero section */
.hero {
    background: linear-gradient(rgba(42, 45, 67, 0.8), rgba(59, 63, 92, 0.8)), url('../img/Q2cyBX.jpg') no-repeat center center;
    background-size: cover;
    color: #f5f5f5;
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    display: none; /* Убираем псевдоэлемент, так как используем фоновое изображение напрямую */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px; /* Увеличиваем максимальную ширину */
    margin: 0 auto; /* Центрируем блок по горизонтали */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%; /* Центрируем линию */
    transform: translateX(-50%); /* Центрируем линию */
    width: 80px;
    height: 4px;
    background: #c6ff00;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Sobre section */
.sobre {
    background-color: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.sobre::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #ff6f61;
    opacity: 0.1;
}

.sobre::after {
    content: '';
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: #c6ff00;
    opacity: 0.1;
}

.sobre-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.sobre-image {
    flex: 1;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(42, 45, 67, 0.2);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.sobre-image:hover {
    transform: perspective(1000px) rotateY(0);
}

.sobre-text {
    flex: 1;
}

.section-title {
    position: relative;
    margin-bottom: 2rem;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #ff6f61;
}

/* Center line for specific sections */
.galeria .section-title::after,
.servicos .section-title::after,
.depoimentos .section-title::after,
.porque-nos .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Serviços section */
.servicos {
    background-color: #2a2d43;
    color: #f5f5f5;
    position: relative;
    background: linear-gradient(rgba(42, 45, 67, 0.9), rgba(42, 45, 67, 0.95)), url('../img/yadJjS.jpg') no-repeat center center;
    background-size: cover;
}

.servicos::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100px;
    background-color: #f5f5f5;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

.servicos .section-title {
    text-align: center;
    color: #f5f5f5;
}

.servicos .section-title::after {
    left: 50%;
    transform: translateX(-50%);
    background: #c6ff00;
}

.servicos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.servico-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 15px;
    overflow: hidden;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff6f61, #c6ff00);
}

.servico-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #c6ff00;
}

.servico-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f5f5f5;
}

.servico-preco {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1rem 0;
    color: #ff6f61;
}

.servico-detalhes {
    margin-top: 1.5rem;
}

/* Por que nós section */
.porque-nos {
    position: relative;
    padding: 6rem 0;
    color: #f5f5f5;
}

.porque-nos .section-title {
    color: #fff;
    text-align: center;
}

.porque-nos .section-title::after {
    background-color: #c6ff00;
    margin: 1rem auto 0;
}

.motivos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.motivo-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.motivo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.motivo-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6f61, #c6ff00);
    box-shadow: 0 5px 15px rgba(255, 111, 97, 0.3);
}

.motivo-title {
    margin-bottom: 1rem;
    color: #c6ff00;
}

/* Seção de Depoimentos */
.depoimentos {
    position: relative;
    background-color: #f5f5f5;
    padding: 6rem 0;
}

.depoimentos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 45, 67, 0.85), rgba(255, 111, 97, 0.85));
    z-index: 0;
    opacity: 0.08;
}

.depoimentos .section-title {
    color: #2a2d43;
    margin-bottom: 3rem;
    text-align: center;
}

.depoimentos .section-title::after {
    background-color: #ff6f61;
    margin: 1rem auto 0;
}

.depoimentos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.depoimento-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 2rem;
}

.depoimento-texto {
    position: relative;
    margin-bottom: 1.5rem;
}

.depoimento-texto::before {
    content: '"';
    font-family: 'Georgia', serif;
    font-size: 5rem;
    position: absolute;
    top: -2.5rem;
    left: -0.5rem;
    color: rgba(198, 255, 0, 0.3);
    z-index: 0;
}

.depoimento-autor {
    display: flex;
    align-items: center;
}

.depoimento-autor-nome {
    font-weight: 600;
    color: #2a2d43;
}

.depoimento-autor-cargo {
    font-size: 0.9rem;
    color: #666;
}

/* Seção Galeria */
.galeria {
    position: relative;
    background-color: #f9f9f9;
    padding: 6rem 0;
}

.galeria .section-title {
    color: #2a2d43;
    margin-bottom: 3rem;
    text-align: center;
}

.galeria .section-title::after {
    background-color: #c6ff00;
    margin: 1rem auto 0;
}

.galeria-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 0 1rem 1.5rem;
    justify-content: center;
    align-items: center;
    scrollbar-width: thin;
    scrollbar-color: #c6ff00 #f5f5f5;
    -webkit-overflow-scrolling: touch;
    margin: 0 auto;
    max-width: 100%;
}

.galeria-container::-webkit-scrollbar {
    height: 8px;
}

.galeria-container::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}

.galeria-container::-webkit-scrollbar-thumb {
    background-color: #c6ff00;
    border-radius: 10px;
    border: 2px solid #f5f5f5;
}

.galeria-container::-webkit-scrollbar-thumb:hover {
    background-color: #ff6f61;
}

.galeria-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 300px;
    min-width: 280px;
    max-width: 280px;
    flex: 0 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0.5rem;
}

.galeria-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(42, 45, 67, 0.9), transparent);
    padding: 2rem 1.5rem 1.5rem;
    color: #f5f5f5;
    transform: translateY(70%);
    transition: transform 0.3s ease;
}

.galeria-item:hover .galeria-overlay {
    transform: translateY(0);
}

.galeria-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #c6ff00;
}

.galeria-overlay p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeria-item:hover .galeria-overlay p {
    opacity: 1;
}

/* Seção Contato */
.contato {
    padding: 6rem 0;
    background-color: #f5f5f5;
    position: relative;
    background: linear-gradient(rgba(245, 245, 245, 0.95), rgba(245, 245, 245, 0.95)), url('../img/yadJjS.jpg') no-repeat center center;
    background-size: cover;
}

.contato::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100px;
    background-color: #2a2d43;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.contato .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.contato .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.contato-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.contato-info {
    flex: 1;
    min-width: 300px;
}

.contato-metodo {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.contato-icone {
    width: 50px;
    height: 50px;
    background-color: #2a2d43;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #c6ff00;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contato-detalhe h4 {
    margin-bottom: 0.3rem;
    color: #2a2d43;
}

.contato-form {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(42, 45, 67, 0.1);
    position: relative;
    overflow: hidden;
}

.contato-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff6f61, #c6ff00);
}

.form-grupo {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2a2d43;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #ff6f61;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 111, 97, 0.2);
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.form-check-input {
    margin-right: 10px;
    margin-top: 5px;
}

.form-check-label {
    font-size: 0.9rem;
}

/* Footer section */
.main-footer {
    background-color: #2a2d43;
    color: #f5f5f5;
    padding: 4rem 0 0;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #f5f5f5;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.footer-company {
    flex: 1;
    max-width: 350px;
    margin-right: 2rem;
    padding-top: 1.5rem;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.6;
    margin-top: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    flex: 2;
}

.footer-section {
    flex: 1;
    min-width: 180px;
}

.footer-section h4 {
    position: relative;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #f5f5f5;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ff6f61;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #f5f5f5;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: #c6ff00;
}

address p {
    margin-bottom: 0.5rem;
}

/* Footer bottom */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: 2rem;
}

.footer-bottom p {
    margin: 0;
}

/* Página de agradecimento */
.obrigado-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 0;
}

.obrigado-content {
    max-width: 700px;
    margin: 0 auto;
}

.obrigado-icon {
    font-size: 5rem;
    color: #c6ff00;
    margin-bottom: 2rem;
}

.obrigado-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2a2d43;
}

.obrigado-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Páginas legais */
.page-legal {
    padding: 5rem 0;
}

.legal-content {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(42, 45, 67, 0.05);
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2a2d43;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1.5rem;
}

/* Favicon */
.favicon-svg {
    width: 32px;
    height: 32px;
    background-color: #2E90FA;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.favicon-svg .b {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 20px;
    color: #FFEF00;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.favicon-svg .euro {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid #FFEF00;
    border-radius: 50%;
    top: 14px;
    right: 6px;
}

/* Media Queries */
@media (max-width: 1200px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    section {
        padding: 4rem 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.7rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .sobre-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contato-container {
        flex-direction: column;
    }
    
    .contato-info {
        width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 4rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }

    .galeria-item {
        min-width: 220px;
        max-width: 220px;
        height: 220px;
    }
    
    .galeria-container {
        justify-content: center;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #2a2d43;
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .main-nav.active {
        right: 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav li {
        margin: 1rem 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-bottom: 1rem;
    }
    
    .footer-company {
        width: 100%;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer-links {
        width: 100%;
    }
    
    .footer-section {
        width: 50%;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .servico-card {
        margin-bottom: 2rem;
    }

    .galeria-item {
        min-width: 180px;
        max-width: 180px;
        height: 180px;
    }

    .galeria-container {
        justify-content: center;
    }

    .galeria-overlay {
        transform: translateY(60%);
    }
    
    .contato-form {
        padding: 1.5rem;
    }
    
    .main-header {
        padding: 0.5rem 0;
    }
    
    .logo a svg {
        height: 30px;
        width: auto;
    }
    
    .mobile-menu-toggle {
        height: 20px;
    }
} 