/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: #1e40af;
}

.nav a:hover::before {
    width: 100%;
}

/* Menu Mobile */
.menu-mobile {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-mobile span {
    display: block;
    width: 25px;
    height: 2px;
    background: #333;
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 120px 20px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    color: #ffffff;
    text-align: center;
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 50px;
    animation: fadeInUp 1s ease-out 0.2s both;
    line-height: 1.6;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: #ffffff;
    color: #1e40af;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    border: 2px solid #ffffff;
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    transform: translateY(-3px);
}

.cta-button.primary:hover {
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    background: #f8fafc;
    color: #1e40af;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-button:hover::before {
    left: 100%;
}

/* Serviços */
.servicos {
    padding: 120px 0;
    background: #f8fafc;
    position: relative;
}

.servicos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
}

.servicos h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: #1e293b;
    position: relative;
}

.servicos-subtitle {
    text-align: center;
    font-size: 18px;
    color: #64748b;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.servicos h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 2px;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(30, 64, 175, 0.1);
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card-logistica::before { background: linear-gradient(135deg, #059669 0%, #10b981 100%); }
.card-desenvolvimento::before { background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%); }
.card-suporte::before { background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%); }
.card-automacao::before { background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%); }
.card-marketing::before { background: linear-gradient(135deg, #ea580c 0%, #f97316 100%); }
.card-manutencao::before { background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%); }

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.card:hover::before {
    transform: scaleX(1);
}

.card .icon {
    margin-bottom: 25px;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
}

.card-logistica .icon { 
    color: #059669; 
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
}
.card-desenvolvimento .icon { 
    color: #1e40af; 
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
}
.card-suporte .icon { 
    color: #7c3aed; 
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
}
.card-automacao .icon { 
    color: #dc2626; 
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
}
.card-marketing .icon { 
    color: #ea580c; 
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
}
.card-manutencao .icon { 
    color: #0891b2; 
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
}

.card .icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-logistica .icon::before { background: linear-gradient(135deg, rgba(5, 150, 105, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%); }
.card-desenvolvimento .icon::before { background: linear-gradient(135deg, rgba(30, 64, 175, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%); }
.card-suporte .icon::before { background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%); }
.card-automacao .icon::before { background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(239, 68, 68, 0.2) 100%); }
.card-marketing .icon::before { background: linear-gradient(135deg, rgba(234, 88, 12, 0.2) 0%, rgba(249, 115, 22, 0.2) 100%); }
.card-manutencao .icon::before { background: linear-gradient(135deg, rgba(8, 145, 178, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%); }

.card:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

.card:hover .icon::before {
    opacity: 1;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1e293b;
    text-align: center;
    font-weight: 600;
}

.card p {
    color: #64748b;
    line-height: 1.7;
    text-align: center;
    font-size: 16px;
    margin-bottom: 25px;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-logistica .feature { background: rgba(5, 150, 105, 0.1); color: #059669; }
.card-desenvolvimento .feature { background: rgba(30, 64, 175, 0.1); color: #1e40af; }
.card-suporte .feature { background: rgba(124, 58, 237, 0.1); color: #7c3aed; }
.card-automacao .feature { background: rgba(220, 38, 38, 0.1); color: #dc2626; }
.card-marketing .feature { background: rgba(234, 88, 12, 0.1); color: #ea580c; }
.card-manutencao .feature { background: rgba(8, 145, 178, 0.1); color: #0891b2; }



/* Sobre Nós */
.sobre-nos {
    padding: 120px 0;
    background: #f8fafc;
    color: #1e293b;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sobre-nos::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(30,64,175,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    animation: float 8s ease-in-out infinite;
}

.sobre-nos .container {
    position: relative;
    z-index: 2;
}

.sobre-nos h2 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #1e293b;
}

.sobre-nos p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.8;
    color: #64748b;
}

/* Estatísticas */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    display: block;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    color: #f8fafc;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Contato */
.contato {
    padding: 120px 0;
    background: #f8fafc;
    position: relative;
}

.contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 30%);
}

.contato h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 80px;
    color: #1e293b;
    position: relative;
}

.contato h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 2px;
}

.contato form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1e293b;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e40af;
    background: white;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.4);
}

.submit-button:hover::before {
    left: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.01)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.01)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-section h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    letter-spacing: 0.5px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #1A73E8, #4285F4);
    border-radius: 2px;
}

