/* ===== DOMAIN - AUDITORIA FINANCEIRA =====
   CSS Stylesheet com paleta de cores personalizada
   Animações CSS e design responsivo moderno
   ========================================== */

/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #0A1F44;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* ===== CORES PERSONALIZADAS ===== */
:root {
    /* Cores principais */
    --primary-bg: #0A1F44;          /* Teal escuro principal */
    --secondary-bg: #FAF3E0;        /* Bege claro */
    --white: #FFFFFF;
    --text-dark: #333333;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #7D3C98, #F06292);
    --gradient-secondary: linear-gradient(135deg, #0A1F44, #1a365d);
    --gradient-accent: linear-gradient(135deg, #F06292, #7D3C98);
    
    /* Sombras neônicas */
    --neon-shadow: 0 0 20px rgba(240, 98, 146, 0.3);
    --neon-shadow-hover: 0 0 30px rgba(240, 98, 146, 0.5);
    
    /* Transições */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

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

/* ===== LAYOUT BASE ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
    width: 100%;
}

.main-content {
    min-height: 100vh;
}

/* ===== HEADER E NAVEGAÇÃO ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 31, 68, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-smooth);
    animation: slideDown 0.8s ease-out;
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition-fast);
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(var(--neon-shadow));
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--neon-shadow);
}

.nav-phone {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-primary);
    border-radius: 25px;
    transition: var(--transition-fast);
}

.nav-phone:hover {
    transform: translateY(-2px);
    box-shadow: var(--neon-shadow-hover);
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    line-height: 1.4;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--neon-shadow);
}

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

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

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

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* ===== SEÇÃO HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
    padding-top: 100px; /* Espaço para header fixo */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./img/zEbWjX.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 6rem 0;
    padding-left: 160px !important; /* Увеличенный левый отступ */
    padding-right: 40px !important; /* Увеличенный правый отступ для баланса */
    max-width: 1400px; /* Увеличенная ширина */
    margin: 0 auto; /* Центрируем контент */
}

.hero-text {
    margin-left: 0; /* Убираем margin, используем padding от hero-content */
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #E2E8F0;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.4s both;
}

.hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition-smooth);
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* ===== SEÇÕES GERAIS ===== */
section {
    padding: 6rem 0;
    position: relative;
}

section:nth-child(even) {
    background: var(--secondary-bg);
    color: var(--text-dark);
}

section:nth-child(odd) {
    background: var(--primary-bg);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SEÇÃO SOBRE ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInLeft 0.8s ease-out;
}

.feature-icon {
    font-size: 2rem;
    background: var(--gradient-primary);
    padding: 1rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: fadeInRight 0.8s ease-out;
}

/* ===== SEÇÃO SERVIÇOS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    animation: fadeInUp 0.8s ease-out;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(240, 98, 146, 0.2);
    border-color: #F06292;
}

.service-icon {
    font-size: 3rem;
    background: var(--gradient-primary);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: pulse 2s infinite;
}

.service-title {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-description {
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.benefit-tag {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== SEÇÃO VANTAGENS ===== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: var(--transition-smooth);
    animation: fadeInUp 0.8s ease-out;
}

.advantage-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: bounce 2s infinite;
}

/* ===== SEÇÃO TESTEMUNHOS ===== */
.testimonials {
    background: var(--secondary-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 4rem;
    color: #F06292;
    font-weight: bold;
}

.testimonial-content {
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dark);
}

.testimonial-author h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
    display: block;
}

/* ===== FORMULÁRIO DE CONTATO ===== */
.contact-form {
    background: var(--gradient-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInLeft 0.8s ease-out;
}

.contact-icon {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
}

/* Cores específicas APENAS para seção de contato do formulário (não footer) */
.contact-form .contact-details .contact-item h4,
.contact-form .contact-details .contact-item p,
.contact-form .contact-details .contact-item a {
    color: var(--text-dark) !important;
    text-decoration: none;
}

.contact-form .contact-details .contact-item a:hover {
    color: #F06292 !important;
}

/* Footer e outros contatos mantêm cor branca */
.footer .contact-item a {
    color: var(--white) !important;
    text-decoration: none;
}

.footer .contact-item a:hover {
    color: #F06292 !important;
}

/* ===== FORMULÁRIO ===== */
.form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    animation: fadeInRight 0.8s ease-out;
}

