:root {
    --primary-blue: #0056b3;
    --dark-blue: #001a33;
    --navy-blue: #001225;
    --orange: #ff7700;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #2d3748;
    --white: #ffffff;
    --black: #000000;
    --baby-blue: #e6f2ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--light-gray);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--navy-blue);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.logo img {
    height: 60px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin: 0 10px;
    position: relative;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    color: var(--orange);
    background-color: rgba(255, 255, 255, 0.1);
}

.has-submenu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--navy-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    display: none;
    padding: 10px 0;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1001;
}

.has-submenu:hover .submenu {
    display: block;
}

.submenu li {
    margin: 0;
    padding: 0;
}

.submenu a {
    display: block;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.submenu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-link {
    text-decoration: none;
    color: var(--white);
    display: flex;
    flex-direction: column;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.9;
}

.contact-link strong {
    color: var(--orange);
    font-size: 1.1rem;
}

.help-link {
    color: var(--orange);
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.help-link:hover {
    color: #ff9900;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--orange);
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Video Banner Styles */
.video-banner-slider {
    margin-top: 80px;
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.video-banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.video-banner-slide.active {
    opacity: 1;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%) scale(1.1);
    transition: transform 8s ease-out;
}

.video-banner-slide.active .video-container video {
    transform: translateX(-50%) translateY(-50%) scale(1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 26, 51, 0.85) 0%, 
        rgba(0, 86, 179, 0.7) 50%,
        rgba(0, 26, 51, 0.85) 100%);
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 3;
    width: 90%;
    max-width: 800px;
}

.banner-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #e6f7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    line-height: 1.6;
}

.banner-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 4;
}

.banner-indicator {
    width: 50px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.banner-indicator.active {
    background: var(--orange);
    width: 80px;
}

.banner-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

.banner-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 4;
}

.banner-control {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.banner-control:hover {
    background: var(--orange);
    transform: scale(1.1);
}

/* Efeito de quadrados se unindo */
.squares-pattern {
    position: relative;
    overflow: hidden;
}

.squares-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, var(--baby-blue) 25%, transparent 25%) -50px 0,
        linear-gradient(225deg, var(--baby-blue) 25%, transparent 25%) -50px 0,
        linear-gradient(315deg, var(--baby-blue) 25%, transparent 25%),
        linear-gradient(45deg, var(--baby-blue) 25%, transparent 25%);
    background-size: 100px 100px;
    background-color: var(--white);
    z-index: 1;
    opacity: 0.3;
}

.squares-pattern > * {
    position: relative;
    z-index: 2;
}

/* Efeito de quadrados animados para formulários */
.form-animated-bg {
    position: relative;
    overflow: hidden;
}

.form-animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(0, 86, 179, 0.1) 25%, transparent 25%) -50px 0,
        linear-gradient(225deg, rgba(0, 86, 179, 0.1) 25%, transparent 25%) -50px 0,
        linear-gradient(315deg, rgba(0, 86, 179, 0.1) 25%, transparent 25%),
        linear-gradient(45deg, rgba(0, 86, 179, 0.1) 25%, transparent 25%);
    background-size: 100px 100px;
    background-color: var(--white);
    z-index: 1;
    opacity: 0.5;
    animation: squaresAnimation 20s infinite linear;
}

@keyframes squaresAnimation {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 100px 100px, 100px 100px, 100px 100px, 100px 100px;
    }
}

.form-animated-bg > * {
    position: relative;
    z-index: 2;
}

/* Segmentos */
.segmentos {
    padding: 60px 0;
}

.segment-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.segment-btn {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.1);
}

.segment-btn.active,
.segment-btn:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.3);
}

/* Soluções */
.solucoes {
    padding: 80px 0;
}

.solucoes h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-blue);
    font-size: 2.8rem;
    position: relative;
}

.solucoes h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--orange) 0%, #ff5500 100%);
    border-radius: 2px;
}

.solucoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solucao-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solucao-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.solucao-item img {
    height: 80px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.solucao-item:hover img {
    transform: scale(1.1);
}

.solucao-item h3 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.solucao-item p {
    margin-bottom: 25px;
    color: var(--dark-gray);
    line-height: 1.6;
}

.saiba-mais {
    color: var(--orange);
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
}

.saiba-mais::after {
    content: '→';
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.saiba-mais:hover {
    color: #ff5500;
}

.saiba-mais:hover::after {
    margin-left: 12px;
}

/* Diferenciais */
.diferenciais {
    padding: 80px 0;
}

.diferenciais h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-blue);
    font-size: 2.2rem;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.diferencial-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.diferencial-item:hover {
    transform: translateY(-3px);
}

.diferencial-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.diferencial-item h4 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

/* Números */
.numeros {
    padding: 80px 0;
}

.numeros h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-blue);
    font-size: 2.2rem;
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.numero-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.numero-item:hover {
    transform: translateY(-3px);
}

.numero {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.numero-label {
    color: var(--dark-gray);
    font-weight: 500;
}

/* Cases */
.cases {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    text-align: center;
}

.cases h2 {
    margin-bottom: 30px;
    font-size: 2.2rem;
}

/* Contato */
.contato {
    padding: 80px 0;
}

.contato h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-blue);
    font-size: 2.2rem;
}

