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

:root {
    --primary-color: #0066cc;
    --primary-dark: #004d99;
    --primary-light: #0088ff;
    --secondary-color: #00aaff;
    --accent-color: #00d4ff;
    --dark-blue: #001a33;
    --text-color: #333;
    --text-light: #666;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 102, 204, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* ============================================
   HEADER COM SCROLL EFFECT
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
    padding: 0;
}

header.scrolled {
    background: linear-gradient(135deg, #004d99 0%, #0066cc 100%);
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.3);
    padding: 0;
}

header .header-wave {
    height: 0;
    opacity: 0;
    transition: all 0.4s ease;
}

header.scrolled .header-wave {
    height: 50px;
    opacity: 1;
}

.header-content {
    position: relative;
    z-index: 10;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 30px;
    transition: all 0.4s ease;
}

header:not(.scrolled) nav .container {
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 1rem 30px;
    max-width: 1000px;
    margin: 0 auto;
}

header.scrolled nav .container {
    max-width: 1200px;
    padding: 1rem 20px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

header.scrolled .logo-icon {
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.logo-icon:hover {
    transform: rotate(360deg);
}

.logo h1 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo span {
    font-weight: 300;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
}

.lang-switcher a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.lang-switcher a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.lang-switcher a.active-lang {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

.lang-switcher .lang-divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

/* Hamburguer Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 100;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--white);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

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

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

/* Wave Decoration para Header */
.header-wave {
    position: relative;
    width: 100%;
    height: 80px;
    margin-top: -1px;
    overflow: hidden;
    line-height: 0;
    transition: height 0.4s ease;
}

.header-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

/* ============================================
   HERO FULLSCREEN
   ============================================ */
.hero-fullscreen {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/banner.jpg') !important;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: var(--white);
}

.hero-fullscreen::before {
    display: none;
}


.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
}

.hero-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.5));
}

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

.hero-fullscreen h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.hero-fullscreen .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: floatUpDown 2s ease-in-out infinite;
    cursor: pointer;
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 10px;
    background: var(--white);
    border-radius: 3px;
    transform: translateX(-50%);
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(15px); }
}

@keyframes scrollDown {
    0% { top: 8px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

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

/* ============================================
   SEÇÃO SOBRE NÓS (REDESIGN)
   ============================================ */
.about-preview {
    padding: 120px 0;
    background-color: var(--light-bg);
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 75%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 75%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border: 8px solid var(--white);
}

.about-image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.about-content-modern {
    padding-right: 20px;
}

.section-label-alt {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 20px;
}

.about-content-modern h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
}

.about-lead {
    font-size: 1.25rem;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 35px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.highlight-item {
    text-align: center;
    padding: 20px 10px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.highlight-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.highlight-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.btn-primary-alt {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary-alt:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-label {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.cta-center {
    text-align: center;
}

/* ============================================
   SEÇÃO ESTATÍSTICAS
   ============================================ */
.stats-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

/* ============================================
   SEÇÃO SOLUÇÕES (REDESIGN)
   ============================================ */
.solutions-preview {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    overflow: hidden;
}

.solutions-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/solucoes.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
    transition: opacity 0.6s ease;
}

.solutions-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.solutions-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.solutions-content {
    text-align: center;
}

.solutions-content .section-label-alt {
    color: var(--white);
    margin-bottom: 20px;
}

.solutions-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 60px;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 40px 35px;
    text-align: left;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.solution-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.solution-card h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.solution-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Home - Soluções Compactas (4 em linha) */
.solutions-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.solution-card-compact {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.solution-card-compact:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.solution-icon-compact {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.solution-card-compact:hover .solution-icon-compact {
    background: var(--white);
    transform: scale(1.1);
}

.solution-icon-compact i {
    font-size: 1.8rem;
    color: var(--white);
}

.solution-card-compact:hover .solution-icon-compact i {
    color: var(--primary-color);
}

.solution-card-compact h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.solution-card-compact p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Home - Serviços em Destaque */
.services-home-section {
    margin-top: 80px;
}

.services-home-section h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.services-home-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 50px;
    line-height: 1.6;
}

.services-home-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-home-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 45px 40px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.service-home-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.5);
}

.service-home-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-home-card:hover .service-home-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.service-home-icon i {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.service-home-card h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-home-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-size: 1.05rem;
}

.service-chorume {
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-chorume::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 77, 153, 0.85);
    border-radius: 15px;
    z-index: 0;
}

.service-chorume > * {
    position: relative;
    z-index: 1;
}

/* ============================================
   SEÇÃO CTA CONTATO
   ============================================ */
.cta-section {
    padding: 70px 20px;
    background: #004d99;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    opacity: 0.95;
}

.cta-content .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-content .btn-primary:hover {
    background-color: var(--dark-blue);
    color: var(--white);
    border-color: var(--dark-blue);
}

/* ============================================
   PAGES (OUTRAS PÁGINAS)
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 80px 20px;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.page-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* About Content */
.about-content {
    padding: 80px 20px;
    background-color: var(--white);
}

.about-content h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    font-weight: 700;
}

.about-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.about-content ul li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-color);
}