.contact-form-element {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(51, 51, 51, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F06292;
    box-shadow: 0 0 20px rgba(240, 98, 146, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: #F06292;
}

.checkbox-group label {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-group a {
    color: #F06292;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.form-disclaimer {
    background: rgba(240, 98, 146, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #F06292;
}

.form-disclaimer p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== SEÇÃO MAPA ===== */
.map-section {
    background: var(--primary-bg);
    color: var(--white);
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.map-info h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.map-info h4 {
    color: var(--white);
    margin: 2rem 0 1rem;
}

.map-info p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.map-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    animation: fadeInRight 0.8s ease-out;
}

.map-image iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 20px;
}

.map-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 31, 68, 0.9);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-bg);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-subtitle {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-description {
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.footer-note {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #F06292;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition-fast);
}

.footer-link:hover {
    opacity: 1;
    color: #F06292;
    transform: translateX(5px);
}

.footer-services {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-item {
    opacity: 0.9;
    padding: 0.3rem 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.disclaimer-text {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 2rem;
    z-index: 2000;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.cookie-text h4 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.cookie-text p {
    line-height: 1.6;
    opacity: 0.9;
}

.cookie-text a {
    color: #F06292;
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-accept {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--neon-shadow);
}

.btn-info {
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    transition: var(--transition-fast);
}

.btn-info:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ===== PÁGINAS DE POLÍTICA ===== */
.policy-page {
    background: var(--primary-bg);
    color: var(--white);
    padding: 8rem 0 4rem;
    min-height: 100vh;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-content h1 {
    color: var(--white);
    margin-bottom: 1rem;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-updated {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-style: italic;
}

.policy-section {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.policy-section h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #F06292;
    padding-bottom: 0.5rem;
}

.policy-section h3 {
    color: var(--white) !important;
    margin: 2rem 0 1rem;
}

.policy-section h4 {
    color: var(--white) !important;
    margin: 1.5rem 0 1rem;
}

.policy-section ul {
    margin: 1rem 0 1rem 2rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: rgba(10, 31, 68, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.contact-info a {
    color: var(--white) !important;
    text-decoration: none;
}

.contact-info a:hover {
    color: #F06292 !important;
    text-decoration: underline;
}

/* Garantir que todos os links nas páginas de política sejam brancos */
.policy-page a {
    color: var(--white);
    text-decoration: underline;
}

.policy-page a:hover {
    color: #F06292;
}

/* Garantir visibilidade de todo texto nas páginas de política */
.policy-page p,
.policy-page li,
.policy-page span,
.policy-page div,
.policy-page strong,
.policy-page em {
    color: var(--white) !important;
}

/* Exceções para elementos que devem ser escuros */
.policy-page .cookie-table td,
.policy-page .cookie-table th,
.policy-page .cookie-category label,
.policy-page .cookie-category p,
.policy-page .cookie-category strong {
    color: var(--text-dark) !important;
}

/* Исключение для заголовков таблицы */
.policy-page .cookie-table th {
    color: var(--white) !important;
}

.policy-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

/* Tabela de cookies */
.cookie-table {
    margin: 1.5rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(240, 98, 146, 0.2);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
    color: var(--text-dark) !important; /* Принудительно черный цвет текста */
}

.cookie-table th {
    background: var(--gradient-primary);
    color: var(--white) !important;
    font-weight: 600;
}

/* Gerenciador de preferências de cookies */
.cookie-consent-manager {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border: 1px solid rgba(240, 98, 146, 0.3);
}

.cookie-consent-manager h3 {
    color: var(--white) !important;
    margin-bottom: 1rem;
}

.cookie-consent-manager > p {
    color: var(--white) !important;
    margin-bottom: 1.5rem;
}

.cookie-preferences {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-category {
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid #F06292;
}

.cookie-category label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark) !important;
}

.cookie-category p {
    margin: 0.5rem 0 0 2rem;
    font-size: 0.9rem;
    color: #666 !important;
}

/* Кнопка сохранения предпочтений cookies */
.cookie-consent-manager .btn {
    margin-top: 1.5rem;
    background: var(--gradient-primary);
    color: var(--white) !important;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
}

.cookie-consent-manager .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--neon-shadow);
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===== RESPONSIVIDADE ===== */

/* Tablets */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding-left: 40px !important; /* Увеличенный отступ для планшетов */
        padding-right: 40px !important; /* Симметричные отступы */
        max-width: 100% !important; /* Полная ширина на планшетах */
    }
    
    .about-content,
    .contact-content,
    .map-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
}

/* Средние экраны (ноутбуки) */
@media (min-width: 1025px) and (max-width: 1399px) {
    .hero-content {
        padding-left: 120px !important; /* Увеличенный отступ для средних экранов */
        padding-right: 30px !important; /* Сбалансированный правый отступ */
    }
}

/* Smartphones */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    body {
        width: 100%;
        max-width: 100vw;
        margin: 0;
        padding: 0;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero-content {
        padding-left: 0 !important; /* На мобильном убираем отступ hero-content */
        padding-right: 0 !important; /* Убираем и правый отступ */
        max-width: 100% !important; /* Полная ширина на мобильном */
    }
    
    .hero-text {
        margin-left: 0; /* Убираем дополнительные отступы */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    section {
        padding: 4rem 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cookie-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .form-container {
        padding: 2rem;
        margin: 0;
        width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-content,
    .about-content,
    .contact-content,
    .map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }
}

/* Smartphones pequenos */
@media (max-width: 480px) {
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .container {
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        overflow-x: hidden;
    }
    
    section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .form-container {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    * {
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* Telas grandes */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .hero-content {
        padding-left: 180px !important; /* Большой отступ для больших экранов */
        padding-right: 50px !important; /* Сбалансированный правый отступ */
        max-width: 1500px; /* Увеличенная ширина */
        margin: 0 auto; /* Центрируем контент */
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

/* Очень большие экраны (4K и выше) */
@media (min-width: 1920px) {
    .hero-content {
        padding-left: 200px !important; /* Максимальный отступ для 4K */
        padding-right: 60px !important; /* Сбалансированный правый отступ для 4K */
        max-width: 1700px; /* Увеличенная ширина для 4K */
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
}

/* ===== IMPRESSÃO ===== */
@media print {
    .header,
    .cookie-banner,
    .btn,
    .hero,
    .nav-menu {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    section {
        background: white !important;
        color: black !important;
    }
}

/* ===== ACESSIBILIDADE ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states para acessibilidade */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #F06292;
    outline-offset: 2px;
}

/* ===== UTILITÁRIOS ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.hidden { display: none; }
.visible { display: block; }

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .policy-page {
        background: var(--primary-bg);
        color: var(--white);
    }
    
    .policy-content h1,
    .policy-section h2,
    .policy-section h3 {
        color: var(--white);
    }
    
    .cookie-table {
        filter: invert(1) hue-rotate(180deg);
    }
}
