:root {
    --primary-blue: #005AA7;
    --secondary-blue: #003366;
    --white: #FFFFFF;
    --black: #000000;
    --gray: #666666;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Custom Navbar */
.custom-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    color: var(--primary-blue) !important;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.navbar-nav {
    align-items: center;
}

.nav-item {
    margin: 0 0.5rem;
}

.nav-link {
    color: var(--black) !important;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
    background: rgba(0, 90, 167, 0.1);
}

.nav-link.active {
    color: var(--primary-blue) !important;
    background: rgba(0, 90, 167, 0.1);
}

.navbar-nav .btn {
    margin-left: 1rem;
    padding: 0.5rem 1.5rem;
}


.hero-section {
    position: relative;
    background-image: url('images/background/ground.png');
    background-size: cover;           /* mantém proporção, sem distorcer */
    background-position: center center; /* centraliza melhor em telas largas */
    background-repeat: no-repeat;
    background-attachment: fixed;     /* dá efeito elegante (opcional) */
    image-rendering: auto;            /* evita pixelização */
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;          /* centraliza conteúdo no meio da tela */
}


.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.3)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.2)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.3)"/></svg>');
    animation: float 20s infinite linear;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats h3 {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
}


.custom-hero-btn {
  background-color: #0a2540; /* Azul escuro elegante */
  border: none;
  color: #fff;
  transition: all 0.3s ease;
}

.custom-hero-btn:hover {
  background-color: #103c68; /* Um tom mais claro ao passar o mouse */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


.pulse-btn {
    animation: pulse 2s infinite;
}

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

/* Hero Animation */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.satellite-animation {
    position: relative;
    width: 300px;
    height: 300px;
}

.earth {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: #4CAF50;
    animation: rotate 20s linear infinite;
}

.satellite {
    position: absolute;
    top: 20%;
    left: 20%;
    font-size: 2rem;
    color: #FFD700;
    animation: orbit 10s linear infinite;
}

.signal-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wave {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: wave-pulse 3s infinite;
}

.wave:nth-child(1) {
    width: 100px;
    height: 100px;
    margin: -50px;
}

.wave:nth-child(2) {
    width: 150px;
    height: 150px;
    margin: -75px;
    animation-delay: 1s;
}

.wave:nth-child(3) {
    width: 200px;
    height: 200px;
    margin: -100px;
    animation-delay: 2s;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbit {
    from { transform: rotate(0deg) translateX(100px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
}

@keyframes wave-pulse {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(1); opacity: 0; }
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.interactive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 90, 167, 0.2);
}

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

.service-features {
    margin-top: 1rem;
}

.service-features .badge {
    margin: 0.2rem;
}

/* Interactive Demo */
.interactive-demo {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
}

.interactive-demo .section-title {
    color: white;
}

.interactive-demo .lead {
    color: rgba(255, 255, 255, 0.9);
}

.speed-test {
    text-align: center;
}

.speedometer {
    position: relative;
    display: inline-block;
}

.speed-display {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
}

/* Coverage Map */
.coverage-map {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.interactive-map {
    width: 100%;
    height: auto;
    cursor: pointer;
}

.coverage-area:hover {
    fill: var(--primary-blue) !important;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e9ecef 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.contact-dark {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, #001a33 100%);
}

.contact-dark .section-title {
    color: white !important;
}

.contact-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
}

.contact-dark .contact-details h5 {
    color: white !important;
}

.contact-dark .contact-details p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.contact-dark .contact-details a {
    color: white !important;
}

.contact-dark .contact-icon {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-details h5 {
    color: var(--secondary-blue);
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--primary-blue);
    text-decoration: none;
}

.contact-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
}

.form-control, .form-select {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    transition: border-color 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 90, 167, 0.25);
}

/* Section Titles */
.section-title {
    color: var(--secondary-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 90, 167, 0.4);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 500;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .satellite-animation {
        width: 250px;
        height: 250px;
    }
    
    .earth {
        font-size: 3rem;
    }
    
    .satellite {
        font-size: 1.5rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Counter Animation */
.counter {
    transition: all 0.3s ease;
}

/* Enhanced Contact Page Styles */
.quick-contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.quick-contact-card:hover {
    transform: translateY(-5px);
}

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

.contact-benefits {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.benefit-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, rgba(0, 90, 167, 0.9) 0%, rgba(0, 51, 102, 0.9) 100%), url('images/background/services-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.3)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.2)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.3)"/></svg>');
    animation: float 20s infinite linear;
    opacity: 0.5;
}

.page-hero .hero-title {
    color: white;
    position: relative;
    z-index: 2;
}

.page-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

/* Enhanced Sections */
.services-preview {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e9ecef 100%);
}

.quick-contact {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
}

.quick-contact .section-title {
    color: white;
}

.quick-contact .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.live-chat {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e9ecef 100%);
}

.faq-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e9ecef 100%);
}

.company-story {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e9ecef 100%);
}

.leadership-team {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.mvv-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e9ecef 100%);
}

.impact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.enhanced-stats {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
}

.certifications {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e9ecef 100%);
}

.services-details {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e9ecef 100%);
}

.service-comparison {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e9ecef 100%);
}

.technology-section {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
}

.cta-section h2 {
    color: white;
}

.cta-section .lead {
    color: rgba(255, 255, 255, 0.9);
}

/* Image Support Styles */
.hero-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 90, 167, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.about-secondary-images img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.service-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.service-image:hover {
    transform: scale(1.02);
}

.hero-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* QR Code Styles */
.qr-contact-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border: none;
}

.qr-contact-card h4 {
    color: white;
}

.qr-code-container {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    margin: 0 auto 1rem;
    width: fit-content;
}