.about-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Services Page */
.services {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.services .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

/* Our Services Section */
.our-services {
    padding: 100px 20px;
    background-color: var(--white);
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-header .section-label-alt {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 20px;
}

.services-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.services-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: var(--white);
    border: 2px solid var(--light-bg);
    border-radius: 15px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-light);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ============================================
   PÁGINA SOBRE - HERO
   ============================================ */
.about-hero {
    height: 70vh;
    min-height: 500px;
    background-image: url('../images/img3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 77, 153, 0.7);
}

.about-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.about-hero-content .section-label-alt {
    color: var(--white);
    margin-bottom: 25px;
    opacity: 0.95;
}

.about-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.about-hero-content p {
    font-size: 1.4rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* ============================================
   PÁGINA SOBRE - QUEM SOMOS / TECNOLOGIA
   ============================================ */
.about-who-we-are,
.about-technology {
    padding: 120px 0;
}

.about-who-we-are {
    background-color: var(--white);
}

.about-technology {
    background-color: var(--light-bg);
}

.about-container-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-container-full.reverse {
    direction: rtl;
}

.about-container-full.reverse > * {
    direction: ltr;
}

.about-text-side {
    padding: 20px 0;
}

.about-text-side .section-label-alt {
    color: var(--secondary-color);
}

.about-text-side h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
}

.about-lead-text {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 500;
}

.about-text-side p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image-side {
    position: relative;
    height: 550px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* Stats Inline */
.about-stats-inline {
    margin-top: 40px;
    display: grid;
    gap: 25px;
}

.stat-inline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-inline-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
}

.stat-inline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-inline-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.stat-inline-content h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-inline-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

/* Tech Features */
.about-tech-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 35px;
}

.tech-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.tech-feature-item i {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.tech-feature-item span {
    font-size: 1.05rem;
    color: var(--text-color);
    font-weight: 500;
}

/* ============================================
   PÁGINA SOBRE - DIFERENCIAIS
   ============================================ */
.about-differentials {
    padding: 120px 20px;
    background-color: var(--white);
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.section-header-center .section-label-alt {
    color: var(--secondary-color);
}

.section-header-center h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.section-header-center p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.differential-card {
    background: var(--white);
    border: 2px solid var(--light-bg);
    border-radius: 15px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.differential-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-light);
}

.differential-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.differential-card:hover .differential-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.differential-icon i {
    font-size: 2rem;
    color: var(--white);
}

.differential-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.differential-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* ============================================
   PÁGINA SOBRE - CTA
   ============================================ */
.about-cta {
    padding: 100px 20px;
    background: #004d99;
    text-align: center;
}

.about-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
}

.about-cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
}

.about-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   PÁGINA SOLUÇÕES - HERO
   ============================================ */
.solutions-hero {
    height: 70vh;
    min-height: 500px;
    background-image: url('../images/img3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.solutions-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 77, 153, 0.7);
}

.solutions-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.solutions-hero-content .section-label-alt {
    color: var(--white);
    margin-bottom: 25px;
    opacity: 0.95;
}

.solutions-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.solutions-hero-content p {
    font-size: 1.4rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* ============================================
   PÁGINA SOLUÇÕES - DETALHES
   ============================================ */
.solution-details {
    padding: 120px 20px;
    background-color: var(--white);
}

.solution-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.solution-feature-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 45px 40px;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.solution-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-light);
    background: var(--white);
}

.solution-feature-number {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.solution-feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.solution-feature-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.solution-feature-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.solution-feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ============================================
   PÁGINA SOLUÇÕES - SERVIÇOS ESPECIALIZADOS
   ============================================ */
.services-specialized {
    padding: 120px 20px;
    background-image: url('../images/img5.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.services-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 77, 153, 0.92);
}

.white-text .section-label-alt {
    color: var(--white);
}

.white-text h2 {
    color: var(--white);
}

.white-text p {
    color: rgba(255, 255, 255, 0.95);
}

.services-specialized-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.service-specialized-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.service-specialized-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-specialized-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.service-specialized-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.service-specialized-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 77, 153, 0.75) 0%, rgba(0, 102, 204, 0.65) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-specialized-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-specialized-icon i {
    font-size: 2.2rem;
    color: var(--white);
}

.service-specialized-content {
    padding: 35px 30px;
}

.service-specialized-content h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-specialized-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: var(--secondary-color);
}

