/*
Theme Name: Felipe Amirabile Advocacia
Theme URI: https://www.felipeamirabile.com.br
Author: Claude
Description: Tema moderno para o escritório de advocacia Felipe Amirabile, com foco em profissionalismo e credibilidade.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: felipeamirabile
*/

/* Importação de fontes */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

@font-face {
    font-family: 'Made Saonara';
    src: url('made-saonara.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* Reset e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #13171a;
    --secondary-color: #ead088;
    --white-color: #FFFFFF;
    --light-gray: #f5f5f7;
    --medium-gray: #86868b;
    --dark-gray: #333333;
}



body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-gray);
    background-color: var(--white-color);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

p {
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: transparent;
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Header */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.site-logo img {
    height: 50px;
    margin-right: 0.5rem;
}

.site-logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    letter-spacing: 0.2rem;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

.main-navigation li {
    margin-left: 2rem;
}

.main-navigation a {
    position: relative;
    color: var(--white-color);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-navigation a:hover {
    color: var(--secondary-color);
}

.main-navigation a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--white-color);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding: 10rem 0 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    filter: blur(5px) brightness(0.7);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.4rem;
    color: var(--white-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 0.5s;
    letter-spacing: 0.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--white-color);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 0.8s;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 1.1s;
    justify-content: center;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section - Modernizada */
.about-section {
    position: relative;
    overflow: hidden;
    padding: 7rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 50%;
    animation: float-slow 6s ease-in-out infinite;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(234, 211, 162, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-slow 8s ease-in-out infinite reverse;
}

@keyframes float-slow {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
    align-items: start;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    height: 550px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(102, 126, 234, 0.2) 100%);
    z-index: 2;
    transition: all 0.3s ease;
}

.about-image:hover::before {
    background: linear-gradient(135deg, transparent 0%, rgba(102, 126, 234, 0.1) 100%);
}

.about-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
    position: relative;
}

.about-text::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), rgba(234, 211, 162, 0.7));
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

.about-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), #495057);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.about-text p {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    position: relative;
    padding-left: 20px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.about-text p:hover {
    border-left-color: var(--secondary-color);
    padding-left: 25px;
}

/* Services Section - Modernizada */
.services-section {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
    padding: 7rem 0;
}

.services-section .section-heading h2 {
    color: var(--primary-color);
}

.services-section .section-heading p {
    color: var(--dark-gray);
}

.services-section .section-subtitle {
    color: var(--primary-color);
}

.services-tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tech-grid {
    position: relative;
    width: 100%;
    height: 100%;
}

.tech-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(234, 211, 162, 0.8), transparent);
    animation: tech-pulse 3s ease-in-out infinite;
}

.tech-circle {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(234, 211, 162, 0.6);
    border-radius: 50%;
    animation: tech-glow 4s ease-in-out infinite;
}

@keyframes tech-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.2);
    }
}

@keyframes tech-glow {
    0%, 100% {
        border-color: rgba(234, 211, 162, 0.3);
        box-shadow: 0 0 5px rgba(234, 211, 162, 0.3);
    }
    50% {
        border-color: rgba(234, 211, 162, 1);
        box-shadow: 0 0 20px rgba(234, 211, 162, 0.8);
    }
}

.services-heading {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.services-heading h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.services-heading p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

/* Cards 3D Modernos */
.service-card-modern {
    perspective: 1000px;
    -webkit-perspective: 1000px;
    height: 450px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    position: relative;
}

.service-card-modern * {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.service-card-modern.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s ease-in-out;
    transform-style: preserve-3d;
    cursor: pointer;
    transform-origin: center center;
    -webkit-transform-style: preserve-3d;
    -webkit-transition: -webkit-transform 0.8s ease-in-out;
    -moz-transition: -moz-transform 0.8s ease-in-out;
}

/* Hover para desktop APENAS */
@media (min-width: 769px) and (hover: hover) {
    .service-card-modern:hover .service-card-inner {
        transform: rotateY(180deg);
        -webkit-transform: rotateY(180deg);
        -moz-transform: rotateY(180deg);
    }
}

/* Classe para flip em mobile e desktop quando clicado */
.service-card-inner.mobile-flipped {
    transform: rotateY(180deg) !important;
    -webkit-transform: rotateY(180deg) !important;
    -moz-transform: rotateY(180deg) !important;
}

/* Ajuste de z-index quando virado em mobile */
.service-card-inner.mobile-flipped .service-card-front {
    z-index: 1;
}

.service-card-inner.mobile-flipped .service-card-back {
    z-index: 2;
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    top: 0;
    left: 0;
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    transform-origin: center;
    -webkit-transform-origin: center;
}

.service-card-front {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 2;
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
}

.service-tech-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  
    z-index: 0;
}

