/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #165678;
    --secondary-color: #227aa8;
    --dark-gray: #353435;
    --light-gray: #f5f5f5;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Estilos do Header com Logo em Imagem */
.futuristic-header {
    background-color: rgba(22, 86, 120, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.futuristic-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Estilos do Logo em Imagem */
.logo img {
    height: 66px; /* Altura ajustável conforme necessário */
    width: auto;
    transition: all 0.3s ease;
}

.logo img:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Menu de Navegação */
.futuristic-nav ul {
    display: flex;
}

.futuristic-nav ul li {
    margin-left: 30px;
    position: relative;
}

.futuristic-nav ul li a {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.futuristic-nav ul li a i {
    margin-right: 8px;
    font-size: 16px;
}

.futuristic-nav ul li.active a,
.futuristic-nav ul li:hover a {
    color: var(--secondary-color);
}

.futuristic-nav ul li::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.futuristic-nav ul li:hover::after,
.futuristic-nav ul li.active::after {
    width: 100%;
}

.mobile-menu {
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    display: none;
}

/* Hero Section */
.futuristic-hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content h2 {
    color: var(--white);
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-content p {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    color: #0ff;
    z-index: -1;
    animation: glitch-effect 3s infinite;
}

.glitch::after {
    color: #f0f;
    z-index: -2;
    animation: glitch-effect 2s infinite reverse;
}

@keyframes glitch-effect {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-3px, 3px);
    }
    40% {
        transform: translate(-3px, -3px);
    }
    60% {
        transform: translate(3px, 3px);
    }
    80% {
        transform: translate(3px, -3px);
    }
    100% {
        transform: translate(0);
    }
}

/* Botão Futurista */
.futuristic-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(34, 122, 168, 0.4);
}

.futuristic-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(34, 122, 168, 0.6);
}

.futuristic-btn i {
    margin-left: 8px;
}

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

.futuristic-btn:hover::before {
    left: 100%;
}