/* ============================================
   PÁGINA SOLUÇÕES - CTA
   ============================================ */
.solutions-cta {
    padding: 100px 20px;
    background: #004d99;
    text-align: center;
}

.solutions-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.solutions-cta-content h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
}

.solutions-cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* ============================================
   PÁGINA CONTATO - HERO
   ============================================ */
.contact-hero {
    padding: 150px 20px 100px;
    background: #004d99;
    text-align: center;
    margin-top: 80px;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

.contact-hero-content .section-label-alt {
    color: var(--white);
    margin-bottom: 25px;
    opacity: 0.95;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* ============================================
   PÁGINA CONTATO - MAIN
   ============================================ */
.contact-main {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

/* Informações */
.contact-info-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.contact-intro {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

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

.contact-info-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-light);
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-info-text h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-info-text p {
    font-size: 1.05rem;
    color: var(--text-color);
    margin-bottom: 5px;
    line-height: 1.5;
}

.contact-info-text span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Formulário */
.contact-form-section {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper {
    padding: 50px;
}

.contact-form-wrapper h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.form-intro {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

.modern-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

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

.modern-form label {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.modern-form input,
.modern-form textarea {
    padding: 15px 20px;
    border: 2px solid var(--light-bg);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-color);
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.modern-form input:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

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

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    margin-top: 15px;
    font-size: 1.1rem;
    width: auto;
}

.btn-submit:hover {
    gap: 18px;
}

/* ============================================
   PÁGINA CONTATO - MAPA
   ============================================ */
.contact-map {
    position: relative;
    height: 500px;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(30%);
}

.map-overlay-info {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.map-info-card {
    background: var(--white);
    padding: 35px 45px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    max-width: 450px;
}

.map-info-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.map-info-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.map-info-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.map-link:hover {
    gap: 12px;
    color: var(--secondary-color);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* ============================================
   FOOTER COM ONDAS DE ÁGUA
   ============================================ */
.footer-wave {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 0;
    margin-top: 0;
}

.footer-content {
    padding: 60px 20px 30px;
}

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

.footer-column h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-column ul li a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover::before {
    opacity: 1;
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 170, 255, 0.3);
}

/* Contact Info no Footer */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-item-icon {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.contact-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .hero-fullscreen h1 {
        font-size: 3.5rem;
        margin-bottom: 2.5rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 30px;
    }

    .about-images {
        height: 500px;
    }

    .about-content-modern h2 {
        font-size: 2.3rem;
    }

    .about-highlights {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .highlight-number {
        font-size: 1.6rem;
    }

    .highlight-label {
        font-size: 0.8rem;
    }

    .solutions-content h2 {
        font-size: 2.5rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .solution-card {
        padding: 30px 25px;
    }

    .solutions-grid-home {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-home-section h2 {
        font-size: 2.2rem;
    }

    .services-home-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-home-card {
        padding: 35px 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-item {
        padding: 40px 30px;
    }

    .about-container-full {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image-side {
        height: 450px;
    }

    .about-hero-content h1 {
        font-size: 3rem;
    }

    .about-text-side h2 {
        font-size: 2.5rem;
    }

    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .solutions-hero-content h1 {
        font-size: 3rem;
    }

    .solution-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-specialized-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    header:not(.scrolled) nav .container {
        border-radius: 20px;
        padding: 1rem 20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-blue) 100%);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.4s ease;
        padding: 100px 20px;
        gap: 2rem;
        justify-content: center;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .lang-switcher {
        margin-left: 0;
        margin-right: 10px;
        gap: 4px;
    }

    .lang-switcher a {
        font-size: 0.7rem;
        padding: 2px 6px;
    }

    .lang-switcher .lang-divider {
        font-size: 0.65rem;
    }

    .hero-fullscreen h1 {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .hero-fullscreen {
        background-attachment: scroll;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .page-header h2,
    .section-header h2,
    .cta-content h2 {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .header-wave {
        height: 50px;
    }

    .footer-wave {
        height: 60px;
    }

    .footer-wave svg {
        height: 60px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .solutions-preview {
        min-height: auto;
        padding: 80px 0;
    }

    .solutions-background {
        background-attachment: scroll;
    }

    .solutions-container {
        padding: 0 20px;
    }

    .solutions-content h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .solutions-grid {
        gap: 20px;
    }

    .solution-card {
        padding: 25px 20px;
    }

    .solution-card h3 {
        font-size: 1.4rem;
    }

    .solution-card p {
        font-size: 1rem;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .services-header p {
        font-size: 1.05rem;
    }

    .solutions-grid-home {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .solution-card-compact {
        padding: 25px 15px;
    }

    .solution-icon-compact {
        width: 55px;
        height: 55px;
    }

    .solution-icon-compact i {
        font-size: 1.5rem;
    }

    .solution-card-compact h3 {
        font-size: 1.1rem;
    }

    .solution-card-compact p {
        font-size: 0.9rem;
    }

    .services-home-section {
        margin-top: 60px;
    }

    .services-home-section h2 {
        font-size: 2rem;
    }

    .services-home-subtitle {
        font-size: 1.05rem;
        margin-bottom: 35px;
    }

    .services-home-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-home-card {
        padding: 35px 30px;
    }

    .service-home-icon {
        width: 70px;
        height: 70px;
    }

    .service-home-icon i {
        font-size: 1.9rem;
    }

    .service-home-card h3 {
        font-size: 1.4rem;
    }

    .service-home-card p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-item {
        padding: 35px 25px;
    }

    .service-icon {
        width: 75px;
        height: 75px;
    }

    .service-icon i {
        font-size: 2rem;
    }

    .service-item h3 {
        font-size: 1.3rem;
    }

    .service-item p {
        font-size: 1rem;
    }

    .about-container {
        padding: 0 20px;
        gap: 50px;
    }

    .about-images {
        height: 400px;
    }

    .about-image-main {
        width: 75%;
        height: 70%;
    }

    .about-image-overlay {
        width: 75%;
        height: 70%;
        border: 5px solid var(--white);
    }

    .about-content-modern {
        padding-right: 0;
    }

    .about-content-modern h2 {
        font-size: 2rem;
    }

    .about-lead {
        font-size: 1.1rem;
    }

    .about-text {
        font-size: 1rem;
    }

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

    .highlight-item {
        padding: 15px;
    }

    .btn-primary-alt {
        display: block;
        text-align: center;
    }

    .about-hero {
        height: 60vh;
        min-height: 400px;
        background-attachment: scroll;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-hero-content p {
        font-size: 1.15rem;
    }

    .about-container-full {
        padding: 0 20px;
    }

    .about-image-side {
        height: 350px;
    }

    .about-text-side h2 {
        font-size: 2rem;
    }

    .about-stats-inline {
        margin-top: 30px;
    }

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

    .stat-inline-icon {
        width: 50px;
        height: 50px;
    }

    .stat-inline-icon i {
        font-size: 1.5rem;
    }

    .about-tech-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .differential-icon {
        width: 70px;
        height: 70px;
    }

    .differential-icon i {
        font-size: 1.8rem;
    }

    .about-cta-content h2 {
        font-size: 2.2rem;
    }

    .about-cta-content p {
        font-size: 1.1rem;
    }

    .about-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .about-cta-buttons .btn-primary,
    .about-cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .solutions-hero {
        height: 60vh;
        min-height: 400px;
        background-attachment: scroll;
    }

    .solutions-hero-content h1 {
        font-size: 2.5rem;
    }

    .solutions-hero-content p {
        font-size: 1.15rem;
    }

    .solution-feature-card {
        padding: 35px 25px;
    }

    .solution-feature-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .solution-feature-icon {
        width: 60px;
        height: 60px;
    }

    .solution-feature-icon i {
        font-size: 1.7rem;
    }

    .solution-feature-card h3 {
        font-size: 1.4rem;
    }

    .services-specialized {
        background-attachment: scroll;
    }

    .service-specialized-image {
        height: 220px;
    }

    .service-specialized-icon {
        width: 70px;
        height: 70px;
    }

    .service-specialized-icon i {
        font-size: 2rem;
    }

    .service-specialized-content {
        padding: 30px 25px;
    }

    .service-specialized-content h3 {
        font-size: 1.4rem;
    }

    .solutions-cta-content h2 {
        font-size: 2.2rem;
    }

    .solutions-cta-content p {
        font-size: 1.1rem;
    }

    .contact-hero {
        padding: 120px 20px 80px;
    }

    .contact-hero-content h1 {
        font-size: 2.2rem;
    }

    .contact-hero-content p {
        font-size: 1.15rem;
    }

    .contact-form-wrapper {
        padding: 35px 25px;
    }

    .contact-form-wrapper h2 {
        font-size: 2rem;
    }

    .modern-form .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .map-overlay-info {
        bottom: 20px;
    }

    .map-info-card {
        padding: 25px 30px;
        max-width: 90%;
    }

    .map-info-card i {
        font-size: 2.5rem;
    }

    .map-info-card h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.4rem;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .hero-fullscreen h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .contact-section .container {
        grid-template-columns: 1fr;
    }

    .about-images {
        height: 350px;
    }

    .about-content-modern h2 {
        font-size: 1.8rem;
    }

    .about-lead {
        font-size: 1rem;
    }

    .about-text {
        font-size: 0.95rem;
    }

    .highlight-number {
        font-size: 1.5rem;
    }

    .highlight-label {
        font-size: 0.85rem;
    }

    .btn-primary-alt {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .solutions-content h2 {
        font-size: 1.8rem;
    }

    .solution-card h3 {
        font-size: 1.25rem;
    }

    .solution-card p {
        font-size: 0.95rem;
    }

    .services-header h2 {
        font-size: 1.8rem;
    }

    .services-header p {
        font-size: 1rem;
    }

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

    .solution-card-compact {
        padding: 20px 15px;
    }

    .solution-icon-compact {
        width: 50px;
        height: 50px;
    }

    .solution-icon-compact i {
        font-size: 1.3rem;
    }

    .solution-card-compact h3 {
        font-size: 1rem;
    }

    .solution-card-compact p {
        font-size: 0.85rem;
    }

    .services-home-section {
        margin-top: 50px;
    }

    .services-home-section h2 {
        font-size: 1.8rem;
    }

    .services-home-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .services-home-grid {
        gap: 15px;
    }

    .service-home-card {
        padding: 30px 25px;
    }

    .service-home-icon {
        width: 65px;
        height: 65px;
    }

    .service-home-icon i {
        font-size: 1.7rem;
    }

    .service-home-card h3 {
        font-size: 1.25rem;
    }

    .service-home-card p {
        font-size: 0.95rem;
    }

    .service-item {
        padding: 30px 20px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 1.8rem;
    }

    .service-item h3 {
        font-size: 1.2rem;
    }

    .service-item p {
        font-size: 0.95rem;
    }

    .about-hero-content h1 {
        font-size: 2rem;
    }

    .about-hero-content p {
        font-size: 1rem;
    }

    .about-image-side {
        height: 300px;
    }

    .about-text-side h2 {
        font-size: 1.8rem;
    }

    .about-lead-text {
        font-size: 1.1rem;
    }

    .stat-inline-content h4 {
        font-size: 1.15rem;
    }

    .stat-inline-content p {
        font-size: 0.95rem;
    }

    .section-header-center h2 {
        font-size: 2rem;
    }

    .section-header-center p {
        font-size: 1.05rem;
    }

    .differential-card {
        padding: 35px 25px;
    }

    .differential-card h3 {
        font-size: 1.25rem;
    }

    .about-cta-content h2 {
        font-size: 2rem;
    }

    .about-cta-content p {
        font-size: 1rem;
    }

    .solutions-hero-content h1 {
        font-size: 2rem;
    }

    .solutions-hero-content p {
        font-size: 1rem;
    }

    .solution-feature-card {
        padding: 30px 20px;
    }

    .solution-feature-card h3 {
        font-size: 1.3rem;
    }

    .solution-feature-card p {
        font-size: 1rem;
    }

    .service-specialized-image {
        height: 200px;
    }

    .service-specialized-content {
        padding: 25px 20px;
    }

    .service-specialized-content h3 {
        font-size: 1.3rem;
    }

    .service-specialized-content p {
        font-size: 1rem;
    }

    .solutions-cta-content h2 {
        font-size: 2rem;
    }

    .solutions-cta-content p {
        font-size: 1rem;
    }

    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .contact-hero-content p {
        font-size: 1rem;
    }

    .contact-info-section h2 {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-form-wrapper h2 {
        font-size: 1.8rem;
    }

    .btn-submit {
        padding: 16px 35px;
        font-size: 1rem;
    }

    .contact-map {
        height: 400px;
    }

    .map-info-card {
        padding: 20px 25px;
    }

    .map-info-card i {
        font-size: 2rem;
    }

    .map-info-card h3 {
        font-size: 1.25rem;
    }

    .map-info-card p {
        font-size: 0.95rem;
    }
}