.service-card-back {
    background: #ffffff;
    color: var(--dark-gray);
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    border: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(19, 23, 26, 0.15);
    transition: all 0.3s ease;
}

.service-card-front:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card-front h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.service-card-front p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.service-hover-indicator {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    padding: 0.8rem 1.2rem;
    background: rgba(234, 208, 136, 0.1);
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
}

.service-hover-indicator i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.service-card-front:hover .service-hover-indicator i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .service-hover-indicator {
        background: var(--secondary-color);
        color: var(--primary-color);
        font-weight: 700;
        justify-content: center;
        border: none;
    }
    
    .service-hover-indicator:active {
        background: #d4bb6a;
        transform: scale(0.98);
    }
}

.service-back-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 1.5rem;
    overflow-y: auto;
}

.service-back-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
}

.service-list-modern {
    list-style: none;
    padding: 0;
    width: 100%;
    margin: 0;
}

.service-list-modern li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.6rem 0.8rem;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border-left: 3px solid var(--primary-color);
}

.service-list-modern li:hover {
    background: rgba(234, 211, 162, 0.2);
    transform: translateX(3px);
}

.service-list-modern li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.service-list-modern {
    text-align:left;}

/* Responsividade da seção Services */
@media (max-width: 1400px) {
    .services-grid {
        gap: 2rem;
    }
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .services-section {
        padding: 5rem 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .main-navigation a {
    color: #000!important;
 
}
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card-modern {
        height: 380px;
    }
    
    .service-card-front,
    .service-card-back {
        padding: 1.5rem;
    }
    
    .service-back-content {
        padding: 1rem;
    }
    
    .service-list-modern li {
        font-size: 0.85rem;
        padding: 0.5rem 0.6rem;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card-front h3 {
        font-size: 1.6rem;
    }
    
    .services-heading h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .service-card-modern {
        height: auto !important;
        min-height: auto !important;
        touch-action: manipulation;
    }
    
    /* DESLIGA COMPLETAMENTE O 3D EM MOBILE */
    .service-card-inner {
        transform: none !important;
        transform-style: flat !important;
        perspective: none !important;
    }
    
    .service-card-modern:hover .service-card-inner {
        transform: none !important;
    }
    
    /* FRENTE E VERSO UM EMBAIXO DO OUTRO */
    .service-card-front,
    .service-card-back {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        padding: 1.5rem !important;
        backface-visibility: visible !important;
        -webkit-backface-visibility: visible !important;
        transform: none !important;
        -webkit-transform: none !important;
    }
    
    .service-card-front {
        
    }
    
    /* VERSO VISÍVEL NO MOBILE (sem clique) */
    .service-card-back {
        display: block !important;
        background: #fff;
        border-top: 3px solid var(--secondary-color);
        margin-top: 1rem;
        text-align: left;
    }

    /* Tornar texto legível no verso dos cards (mobile) */
    .service-card-back,
    .service-card-back * {
        color: #222 !important; /* texto escuro para legibilidade */
        -webkit-text-fill-color: #222 !important;
    }

    /* Esconder botão 'ver detalhes' no mobile */
    .service-hover-indicator {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    /* Permitir rolagem vertical quando usuário toca sobre os cards */
    .service-card-modern,
    .service-card-inner,
    .service-card-back {
        touch-action: pan-y; /* permite scroll vertical ao tocar */
        -ms-touch-action: pan-y;
        -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
    }
    
    /* MOSTRAR VERSO QUANDO CARD TEM CLASSE EXPANDED */
    .service-card-modern.expanded .service-card-back {
        display: block !important;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* BOTÃO VER DETALHES */
    .service-hover-indicator {
        background: var(--secondary-color) !important;
        color: var(--primary-color) !important;
        padding: 1rem !important;
        border-radius: 8px !important;
        font-weight: 700 !important;
        text-align: center !important;
        margin-top: 1rem !important;
        cursor: pointer !important;
        border: none !important;
        display: block !important;
    }
    
    .service-hover-indicator:active {
        background: #d4bb6a !important;
    }
    
    /* QUANDO EXPANDIDO, MUDA O TEXTO */
    .service-card-modern.expanded .service-hover-indicator span {
        display: none;
    }
    
    .service-card-modern.expanded .service-hover-indicator::after {
        content: 'Ocultar Detalhes';
    }
    
    .service-card-modern.expanded .service-hover-indicator i {
        transform: rotate(180deg);
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .service-card-front h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .service-card-front p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .services-heading h2 {
        font-size: 2rem;
    }
    
    .services-heading p {
        font-size: 1rem;
    }
    
    .service-list-modern li {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
}

/* Seção de Advogados Especializados */
.specialized-lawyers-info {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.specialized-content {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.specialized-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), rgba(234, 211, 162, 0.7));
    color: var(--primary-color);
    font-size: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.specialized-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.specialized-text p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

.specialized-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .specialized-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .specialized-icon {
        margin-right: 0;
        margin-bottom: 1.5rem;
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .specialized-text h3 {
        font-size: 1.5rem;
    }
    
    .specialized-text p {
        font-size: 1rem;
    }
}

/* Efeitos adicionais para interatividade */
.service-card-modern.card-hover-effect {
    animation: subtle-bounce 0.6s ease-in-out;
}

@keyframes subtle-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Efeito de partículas no hover */
.service-card-modern.card-hover-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), 
                rgba(234, 211, 162, 0.3) 0%, 
                transparent 50%);
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    animation: particle-burst 0.8s ease-out;
}

@keyframes particle-burst {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* Team Section */
.team-section {
    position: relative;
}

.team-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.team-heading h2 {
    font-size: 2.5rem;
}

.team-grid {
    max-width: 500px;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.team-member.visible {
    opacity: 1;
    transform: scale(1);
}

.team-member-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    aspect-ratio: 1;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-member:hover .team-member-image img {
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.testimonials-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-heading h2 {
    font-size: 2.5rem;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.testimonial-card {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease;
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    font-style: italic;
    position: relative;
    margin-bottom: 1.5rem;
}

.testimonial-content::before,
.testimonial-content::after {
    content: '"';
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
}

.testimonial-content::before {
    top: -20px;
    left: -15px;
}

.testimonial-content::after {
    bottom: -50px;
    right: -15px;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-color);
}

.testimonial-author span {
    display: block;
    font-weight: normal;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.contact-info {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.contact-info.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.contact-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-text p {
    margin-bottom: 0;
    color: var(--medium-gray);
}

.contact-form {
    border-radius: 10px;
    background-color: var(--white-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease 0.2s;
}

.contact-form.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(19, 23, 26, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-about h3 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
}

.footer-about p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.footer-links h3, 
.footer-contact h3 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white-color);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Blog styles */
.page-header {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 8rem 0 3rem;
    text-align: center;
}

.page-title {
    color: var(--white-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.post-meta {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.post-meta span {
    margin-right: 1.5rem;
}

.post-meta i {
    margin-right: 0.3rem;
}

.page-content {
    padding: 5rem 0;
}

.blog-post {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #eee;
}

.post-thumbnail {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.entry-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.entry-meta {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.entry-meta span {
    margin-right: 1rem;
}

.entry-meta i {
    margin-right: 0.3rem;
}

.entry-content {
    margin-bottom: 1.5rem;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.nav-previous,
.nav-next {
    max-width: 48%;
}

.social-sharing {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.share-title {
    margin-right: 1rem;
    font-weight: bold;
}

.social-sharing a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #f5f5f7;
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-sharing a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Comments */
.comments-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.comments-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.comment-list {
    list-style: none;
}

.comment {
    margin-bottom: 2rem;
}

.comment-body {
    padding: 1.5rem;
    background-color: #f5f5f7;
    border-radius: 10px;
}

.comment-meta {
    margin-bottom: 1rem;
}

.comment-author {
    font-weight: bold;
    color: var(--primary-color);
}

.comment-metadata {
    font-size: 0.8rem;
    color: var(--medium-gray);
    margin-top: 0.3rem;
}

.comment-content p {
    margin-bottom: 1rem;
}

.reply {
    text-align: right;
}

.comment-reply-link {
    font-size: 0.9rem;
    font-weight: bold;
}

.comment-form-comment label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.comment-form-comment textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-height: 150px;
}

.form-submit {
    margin-top: 1.5rem;
}

/* 404 Page */
.error-404 {
    padding: 10rem 0;
    text-align: center;
}

.error-title {
    font-size: 8rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0;
}

.error-subtitle {
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Search Results */
.search-result-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--white-color);
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: all 0.3s ease;
    }
    
    .main-navigation.active {
        transform: translateY(0);
    }
    
    .main-navigation ul {
        flex-direction: column;
    }
    
    .main-navigation li {
        margin: 0;
        margin-bottom: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .hero-section {
        padding: 8rem 0 3rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .about-text h2,
    .services-heading h2,
    .team-heading h2,
    .testimonials-heading h2,
    .contact-info h2 {
        font-size: 2rem;
    }
}

/* Footer no estilo FA-CIDADANIA */
.site-footer {
    background-color: var(--primary-color);
    color: #ffffff;
}

.footer-main {
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: flex-start;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color); 
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    opacity: 1;
}

.footer-bottom {
    background-color: var(--primary-color);
    padding: 1.5rem 0;
    border-top: 1px solid #333333;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: #fff;
}

.footer-links {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.privacy-link {
    color: var(--secondary-color) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.privacy-link:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

.privacy-link i {
    font-size: 0.9rem;
}

.separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #22c15e;
    transform: scale(1.1);
    color: white;
    opacity: 1;
}

/* Animação de pulso para o botão WhatsApp */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: pulse 2s infinite;
}

/* Responsividade do footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ===== Estilos para as novas seções e elementos adicionados ===== */

/* Hero Section Aprimorada */
.hero-subtitle {
    display: inline-block;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 60px;
}

.hero-subtitle:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 50px;
    height: 1px;
    background-color: var(--secondary-color);
}

.hero-main-title {
    font-size: 4rem;
    line-height: 1.1;
    background: linear-gradient(to right, #ffffff, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    position: relative;
}

.hero-main-title[data-splitting] {
    opacity: 0;
    animation: revealText 1.2s forwards 0.5s;
    padding: 0.5em;
}

@keyframes revealText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(234, 211, 162, 0.1);
    animation: floatAnimation 8s infinite alternate;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 20%;
    animation-delay: 1s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 30%;
    animation-delay: 2s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes floatAnimation {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(30px, 30px) rotate(45deg);
    }
}

.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: -1;
    transition: all 0.5s ease;
}

.btn:hover:before {
    width: 100%;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeInUp 1s forwards 1.5s;
    opacity: 0;
}

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background-color: #fff;
    display: block;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    animation: mouseScroll 1.5s ease infinite;
}

@keyframes mouseScroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.scroll-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Expertise Section - Modernizada */
.expertise-section {
    padding: 7rem 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    margin-top:1em;
}

/* Segunda linha com 2 itens usando toda a largura */
.expertise-grid .expertise-item:nth-child(4) {
    grid-column: 1 / 2;
}

.expertise-grid .expertise-item:nth-child(5) {
    grid-column: 3 / 4;
}

.expertise-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
}

.expertise-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.4s;
}

.expertise-item:hover:before {
    left: 100%;
}

.expertise-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Cores específicas mais sobrias para cada item */
.expertise-trust .expertise-icon {
    background: linear-gradient(135deg, #6c7b7f, #4a5c61);
    color: #fff;
}

.expertise-experience .expertise-icon {
    background: linear-gradient(135deg, #8d6e63, #5d4037);
    color: #fff;
}

.expertise-communication .expertise-icon {
    background: linear-gradient(135deg, #546e7a, #37474f);
    color: #fff;
}

.expertise-results .expertise-icon {
    background: linear-gradient(135deg, #689f38, #558b2f);
    color: #fff;
}

.expertise-technology .expertise-icon {
    background: linear-gradient(135deg, #5c6bc0, #3f51b5);
    color: #fff;
}

.expertise-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    font-size: 2rem;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.expertise-item:hover .expertise-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.expertise-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.expertise-item p {
    color: var(--dark-gray);
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Efeito sutil na borda superior */
.expertise-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(108, 123, 127, 0.6) 0%, 
        rgba(234, 211, 162, 0.4) 50%, 
        rgba(108, 123, 127, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px 15px 0 0;
}

.expertise-item:hover::after {
    opacity: 1;
}

/* Animação sutil para os ícones */
@keyframes subtle-glow {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    }
}

.expertise-icon:hover {
    animation: subtle-glow 2s ease-in-out infinite;
}



@media (max-width: 1200px) {
    .expertise-grid {
        gap: 2rem;
    }
    
    .expertise-item {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 992px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 700px;
    }
    
    /* Em tablets, reorganizar para 2x3 */
    .expertise-grid .expertise-item:nth-child(4) {
        grid-column: auto;
    }
    
    .expertise-grid .expertise-item:nth-child(5) {
        grid-column: auto;
    }
    
    .expertise-item {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .expertise-section {
        padding: 4rem 0;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
    
    /* Em mobile, tudo em coluna única */
    .expertise-grid .expertise-item:nth-child(4),
    .expertise-grid .expertise-item:nth-child(5) {
        grid-column: auto;
    }
    
    .expertise-item {
        padding: 2rem 1.5rem;
    }
    
    .expertise-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* Section Heading */
.section-heading {
    margin-bottom: 3rem;
}

.section-heading.center {
    text-align: center;
}

.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 60px;
}

.section-subtitle:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 50px;
    height: 1px;
    background-color: var(--primary-color);
}

.section-heading.center .section-subtitle {
    padding-left: 0;
    padding-bottom: 15px;
}

.section-heading.center .section-subtitle:before {
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
}

/* About Section Aprimorada */
.about-section {
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    height: 100%;
    transition: all 0.3s ease;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 20px;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--primary-color), #495057);
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(19, 23, 26, 0.4);
    z-index: 3;
    transition: all 0.3s ease;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.experience-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(19, 23, 26, 0.5);
}

.experience-badge .years {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experience-badge .text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    max-width: 90px;
    text-align: center;
    line-height: 1.3;
    font-weight: 600;
}

.shape-pattern {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    z-index: -1;
    animation: pulse-pattern 4s ease-in-out infinite;
}

@keyframes pulse-pattern {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.about-list {
    margin: 3rem 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.list-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(234, 211, 162, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.list-item:hover::before {
    opacity: 1;
}

.list-item:hover {
    transform: translateX(10px);
}

.list-item i {
    color: #fff;
    margin-right: 1rem;
    font-size: 1.3rem;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.list-item:hover i {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.list-item span {
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
}

/* Partículas tecnológicas para a seção About */
.tech-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--secondary-color), rgba(234, 211, 162, 0.7));
    border-radius: 50%;
    animation: float-dots 6s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(234, 211, 162, 0.5);
}

@keyframes float-dots {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
        box-shadow: 0 0 20px rgba(234, 211, 162, 0.8);
    }
}

/* Responsividade para seção About */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        height: 400px;
        order: 2;
    }
    
    .about-text {
        order: 1;
    }
    
    .about-text h2 {
        font-size: 2.4rem;
    }
    
    .experience-badge {
        width: 140px;
        height: 140px;
        bottom: 20px;
        right: 15px;
    }
    
    .experience-badge .years {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 5rem 0;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-text p {
        font-size: 1rem;
        padding-left: 15px;
    }
    
    .about-list {
        padding: 1.5rem;
    }
    
    .list-item {
        padding: 0.6rem;
    }
    
    .list-item i {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
        margin-right: 0.8rem;
    }
}

/* Counter Section - Nova Seção */
.counter-section {
    padding: 7rem 0;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.counter-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 23, 26, 0.9);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
    color: #fff;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.counter-number .plus,
.counter-number .percent {
    font-size: 2.5rem;
    margin-left: 5px;
}

.counter-title {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .counter-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Section Aprimorada */
.services-section {
    background-color: #f8f9fa;
    padding: 7rem 0;
}

.service-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
        height: 70px;
    display: flex
;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s 
ease;
}

.service-card:hover .service-icon {
    background-color: #0d1013;
}

.service-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-divider {
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-divider {
    width: 100px;
    background-color: var(--secondary-color);
}

.service-content p {
    margin-bottom: 1.5rem;
}

.service-list {
    list-style-type: none;
    margin-bottom: 1.5rem;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.service-list li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1rem;
}

.service-link {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: bold;
    margin-top: auto;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Process Section - Versão Moderna e Tecnológica */
.process-section-modern {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2d3561 100%);
}

.process-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.process-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(234, 211, 162, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(234, 211, 162, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.1), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: particlesFloat 20s infinite linear;
}

.process-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(234, 211, 162, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(234, 211, 162, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

@keyframes particlesFloat {
    0% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-10px) translateX(5px); }
    66% { transform: translateY(5px) translateX(-5px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.process-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 5rem;
}

.section-subtitle-tech {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.tech-icon {
    font-size: 1.3rem;
    animation: techIconSpin 4s infinite ease-in-out;
}

@keyframes techIconSpin {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.process-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Estilos para destacar palavras-chave */
.highlight-text {
    color: var(--secondary-color);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(234, 211, 162, 0.3);
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    opacity: 0.6;
}

.highlight-primary {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.1em;
    text-shadow: 0 2px 15px rgba(19, 23, 26, 0.2);
}

.process-timeline-modern {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
    padding-left: 80px;
}

/* Linha principal da timeline */
.process-timeline-modern::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 60px;
    bottom: 60px;
    width: 4px;
    background: linear-gradient(180deg, var(--secondary-color), rgba(234, 211, 162, 0.3));
    border-radius: 10px;
    z-index: 1;
}

.process-step-modern {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: stepFadeIn 0.8s forwards;
}

.process-step-modern:last-child {
    margin-bottom: 0;
}

.process-step-modern:nth-child(1) { animation-delay: 0.2s; }
.process-step-modern:nth-child(2) { animation-delay: 0.4s; }
.process-step-modern:nth-child(3) { animation-delay: 0.6s; }
.process-step-modern:nth-child(4) { animation-delay: 0.8s; }
.process-step-modern:nth-child(5) { animation-delay: 1s; }

@keyframes stepFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-card-tech {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    margin-left: 40px;
}

/* Linha de conexão individual para cada step */
.process-step-modern::before {
    content: '';
    position: absolute;
    left: -80px;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    transform: translateY(-50%);
    z-index: 2;
}

.process-card-tech::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(234, 211, 162, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-card-tech:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.process-card-tech:hover::before {
    opacity: 1;
}

.process-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(234, 211, 162, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconGlow 3s infinite ease-in-out;
}

@keyframes iconGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.process-content-modern {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-content-modern h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-content-modern p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.process-features {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), rgba(19, 23, 26, 0.8));
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.step-number-tech {
    position: absolute;
    top: 50%;
    left: -120px;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #2c3e50);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 6px solid rgba(255, 255, 255, 1);
    z-index: 3;
    transition: all 0.3s ease;
}

.step-number-tech::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(234, 211, 162, 0.3);
    border-radius: 50%;
    animation: numberGlow 3s ease-in-out infinite;
}



@keyframes numberGlow {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.7; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 1; 
    }
}

/* Estatísticas Tecnológicas */
.process-stats-tech {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
    position: relative;
    z-index: 2;
}

.stat-item-tech {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item-tech:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animações adicionais para visibilidade */
.process-visible .process-card-tech {
    animation: processCardAppear 0.8s ease-out forwards;
}

@keyframes processCardAppear {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card-hover-effect {
    transform: translateY(-15px) scale(1.02) !important;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2) !important;
}

/* Efeito pulsante nos números das estatísticas */
.stat-number {
    animation: statsPulse 2s infinite ease-in-out;
}

@keyframes statsPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsividade */
@media (max-width: 768px) {
    .process-section-modern {
        padding: 4rem 0;
    }
    
    .process-main-title {
        font-size: 2.5rem;
    }
    
    .process-timeline-modern {
        padding-left: 60px;
        max-width: 100%;
    }
    
    .process-timeline-modern::before {
        left: 30px;
    }
    
    .process-card-tech {
        padding: 1.5rem;
        margin-left: 20px;
    }
    
    .process-step-modern::before {
        left: -60px;
        width: 30px;
    }
    
    .step-number-tech {
        left: -90px;
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        border: 4px solid rgba(255, 255, 255, 1);
    }
    
    .step-number-tech::before {
        width: 80px;
        height: 80px;
    }
    
    .process-icon-container {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .process-icon {
        font-size: 2rem;
    }
    
    .process-content-modern h3 {
        font-size: 1.5rem;
    }
    
    .process-features {
        gap: 0.5rem;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .process-stats-tech {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 3rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Página de Política de Privacidade */
.privacy-policy-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.privacy-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c3e50 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.privacy-hero::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="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.privacy-hero-content {
    position: relative;
    z-index: 2;
}

.privacy-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.privacy-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.privacy-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    opacity: 0.8;
}

.privacy-date,
.privacy-cnpj {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.privacy-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.privacy-text {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.privacy-section {
    padding: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.privacy-section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.section-number {
    background: linear-gradient(135deg, var(--primary-color), #2c3e50);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.section-content {
    line-height: 1.8;
    color: #333;
}

.section-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.section-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Categorias de dados */
.data-categories {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.data-category {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.data-category h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
}

.data-category h4 i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.data-category p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}

/* Lista de finalidades */
.purposes-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.purpose-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.purpose-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.purpose-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.purpose-item p {
    margin: 0;
    font-size: 1rem;
}

/* Caixa de resumo */
.summary-box {
    background: linear-gradient(135deg, var(--primary-color), #2c3e50);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
}

.summary-box p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Lista de compartilhamento */
.sharing-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.sharing-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
}

.sharing-item i {
    color: #f39c12;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.sharing-item p {
    margin: 0;
    color: #856404;
}

/* Caixa de retenção */
.retention-box {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.retention-box i {
    color: #28a745;
    font-size: 2rem;
    flex-shrink: 0;
}

.retention-box p {
    margin: 0;
    color: #155724;
    font-weight: 500;
}

/* Caixa de segurança */
.security-box {
    background: #cce5ff;
    border: 1px solid #99d6ff;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.security-box i {
    color: #0066cc;
    font-size: 3rem;
    flex-shrink: 0;
}

.security-box p {
    margin: 0;
    color: #003d7a;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Lista de direitos */
.rights-list {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.right-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #e8f5e8;
    border-radius: 10px;
    border-left: 4px solid #28a745;
}

.right-item i {
    color: #28a745;
    font-size: 1.3rem;
}

.right-item p {
    margin: 0;
    color: #155724;
    font-weight: 500;
}

/* Caixas de contato */
.contact-box,
.contact-final {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
}

.contact-box h4,
.contact-final h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.contact-box p,
.contact-final p {
    margin: 0;
    font-size: 1.1rem;
}

.firm-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.firm-info h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.firm-info p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsividade */
@media (max-width: 768px) {
    .privacy-title {
        font-size: 2.5rem;
    }
    
    .privacy-subtitle {
        font-size: 1.1rem;
    }
    
    .privacy-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .privacy-section {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .data-categories {
        gap: 1rem;
    }
    
    .data-category {
        padding: 1rem;
    }
    
    .purpose-item,
    .sharing-item,
    .right-item {
        padding: 1rem;
    }
    
    .security-box,
    .retention-box {
        flex-direction: column;
        text-align: center;
    }
}



/* Gallery Section - Nova Seção */
.gallery-section {
    padding: 7rem 0;
    background-color: #fff;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-button {
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    border: 1px solid #eee;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-button.active,
.filter-button:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 23, 26, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.gallery-overlay h4 {
    color: #fff;
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section - Nova Seção */
.faq-section {
    padding: 7rem 0;
    background-color: #f8f9fa;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.faq-tab {
    padding: 0.8rem 1.5rem;
    background-color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-tab.active,
.faq-tab:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.faq-tab-content {
    display: none;
}

.faq-tab-content.active {
    display: block;
}

.accordion-item {
    margin-bottom: 1rem;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    padding: 1.5rem;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.accordion-icon {
    position: relative;
    width: 24px;
    height: 24px;
}

.accordion-icon:before,
.accordion-icon:after {
    content: "";
    position: absolute;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.accordion-icon:before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.accordion-icon:after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.accordion-item.active .accordion-icon:after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

/* Blog Section - Nova Seção */
.blog-section {
    padding: 7rem 0;
    background-color: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(19, 23, 26, 0.3);
}

.blog-date .day {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
}

.blog-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.blog-card h3 a:hover {
    color: var(--primary-color);
}

.blog-card p {
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

.read-more {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: var(--primary-color);
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.blog-btn-container {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section - Nova Seção */
.cta-section {
    padding: 7rem 0;
    background-position: center;
    background-size: cover;
    position: relative;
    color: #fff;
    text-align: center;
}

.cta-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 23, 26, 0.85);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-light {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid #fff;
}

.btn-light:hover {
    background-color: transparent;
    color: #fff;
}

.btn-light:hover .btn-icon {
    color: #fff;
}

/* Contact Section Aprimorada */
.contact-section {
    padding: 7rem 0;
    background-color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.contact-card {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(19, 23, 26, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
    border-radius: 10px;
    margin-right: 1rem;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.contact-text p {
    margin-bottom: 0;
    color: var(--medium-gray);
}

.contact-social {
    margin-bottom: 2rem;
}

.contact-social h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-social .social-icons {
    display: flex;
    gap: 0.8rem;
}

.contact-social .social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-social .social-icon:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        height: 400px;
    }
}

/* Animações adicionais */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Google Reviews Section */
.google-reviews-section {
    background-color: #f8f9fa;
    padding: 7rem 0;
    position: relative;
}

.google-reviews-slider {
    max-width: 1200px;
    margin: 0 auto;
}

.google-review-slide {
    padding: 15px;
    box-sizing: border-box;
}

.google-review-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.google-review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.review-rating {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--medium-gray);
    line-height: 1.6;
}

.review-author {
    font-weight: bold;
    color: var(--primary-color);
}

/* Slick Slider Navigation */
.slick-prev, 
.slick-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color) !important;
    border-radius: 50%;
    z-index: 10;
}

.slick-prev:before, 
.slick-next:before {
    color: white !important;
    font-size: 20px !important;
}

.slick-prev {
    left: -60px;
}

.slick-next {
    right: -60px;
}

@media (max-width: 1024px) {
    .slick-prev, 
    .slick-next {
        display: block !important;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .slick-prev, 
    .slick-next {
        width: 40px;
        height: 40px;
    }
}