.contato-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.contato-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contato-form-container h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark-blue);
    font-size: 1.8rem;
    position: relative;
}

.contato-form-container h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--orange) 0%, #ff5500 100%);
    border-radius: 2px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ff3860;
}

.error-message {
    color: #ff3860;
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange) 0%, #e06600 100%);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 119, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 119, 0, 0.4);
}

/* Floating WhatsApp Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.floating-btn i {
    font-size: 1.8rem;
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 50px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--orange);
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.social-links img {
    height: 30px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-links img:hover {
    opacity: 1;
}

/* Seção LGPD */
.lgpd-section {
    background: var(--navy-blue);
    color: var(--white);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lgpd-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.lgpd-content h4 {
    color: var(--orange);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.lgpd-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

.lgpd-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.lgpd-links a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.lgpd-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

/* Alert styles */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Página Quem Somos */
.historia {
    padding: 80px 0;
}

.historia-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.historia-texto {
    flex: 1;
}

.historia-texto h2 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.historia-texto p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.historia-imagem {
    flex: 1;
}

.historia-imagem img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.valores {
    padding: 80px 0;
    background: var(--light-gray);
}

.valores h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-blue);
    font-size: 2.2rem;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.valor-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.valor-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.valor-item h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.missao-visao {
    padding: 80px 0;
}

.missao-visao-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.missao, .visao {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.missao h2, .visao h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.numeros-detalhados {
    padding: 80px 0;
    background: var(--light-gray);
}

.numeros-detalhados h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-blue);
    font-size: 2.2rem;
}

.numeros-detalhados .numeros-grid {
    grid-template-columns: repeat(3, 1fr);
}

.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    text-align: center;
}