.footer-logo h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo p {
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 18px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 18px;
}

.social-link:hover {
    background: linear-gradient(135deg, #1A73E8, #4285F4);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.3);
    border-color: transparent;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #c0c0c0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    font-size: 15px;
    display: inline-block;
}

.footer-links a:hover {
    color: #1A73E8;
    padding-left: 8px;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #1A73E8;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #c0c0c0;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: #fff;
    transform: translateX(5px);
}

.contact-item i {
    color: #1A73E8;
    width: 18px;
    font-size: 16px;
    background: rgba(26, 115, 232, 0.1);
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    padding-top: 30px;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.copyright {
    color: #a0a0a0;
    margin: 0;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.footer-bottom-links a:hover {
    color: #1A73E8;
    transform: translateY(-1px);
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #1A73E8;
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* Estilos para Páginas Legais */
.legal-content {
    padding: 120px 0 80px;
    background: #f8f9fa;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e9ecef;
}

.legal-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.last-updated {
    color: #666;
    font-size: 16px;
    font-style: italic;
}

.legal-body {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1A73E8;
    position: relative;
}

.legal-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #1A73E8;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 25px 0 15px;
}

.legal-section p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    font-size: 16px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #555;
}

.legal-section a {
    color: #1A73E8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #1557B0;
    text-decoration: underline;
}

.contact-info-legal {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #1A73E8;
    margin-top: 20px;
}

.contact-info-legal p {
    margin-bottom: 10px;
    color: #333;
}

.contact-info-legal p:last-child {
    margin-bottom: 0;
}

.cookie-table {
    overflow-x: auto;
    margin: 20px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cookie-table th {
    background: #1A73E8;
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.cookie-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    color: #555;
}

.cookie-table tr:nth-child(even) {
    background: #f8f9fa;
}

.cookie-table tr:hover {
    background: #e3f2fd;
}

/* Responsividade para páginas legais */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 60px;
    }

    .legal-header h1 {
        font-size: 32px;
    }

    .legal-body {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .legal-section h2 {
        font-size: 22px;
    }

    .legal-section h3 {
        font-size: 18px;
    }

    .cookie-table {
        font-size: 12px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 8px 10px;
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .menu-mobile {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .nav a {
        font-size: 18px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(30, 64, 175, 0.1);
    }

    .hero {
        padding: 0;
        min-height: 80vh;
    }

    .hero-content {
        padding: 100px 20px;
        max-width: 90%;
    }

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

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        padding: 15px 40px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }

    .servicos {
        padding: 80px 0;
    }

    .servicos h2 {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .servicos-subtitle {
        font-size: 16px;
        margin-bottom: 50px;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .card {
        padding: 30px 25px;
    }

    .card h3 {
        font-size: 20px;
    }

    .card-features {
        justify-content: flex-start;
    }

    .sobre-nos {
        padding: 80px 0;
    }

    .sobre-nos h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .sobre-nos p {
        font-size: 18px;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
        max-width: 100%;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    .contato {
        padding: 80px 0;
    }

    .contato h2 {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .contato form {
        padding: 30px 25px;
        margin: 0 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 16px;
    }

    /* Footer responsivo */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .servicos h2,
    .sobre-nos h2,
    .contato h2 {
        font-size: 28px;
    }

    .servicos-subtitle {
        font-size: 14px;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-item {
        padding: 15px 10px;
    }

    .stat-number {
        font-size: 32px;
    }

    .contato form {
        padding: 25px 20px;
        margin: 0 10px;
    }
}

/* Menu Mobile Ativo */
.menu-mobile.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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