.qr-code-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

/* Team Images */
.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary-blue);
}

/* Equipment Gallery */
.equipment-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.equipment-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.equipment-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.equipment-item:hover img {
    transform: scale(1.05);
}

.equipment-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.equipment-item:hover .equipment-overlay {
    transform: translateY(0);
}

/* Logo and Branding */
.company-logo {
    max-height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand:hover .company-logo {
    transform: scale(1.1);
}

.navbar-brand {
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logos:hover {
    opacity: 1;
}

.partner-logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1);
}

/* Case Studies Style (inspired by Oasis Networks) */
.case-study-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.case-study-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.case-study-content {
    padding: 2rem;
}

.case-study-tag {
    background: var(--primary-blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Clean Layout (Oasis Networks inspired) */
.clean-section {
    padding: 5rem 0;
    background: white;
}

.clean-section:nth-child(even) {
    background: #fafbfc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Image Placeholders */
.image-placeholder {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1rem;
    border-radius: 15px;
    border: 2px dashed #dee2e6;
    height: 300px;
    text-align: center;
}

.image-placeholder.service-image {
    height: 300px;
}

.image-placeholder i {
    margin-bottom: 1rem;
    color: var(--primary-blue);
    opacity: 0.7;
}

.chat-preview {
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.chat-window {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.chat-header {
    background: var(--primary-blue);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
}

.chat-header i {
    margin-right: 0.5rem;
}

.chat-messages {
    padding: 1rem;
    max-height: 200px;
    overflow-y: auto;
}

.message {
    display: flex;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.message.support {
    justify-content: flex-start;
}

.message.user {
    justify-content: flex-end;
}

.message .avatar {
    width: 30px;
    height: 30px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.message .text {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    max-width: 70%;
}

.message.user .text {
    background: var(--primary-blue);
    color: white;
}

.chat-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-feature {
    display: flex;
    align-items: center;
}

.chat-feature i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.faq-filter {
    transition: all 0.3s ease;
}

.faq-filter.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.faq-item {
    transition: opacity 0.3s ease;
}

.faq-item.hidden {
    display: none;
}

/* Enhanced About Page Styles */
.story-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.highlight-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.achievement-cards {
    display: grid;
    gap: 1.5rem;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.team-role {
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-expertise {
    margin-top: 1rem;
}

.mvv-card.enhanced {
    position: relative;
    overflow: hidden;
}

.mvv-card.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}

.mvv-details {
    margin-top: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.detail-item i {
    margin-right: 0.75rem;
    color: var(--primary-blue);
}

.values-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.value-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.value-item i {
    margin-right: 0.75rem;
    color: var(--primary-blue);
}

.impact-story {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.metric {
    text-align: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--gray);
    font-size: 0.9rem;
}

.impact-testimonials {
    position: relative;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
}

.testimonial-card.active {
    display: block;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-btn.active {
    background: var(--primary-blue);
}

.enhanced-stats {
    position: relative;
    overflow: hidden;
}

.enhanced-stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.enhanced-stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.achievement-banner {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-5px);
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

/* Enhanced Services Page Styles */
.service-highlights {
    margin-top: 2rem;
}

.highlight {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.highlight i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.plans-showcase {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
}

.plan-header {
    text-align: center;
    margin-bottom: 1rem;
}

.plan-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 1rem;
    vertical-align: top;
}

.amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-blue);
}

.period {
    font-size: 1rem;
    color: var(--gray);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

.plan-features i {
    color: var(--primary-blue);
    margin-right: 0.75rem;
}

.features-section {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.comparison-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tech-specs {
    margin-top: 2rem;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.spec-item i {
    font-size: 2rem;
    margin-right: 1.5rem;
    margin-top: 0.25rem;
}

.satellite-network {
    position: relative;
    height: 300px;
    background: var(--light-gray);
    border-radius: 15px;
    padding: 2rem;
}

.satellite-node, .ground-station, .user-terminal {
    position: absolute;
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.satellite-node.main {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.satellite-node.backup {
    top: 20px;
    right: 20px;
}

.ground-station {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.user-terminal {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}





.story-text {
  max-width: 700px;         /* largura máxima do texto para boa leitura */
  margin: 0 auto;            /* centraliza o texto dentro da coluna */
  text-align: justify;       /* alinha o texto dos dois lados */
  line-height: 1.8;          /* aumenta o espaçamento entre linhas */
  font-size: 1.05rem;        /* deixa o texto mais leve e moderno */
  color: #333;
}

.story-text p {
  margin-bottom: 1.2rem;     /* espaçamento consistente entre parágrafos */
}

.story-text strong {
  color: #0d6efd;            /* azul padrão bootstrap */
  font-weight: 600;
}

.section-title {
  text-align: center;        /* título centralizado */
  margin-bottom: 2rem;
  letter-spacing: 1px;
}



.contact-section {
  background: #0a0f2c; /* fundo escuro elegante */
  color: #fff;
}

.contact-info {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.contact-item {
  transition: transform 0.2s ease, background 0.2s ease;
  padding: 10px;
  border-radius: 8px;
}

.contact-item:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.1);
}

.contact-icon i {
  width: 40px;
  text-align: center;
}

.contact-details h5 {
  font-size: 1.1rem;
}

.contact-details p,
.contact-details a {
  font-size: 0.95rem;
}


.contact-form-section {
  background-color: #f8f9fa;
}

.contact-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr; /* duas colunas no desktop */
  gap: 30px;
}

.benefit-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.benefit-item i {
  min-width: 40px;
}

@media (max-width: 768px) {
  .contact-benefits {
    grid-template-columns: 1fr; /* uma coluna no mobile */
  }
}