/* Seções Comuns */
.section-title {
    font-size: 36px;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title span {
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(34, 122, 168, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
}

.service-card h3 {
    font-size: 22px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 15px;
}

/* About Section */
.about-preview {
    background: var(--light-gray);
}

.about-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.about-image {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    position: relative;
    height: 300px;
}

.hexagon {
    width: 150px;
    height: 173px;
    background: var(--secondary-color);
    position: relative;
    margin: 0 10px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0.7;
    transition: all 0.5s ease;
}

.hexagon:nth-child(1) {
    transform: translateY(50px);
    animation: float 4s ease-in-out infinite;
}

.hexagon:nth-child(2) {
    animation: float 4s ease-in-out infinite reverse;
}

.hexagon:nth-child(3) {
    transform: translateY(50px);
    animation: float 4s ease-in-out infinite 1s;
}

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

/* Footer */
.futuristic-footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 80px 0 0;
}

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

.footer-section h3 {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-section p, .footer-section a {
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: #999;
}

/* Efeito Partículas */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Responsividade */
@media (max-width: 992px) {
    .futuristic-nav ul {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-content h2 {
        font-size: 48px;
    }
    
    /* Ajuste do Logo em Dispositivos Móveis */
    .logo img {
        height: 40px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .futuristic-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    /* Ajuste adicional do Logo para telas muito pequenas */
    .logo img {
        height: 35px;
    }
}

/* ==================== */
/* PAGE HERO CORRIGIDO */
/* ==================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 180px 0 100px;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 800;
}

.page-hero h1 span {
    color: rgba(255, 255, 255, 0.8);
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Efeito de partículas apenas na home */
.futuristic-hero .particles {
    display: block;
}
.page-hero .particles {
    display: none;
}

/* ==================== */
/* SERVIÇOS - ESTILOS ESPECÍFICOS */
/* ==================== */

.services-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.section-subtitle {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 50px;
    font-size: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid.detailed {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(34, 122, 168, 0.15);
    border-color: var(--secondary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
}

.service-card p {
    color: #555;
    text-align: center;
    margin-bottom: 20px;
}

.service-features {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
}

.service-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--dark-gray);
    font-size: 14px;
}

.service-features li i {
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 4px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-content h2 i {
    margin-right: 15px;
    font-size: 32px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsividade */
@media (max-width: 768px) {
    .services-grid.detailed {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 24px;
        flex-direction: column;
    }
    
    .cta-content h2 i {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* ==================== */
/* PORTFÓLIO - ESTILOS ESPECÍFICOS */
/* ==================== */

.portfolio-intro {
    text-align: center;
    margin-bottom: 50px;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(34, 122, 168, 0.2);
}

.portfolio-image {
    width: 100%;
    height: 100%;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 86, 120, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
}

.portfolio-link {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    border: 2px solid var(--white);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: var(--white);
    color: var(--primary-color);
}

.portfolio-link i {
    margin-left: 5px;
}

/* ==================== */
/* CONTATO - ESTILOS ESPECÍFICOS */
/* ==================== */

.contact-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    padding-right: 30px;
}

.info-card {
    display: flex;
    margin-bottom: 30px;
    align-items: center;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.info-content p {
    font-size: 16px;
    color: #555;
}

.contact-hours {
    margin: 30px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.contact-hours h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-hours h3 i {
    margin-right: 10px;
}

.contact-hours p {
    margin-bottom: 5px;
}

.social-links h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.futuristic-form .form-group {
    margin-bottom: 20px;
}

.futuristic-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.futuristic-form label i {
    margin-right: 10px;
    font-size: 16px;
}

.futuristic-form input,
.futuristic-form select,
.futuristic-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.futuristic-form input:focus,
.futuristic-form select:focus,
.futuristic-form textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(34, 122, 168, 0.2);
}

.futuristic-form textarea {
    min-height: 150px;
    resize: vertical;
}

.map-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-section .container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== */
/* PORTFÓLIO - ESTILOS ESPECÍFICOS */
/* ==================== */

.portfolio-intro {
    text-align: center;
    margin-bottom: 50px;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(34, 122, 168, 0.2);
}

.portfolio-image {
    width: 100%;
    height: 100%;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 86, 120, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
}

.portfolio-link {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    border: 2px solid var(--white);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: var(--white);
    color: var(--primary-color);
}

.portfolio-link i {
    margin-left: 5px;
}

/* ==================== */
/* CONTATO - ESTILOS ESPECÍFICOS */
/* ==================== */

.contact-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    padding-right: 30px;
}

.info-card {
    display: flex;
    margin-bottom: 30px;
    align-items: center;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.info-content p {
    font-size: 16px;
    color: #555;
}

.contact-hours {
    margin: 30px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.contact-hours h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-hours h3 i {
    margin-right: 10px;
}

.contact-hours p {
    margin-bottom: 5px;
}

.social-links h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.futuristic-form .form-group {
    margin-bottom: 20px;
}

.futuristic-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.futuristic-form label i {
    margin-right: 10px;
    font-size: 16px;
}

.futuristic-form input,
.futuristic-form select,
.futuristic-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.futuristic-form input:focus,
.futuristic-form select:focus,
.futuristic-form textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(34, 122, 168, 0.2);
}

.futuristic-form textarea {
    min-height: 150px;
    resize: vertical;
}

.map-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-section .container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== */
/* SOBRE NÓS - ESTILOS ESPECÍFICOS */
/* ==================== */

.about-company {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.about-content {
    margin-bottom: 40px;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    background: rgba(34, 122, 168, 0.1);
}

.mv-icon {
    font-size: 30px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.mv-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.founder-section {
    margin: 80px 0;
}

.founder-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.founder-image {
    border-radius: 8px;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
}

.founder-info h3 {
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.founder-info h3 i {
    margin-right: 10px;
}

.founder-title {
    color: #aaa;
    margin-bottom: 20px;
    font-style: italic;
}

.founder-quote {
    background: rgba(34, 122, 168, 0.1);
    border-left: 4px solid var(--secondary-color);
    padding: 20px;
    margin-top: 20px;
    position: relative;
}

.founder-quote i:first-child {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 24px;
    color: rgba(34, 122, 168, 0.3);
}

.founder-quote p {
    padding-left: 30px;
    font-style: italic;
}

.certifications-section {
    margin: 80px 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.cert-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.cert-card:hover {
    transform: translateY(-5px);
    background: rgba(34, 122, 168, 0.1);
    border-color: var(--secondary-color);
}

.cert-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.cert-card h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 10px;
}

.cert-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 15px;
}

.cert-year {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.skills-section {
    margin: 80px 0 40px;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.skills-column {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skills-column h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-size: 20px;
}

.skills-column h3 i {
    margin-right: 10px;
    font-size: 24px;
}

.skills-list {
    margin-left: 15px;
}

.skills-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.skills-list li i {
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 4px;
}

/* Responsividade */
@media (max-width: 992px) {
    .about-company {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .founder-card {
        grid-template-columns: 1fr;
    }
    
    .founder-image {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .skills-container {
        grid-template-columns: 1fr;
    }
}

/* ==================== */
/* CORREÇÕES DE CORES PARA TEXTO VISÍVEL */
/* ==================== */

/* Certificações - Correção */
.cert-card {
    background: #f8f9fa; /* Fundo claro */
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cert-card:hover {
    background: #e9f5fe; /* Azul bem claro no hover */
    border-color: var(--secondary-color);
}

.cert-card h3 {
    color: var(--primary-color); /* Azul escuro */
}

.cert-card p {
    color: #555; /* Cinza escuro */
}

/* Especialidades - Correção */
.skills-column {
    background: #f8f9fa; /* Fundo claro */
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.skills-column h3 {
    color: var(--primary-color); /* Azul escuro */
}

.skills-list li {
    color: #444; /* Cinza escuro */
}

/* Ajustes gerais de contraste */
.about-section {
    background: #fff; /* Fundo branco para a seção */
    padding: 60px 0;
}

.section-title {
    color: var(--primary-color); /* Garantindo cor do título */
}

.section-title span {
    color: var(--secondary-color); /* Azul claro para detalhes */
}

/* Manter estilo original do footer e header */
.futuristic-header,
.futuristic-footer {
    background: var(--primary-color); /* Mantém o azul escuro */
    color: white;
}