.cta-final h2 {
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.cta-final p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Página Serviços */
.servicos-intro {
    padding: 80px 0;
    text-align: center;
}

.servico-detalhe {
    padding: 80px 0;
}

.servico-destaque {
    background: var(--light-gray);
}

.detalhe-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.detalhe-texto {
    flex: 1;
}

.detalhe-texto h2 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.detalhe-texto p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.detalhe-texto ul {
    margin-bottom: 30px;
    list-style: none;
}

.detalhe-texto ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.detalhe-texto ul li i {
    color: var(--orange);
    margin-right: 10px;
}

.detalhe-imagem {
    flex: 1;
}

.detalhe-imagem img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sistemas-lista {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.sistema-item {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sistema-item h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.vagas {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
}

.vagas h2 {
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.vagas p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Página Blog */
.blog-content {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-post {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 20px;
}

.post-date {
    color: var(--primary-blue);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.post-content h2 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.post-content h2 a {
    color: var(--dark-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-content h2 a:hover {
    color: var(--orange);
}

.post-content p {
    margin-bottom: 20px;
    color: var(--dark-gray);
    line-height: 1.6;
}

.read-more {
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ff5500;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-link {
    display: inline-block;
    padding: 10px 15px;
    background: var(--white);
    color: var(--dark-blue);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.page-link.active,
.page-link:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.newsletter {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    margin-bottom: 20px;
    color: var(--dark-blue);
    font-size: 2.2rem;
}

.newsletter p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
}

.newsletter-form input {
    padding: 15px;
    border: 2px solid #e1e5eb;
    border-radius: 50px 0 0 50px;
    width: 300px;
    font-size: 1rem;
}

.newsletter-form button {
    background: linear-gradient(135deg, var(--orange) 0%, #e06600 100%);
    color: var(--white);
    border: none;
    padding: 0 30px;
    border-radius: 0 50px 50px 0;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #e06600 0%, #cc5a00 100%);
}

/* Página Contato */
.contato-page {
    padding: 80px 0;
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.contato-info h2 {
    color: var(--dark-blue);
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.mapa {
    padding: 80px 0;
}

.mapa h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark-blue);
    font-size: 2.2rem;
}

.mapa-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Páginas Legais */
.legal-content {
    padding: 80px 0;
}

.legal-text h2 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.legal-text p,
.legal-text ul {
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-text ul {
    padding-left: 20px;
}

.legal-text ul li {
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .solucoes-grid,
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .numeros-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-content h2 {
        font-size: 2.8rem;
    }
    
    .banner-content p {
        font-size: 1.3rem;
    }

    .historia-content,
    .detalhe-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .servico-destaque .detalhe-content {
        flex-direction: column-reverse;
    }
    
    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .missao-visao-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .numeros-detalhados .numeros-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--navy-blue);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .main-nav li {
        margin: 10px 0;
    }

    .has-submenu .submenu {
        position: static;
        box-shadow: none;
        display: none;
        margin-left: 20px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-contacts {
        display: none;
    }

    .video-banner-slider {
        height: 80vh;
        min-height: 600px;
    }

    .banner-content h2 {
        font-size: 2.2rem;
    }

    .banner-content p {
        font-size: 1.1rem;
    }

    .banner-controls {
        padding: 0 15px;
    }

    .banner-control {
        width: 40px;
        height: 40px;
    }

    .solucoes-grid,
    .diferenciais-grid,
    .numeros-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .lgpd-links {
        flex-direction: column;
        gap: 15px;
    }

    .contato-grid {
        grid-template-columns: 1fr;
    }

    .valores-grid,
    .missao-visao-grid {
        grid-template-columns: 1fr;
    }
    
    .numeros-detalhados .numeros-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sistemas-lista {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        margin-right: 0;
        margin-bottom: 15px;
        border-radius: 50px;
        width: 100%;
    }
    
    .newsletter-form button {
        border-radius: 50px;
        padding: 15px;
    }
    
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .video-banner-slider {
        height: 70vh;
        min-height: 500px;
    }

    .banner-content h2 {
        font-size: 1.8rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    .segment-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .segment-btn {
        width: 100%;
        text-align: center;
    }

    .numero {
        font-size: 2.5rem;
    }

    .floating-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .floating-btn i {
        font-size: 1.5rem;
    }

    .contato-form {
        padding: 25px;
    }

    .numeros-detalhados .numeros-grid {
        grid-template-columns: 1fr;
    }
    
    .numero {
        font-size: 2.5rem;
    }
    
    .post-image img {
        height: 200px;
    }
    
    .pagination .page-link {
        padding: 8px 12px;
        margin: 0 2px;
    }
    
    .pagination .next {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
}
/* Blog Single Page Styles */
.blog-single {
  padding: 80px 0;
}

.blog-single .container {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 50px;
  align-items: start;
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: var(--orange);
  text-decoration: none;
}

.breadcrumb span {
  color: var(--white);
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
}

.post-meta i {
  color: var(--orange);
}

.featured-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 30px;
}

.post-content h2 {
  color: var(--dark-blue);
  margin: 30px 0 15px;
  font-size: 1.8rem;
}

.post-content h3 {
  color: var(--primary-blue);
  margin: 25px 0 12px;
  font-size: 1.4rem;
}

.post-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.case-study, .warning-box, .stat-box {
  background: var(--light-gray);
  padding: 25px;
  border-radius: 10px;
  margin: 25px 0;
  border-left: 4px solid var(--orange);
}

.case-study h3, .warning-box h4, .stat-box h3 {
  margin-top: 0;
  color: var(--dark-blue);
}

.warning-box {
  border-left-color: #ff3860;
  background: #fff5f5;
}

.stat-box ul {
  margin: 0;
  padding-left: 20px;
}

.stat-box li {
  margin-bottom: 8px;
}

.post-conclusion {
  background: linear-gradient(135deg, var(--baby-blue) 0%, #d4e6ff 100%);
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
}

.post-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.post-tags a {
  background: var(--light-gray);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--dark-gray);
  transition: all 0.3s ease;
}

.post-tags a:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.post-share {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.post-share a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.post-share a:hover {
  transform: translateY(-3px);
}

.post-share a:nth-child(1) { background: #3b5998; }
.post-share a:nth-child(2) { background: #1da1f2; }
.post-share a:nth-child(3) { background: #0077b5; }
.post-share a:nth-child(4) { background: #25d366; }

.author-bio {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: var(--light-gray);
  border-radius: 10px;
  margin: 50px 0;
}

.author-avatar {
  flex-shrink: 0;
}

.author-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h3 {
  margin: 0 0 10px;
  color: var(--dark-blue);
}

.related-posts {
  margin: 50px 0;
}

.related-posts h2 {
  color: var(--dark-blue);
  margin-bottom: 30px;
  text-align: center;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-post {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.related-post:hover {
  transform: translateY(-5px);
}

.related-post img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-post h3 {
  padding: 15px;
  margin: 0;
  font-size: 1rem;
}

.related-post a {
  text-decoration: none;
  color: var(--dark-blue);
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.sidebar-widget h3 {
  color: var(--dark-blue);
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-gray);
}

.sidebar-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-widget li {
  margin-bottom: 10px;
}

.sidebar-widget a {
  display: flex;
  justify-content: space-between;
  color: var(--dark-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.sidebar-widget a:hover {
  color: var(--primary-blue);
}

.sidebar-widget span {
  background: var(--light-gray);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.8rem;
}

.recent-post {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--light-gray);
}

.recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-post a {
  display: flex;
  gap: 10px;
  text-decoration: none;
  color: var(--dark-gray);
}

.recent-post img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
}

.recent-post h4 {
  margin: 0 0 5px;
  font-size: 0.9rem;
  color: var(--dark-blue);
}

.recent-post span {
  font-size: 0.8rem;
  color: var(--dark-gray);
}

.sidebar-newsletter input {
  width: 100%;
  padding: 12px;
  border: 1px solid #e1e5eb;
  border-radius: 5px;
  margin-bottom: 10px;
}

.sidebar-newsletter button {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 1024px) {
  .blog-single .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .sidebar {
    position: static;
  }
  
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .author-bio {
    flex-direction: column;
    text-align: center;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 8px;
  }
  
  .post-share {
    justify-content: center;
  }
}