/* ===== GRUPPOSAT CSS VARIABLES ===== */
:root {
    /* Font families */
    --gs-ff-primary: 'Poppins', sans-serif;
    
    /* Colors baseadas no site oficial grupposat.com.br */
    --gs-primary: #2B4C8C;      /* Azul principal do site oficial */
    --gs-secondary: #1E3A66;    /* Azul escuro secundário */
    --gs-accent: #4A90E2;       /* Azul claro accent */
    --gs-success: #28A745;      /* Verde */
    --gs-warning: #FFC107;      /* Amarelo */
    --gs-danger: #DC3545;       /* Vermelho padrão */
    --gs-coral: #FF6B6B;        /* Cor coral mais suave */
    --gs-white: #ffffff;
    --gs-black: #212529;
    --gs-gray-light: #F8F9FA;
    --gs-gray-medium: #6C757D;
    --gs-gray-dark: #495057;
    --gs-text-primary: #212529;
    --gs-text-secondary: #6C757D;
    
    /* Shadows */
    --gs-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --gs-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --gs-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --gs-shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    
    /* Border radius */
    --gs-radius-sm: 4px;
    --gs-radius-md: 8px;
    --gs-radius-lg: 12px;
    --gs-radius-xl: 16px;
    
    /* Spacing */
    --gs-spacing-xs: 0.5rem;
    --gs-spacing-sm: 1rem;
    --gs-spacing-md: 1.5rem;
    --gs-spacing-lg: 2rem;
    --gs-spacing-xl: 3rem;
    --gs-spacing-2xl: 4rem;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--gs-ff-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gs-text-primary);
    background-color: var(--gs-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--gs-ff-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--gs-text-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--gs-text-secondary);
}

a {
    text-decoration: none;
    color: var(--gs-primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gs-secondary);
}

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

/* ===== BUTTONS ===== */
.gs-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--gs-radius-md);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.gs-btn-primary {
    background-color: var(--gs-primary);
    color: var(--gs-white);
    border-color: var(--gs-primary);
}

.gs-btn-primary:hover {
    background-color: var(--gs-secondary);
    border-color: var(--gs-secondary);
    color: var(--gs-white);
    transform: translateY(-2px);
    box-shadow: var(--gs-shadow-md);
}

.gs-btn-outline {
    background-color: transparent;
    color: var(--gs-primary);
    border-color: var(--gs-primary);
}

.gs-btn-outline:hover {
    background-color: var(--gs-primary);
    color: var(--gs-white);
    transform: translateY(-2px);
    box-shadow: var(--gs-shadow-md);
}

.gs-btn-white {
    background-color: var(--gs-white);
    color: var(--gs-primary);
    border-color: var(--gs-white);
}

.gs-btn-white:hover {
    background-color: var(--gs-gray-light);
    color: var(--gs-secondary);
    transform: translateY(-2px);
    box-shadow: var(--gs-shadow-md);
}

.gs-btn-rastreamento {
    background-color: var(--gs-accent);
    color: var(--gs-white);
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--gs-radius-sm);
    transition: all 0.3s ease;
}

.gs-btn-rastreamento:hover {
    background-color: var(--gs-secondary);
    color: var(--gs-white);
    transform: translateY(-1px);
}

/* ===== HEADER ===== */
.gs-header {
    position: relative;
    z-index: 1000;
}

.gs-header .navbar {
    top: 42px;
}

.navbar {
    background-color: rgb(24 70 156) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(43, 76, 140, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--gs-shadow-md);
    background-color: rgb(24 70 156) !important;
}

.gs-logo img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 600;
    margin: 0 15px;
    padding: 8px 15px !important;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #f61821;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #cddffa !important
}

/* ===== HERO SECTION ===== */
.gs-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(33, 37, 41, 0.85)), url('../img/banner.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--gs-white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.gs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    background-size: cover;
    background-position: center;
}

.gs-hero-content {
    position: relative;
    z-index: 2;
}

.gs-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.title-main {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.title-emphasis {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gs-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.gs-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.gs-hero-image {
    text-align: center;
    position: relative;
    z-index: 2;
}

.gs-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--gs-radius-lg);
    box-shadow: var(--gs-shadow-xl);
}

/* ===== SERVICES SECTION ===== */
.gs-services {
    padding: 80px 0;
    background-color: var(--gs-gray-light);
}

.gs-section-title {
    margin-bottom: 3rem;
}

.gs-section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gs-text-primary);
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.gs-section-title .lead {
    font-size: 1.2rem;
    color: var(--gs-text-secondary);
    font-weight: 400;
}

.gs-service-card {
    background-color: var(--gs-white);
    padding: 2.5rem 2rem;
    border-radius: var(--gs-radius-lg);
    box-shadow: var(--gs-shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gs-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gs-primary), var(--gs-accent));
}

.gs-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--gs-shadow-xl);
}

.gs-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gs-primary), var(--gs-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gs-white);
    transition: all 0.3s ease;
}

.gs-service-card:hover .gs-service-icon {
    transform: scale(1.1);
}

.gs-service-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gs-text-primary);
}

.gs-service-card p {
    color: var(--gs-text-secondary);
    line-height: 1.6;
}

/* ===== COMPANIES SECTION ===== */
.gs-companies {
    padding: 60px 0;
    background-color: var(--gs-gray-light);
}

.gs-companies h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gs-text-primary);
    letter-spacing: 2px;
}

/* ===== ABOUT SECTION ===== */
.gs-about {
    padding: 80px 0;
    background-color: var(--gs-white);
}

.gs-about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gs-text-primary);
    margin-bottom: 1.5rem;
}

.gs-about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gs-text-secondary);
    margin-bottom: 0;
}

.gs-stats {
    background-color: var(--gs-gray-light);
    padding: 2rem;
    border-radius: var(--gs-radius-lg);
    box-shadow: var(--gs-shadow-md);
}

.gs-stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background-color: var(--gs-white);
    border-radius: var(--gs-radius-md);
    box-shadow: var(--gs-shadow-sm);
    transition: all 0.3s ease;
}

.gs-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--gs-shadow-md);
}

.gs-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gs-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.gs-stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gs-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

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

.gs-cta h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.gs-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* ===== CONTACT SECTION ===== */
.gs-contact {
    padding: 80px 0;
    background-color: var(--gs-gray-light);
}

.gs-contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gs-text-primary);
    margin-bottom: 2rem;
}

.gs-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--gs-white);
    border-radius: var(--gs-radius-md);
    box-shadow: var(--gs-shadow-sm);
    transition: all 0.3s ease;
}

.gs-contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--gs-shadow-md);
}

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

.gs-contact-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gs-text-primary);
    margin-bottom: 0.5rem;
}

.gs-contact-content p {
    color: var(--gs-text-secondary);
    margin-bottom: 0;
}

.gs-contact-content a {
    color: var(--gs-primary);
    font-weight: 500;
}

.gs-contact-content a:hover {
    color: var(--gs-secondary);
    text-decoration: underline;
}

.gs-contact-form {
    background-color: var(--gs-white);
    padding: 2.5rem;
    border-radius: var(--gs-radius-lg);
    box-shadow: var(--gs-shadow-md);
}

.gs-contact-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gs-text-primary);
    margin-bottom: 1.5rem;
}

.form-control,
.form-select {
    border: 2px solid #e2e8f0;
    border-radius: var(--gs-radius-md);
    padding: 12px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: var(--gs-white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gs-primary);
    box-shadow: 0 0 0 0.2rem rgba(44, 82, 130, 0.25);
    outline: none;
}

/* ===== EMERGENCY SECTION ===== */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.gs-emergency-title {
    color: var(--gs-white) !important;
    font-weight: 800;
    letter-spacing: 1px;
    animation: bounce 2s infinite;
    display: inline-block;
}

.gs-emergency-text {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.25rem;
    font-weight: 500;
}

/* ===== TRACKING SECTION ===== */
.gs-tracking {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gs-primary) 0%, var(--gs-secondary) 100%);
    color: var(--gs-white);
}

.gs-tracking h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--gs-white);
}

.gs-tracking .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.gs-tracking-form .form-control {
    background-color: var(--gs-white);
    border: none;
    color: var(--gs-text-primary);
}

.gs-tracking-form .form-control::placeholder {
    color: var(--gs-text-secondary);
}

.gs-tracking a {
    color: var(--gs-accent);
    text-decoration: underline;
}

.gs-tracking a:hover {
    color: var(--gs-white);
}

/* ===== FOOTER ===== */
.gs-footer {
    background-color: #1a1a1a;
    color: var(--gs-white);
    padding: 3rem 0 1rem;
}

.gs-footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.gs-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.gs-social-links a:hover {
    background-color: var(--gs-coral);
    transform: translateY(-2px);
    color: var(--gs-white);
}

.gs-footer-services h5,
.gs-footer-contact h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gs-coral);
    border-bottom: 2px solid var(--gs-coral);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.gs-footer-services ul li a {
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding-left: 0;
    position: relative;
}

.gs-footer-services ul li a:hover {
    color: var(--gs-coral) !important;
    padding-left: 10px;
}

.gs-footer-services ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: var(--gs-coral);
    transition: width 0.3s ease;
}

.gs-footer-services ul li a:hover::before {
    width: 6px;
}

.gs-footer-contact .fas {
    width: 16px;
    text-align: center;
}

.gs-footer-contact span,
.gs-footer-contact a {
    font-size: 0.9rem;
    line-height: 1.4;
}

.gs-footer-contact a:hover {
    color: var(--gs-coral) !important;
}

.gs-footer hr {
    border-color: #333;
    opacity: 1;
}

.gs-footer .text-light {
    opacity: 0.9;
}

.gs-footer .col-md-6:last-child a:hover {
    color: var(--gs-coral) !important;
}

/* ===== FLOATING ELEMENTS ===== */
.gs-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gs-primary), var(--gs-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gs-white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--gs-shadow-lg);
}

.gs-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.gs-back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--gs-shadow-xl);
}

.gs-whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.gs-whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--gs-white);
    border-radius: 50%;
    font-size: 1.8rem;
    box-shadow: var(--gs-shadow-lg);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.gs-whatsapp-float a:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: var(--gs-white);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== PLACEHOLDER IMAGES ===== */
.gs-logo img {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 60"><rect width="200" height="60" fill="%232c5282"/><text x="100" y="35" font-family="Arial, sans-serif" font-size="18" font-weight="bold" fill="white" text-anchor="middle">GRUPPOSAT</text></svg>');
}

/* Remove placeholder styles for footer logo to show real logo */
.gs-footer-brand img,
img[src="assets/img/logo-branca.png"] {
    background: none !important;
    content: none !important;
    max-height: 60px;
    width: auto;
}

.gs-footer-brand img::before,
.gs-footer-brand img::after,
img[src="assets/img/logo-branca.png"]::before,
img[src="assets/img/logo-branca.png"]::after {
    display: none !important;
    content: none !important;
}

.gs-hero-image img {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 400"><rect width="600" height="400" fill="%23f7fafc"/><circle cx="300" cy="200" r="80" fill="%232c5282"/><text x="300" y="210" font-family="Arial, sans-serif" font-size="16" font-weight="bold" fill="white" text-anchor="middle">SEGURANÇA</text><text x="300" y="230" font-family="Arial, sans-serif" font-size="16" font-weight="bold" fill="white" text-anchor="middle">24H</text></svg>');
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1199.98px) {
    .gs-hero-title .title-main {
        font-size: 3.5rem !important;
    }
    
    .gs-hero-title .title-emphasis {
        font-size: 3.5rem !important;
    }
}

@media (max-width: 991.98px) {
    .gs-hero {
        padding: 80px 0 60px;
    }
    
    .gs-hero-title {
        text-align: center;
    }
    
    .gs-hero-title .title-main {
        font-size: 3rem !important;
    }
    
    .gs-hero-title .title-emphasis {
        font-size: 3rem !important;
    }
    
    .gs-hero-buttons {
        justify-content: center;
    }
    
    .gs-hero-image {
        margin-top: 2rem;
    }
    
    .gs-section-title h2 {
        font-size: 2rem;
    }
    
    .gs-about-content {
        margin-top: 2rem;
    }
    
    .gs-stats {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .gs-hero-title .title-main {
        font-size: 2.5rem !important;
    }
    
    .gs-hero-title .title-emphasis {
        font-size: 2.5rem !important;
    }
    
    .gs-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .gs-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .gs-section-title h2 {
        font-size: 1.8rem;
    }
    
    .gs-service-card {
        padding: 2rem 1.5rem;
    }
    
    .gs-contact-form {
        padding: 2rem 1.5rem;
    }
    
    .gs-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .gs-whatsapp-float {
        bottom: 20px;
        left: 20px;
    }
    
    .gs-whatsapp-float a {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
}

/* ===== ADDITIONAL STYLES FOR NEW PAGES ===== */

/* Service Detail Styles */
.gs-service-detail h2 {
    color: var(--gs-primary);
    font-size: 2.2rem;
    font-weight: 800;
}

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

.gs-features-list ul li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

.gs-service-image img {
    border-radius: var(--gs-radius-lg);
    box-shadow: var(--gs-shadow-lg);
}

/* Mission Vision Values Cards */
.gs-mvv-card {
    background-color: var(--gs-white);
    padding: 2.5rem 2rem;
    border-radius: var(--gs-radius-lg);
    box-shadow: var(--gs-shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--gs-primary);
}

.gs-mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gs-shadow-xl);
}

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

.gs-mvv-card h3 {
    color: var(--gs-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Timeline Styles */
.gs-timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-left: 2px solid var(--gs-primary);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    position: absolute;
    left: -2.5rem;
    top: 0;
    background-color: var(--gs-primary);
    color: var(--gs-white);
    padding: 0.5rem 1rem;
    border-radius: var(--gs-radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 4rem;
    text-align: center;
}

.timeline-content {
    padding-left: 2rem;
}

.timeline-content h5 {
    color: var(--gs-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gs-text-secondary);
    margin-bottom: 0;
}

/* Testimonials */
.gs-testimonial-card {
    background-color: var(--gs-white);
    padding: 2rem;
    border-radius: var(--gs-radius-lg);
    box-shadow: var(--gs-shadow-md);
    margin-bottom: 2rem;
    position: relative;
}

.gs-quote-icon {
    color: var(--gs-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.gs-testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gs-testimonial-author {
    border-top: 1px solid var(--gs-gray-medium);
    padding-top: 1rem;
}

.gs-author-info h5 {
    color: var(--gs-primary);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

/* Team Cards */
.gs-team-card {
    background-color: var(--gs-white);
    padding: 2rem 1.5rem;
    border-radius: var(--gs-radius-lg);
    box-shadow: var(--gs-shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

.gs-team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gs-shadow-xl);
}

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

/* Contact Page Styles */
.gs-contact-info-card {
    background-color: var(--gs-white);
    padding: 2.5rem 2rem;
    border-radius: var(--gs-radius-lg);
    box-shadow: var(--gs-shadow-md);
    transition: all 0.3s ease;
}

.gs-contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gs-shadow-xl);
}

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

.gs-contact-form-main {
    background-color: var(--gs-white);
    padding: 3rem;
    border-radius: var(--gs-radius-lg);
    box-shadow: var(--gs-shadow-lg);
}

/* Map Placeholder */
.gs-map-container {
    margin-bottom: 2rem;
}

.gs-map-placeholder {
    background-color: var(--gs-gray-light);
    border: 2px solid var(--gs-gray-medium);
    border-radius: var(--gs-radius-lg);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}

.gs-map-placeholder:hover {
    border-color: var(--gs-primary);
    background-color: rgba(44, 82, 130, 0.05);
}

.gs-map-info {
    color: var(--gs-text-primary);
}

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

.gs-map-buttons {
    margin-top: 1rem;
}

.gs-map-buttons .btn {
    margin: 0 0.25rem;
}

/* Schedule Cards */
.gs-schedule-card {
    background-color: var(--gs-white);
    padding: 2rem;
    border-radius: var(--gs-radius-lg);
    box-shadow: var(--gs-shadow-md);
    border-left: 4px solid var(--gs-primary);
    height: 100%;
}

.gs-schedule-card h4 {
    color: var(--gs-text-primary);
    margin-bottom: 1rem;
}

.gs-schedule-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gs-gray-light);
}

.gs-schedule-card ul li:last-child {
    border-bottom: none;
}

/* Stats Cards for Services Page */
.gs-stat-card {
    background-color: var(--gs-white);
    padding: 2rem 1.5rem;
    border-radius: var(--gs-radius-lg);
    box-shadow: var(--gs-shadow-md);
    transition: all 0.3s ease;
}

.gs-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gs-shadow-lg);
}

/* Breadcrumb Styles */
.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: rgba(255,255,255,0.7);
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--gs-white);
    text-decoration: underline;
}

@media (max-width: 575.98px) {
    .gs-hero {
        padding: 60px 0 40px;
    }
    
    .gs-hero-title .title-main {
        font-size: 2rem !important;
    }
    
    .gs-hero-title .title-emphasis {
        font-size: 2rem !important;
    }
    
    .gs-section-title h2 {
        font-size: 1.5rem;
    }
    
    .gs-service-card {
        padding: 1.5rem 1rem;
    }
    
    .gs-contact-form {
        padding: 1.5rem 1rem;
    }
    
    .gs-contact-form-main {
        padding: 2rem 1.5rem;
    }
    
    .gs-contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .gs-contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .gs-stat-number {
        font-size: 2rem;
    }
    
    .gs-stat-item {
        padding: 1rem;
    }
    
    .gs-mvv-card {
        padding: 2rem 1.5rem;
    }
    
    .gs-team-card {
        padding: 1.5rem 1rem;
    }
    
    .timeline-year {
        left: -3rem;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .timeline-content {
        padding-left: 1.5rem;
    }
}

/* ===== CUSTOM UTILITY CLASSES ===== */
.text-red {
    color: var(--gs-coral) !important;
    font-weight: 700;
}

.text-coral {
    color: var(--gs-coral) !important;
}

.bg-coral {
    background-color: var(--gs-coral) !important;
}

.btn-coral {
    background-color: var(--gs-coral);
    border-color: var(--gs-coral);
    color: var(--gs-white);
}

.btn-coral:hover {
    background-color: #E55555;
    border-color: #E55555;
    color: var(--gs-white);
}

/* Ajustes para logo branca no navbar transparente */
.navbar {
    transition: all 0.3s ease;
}

/* Força a exibição da logo real */
.gs-logo img,
img[src="assets/img/logo.png"] {
    background: none !important;
    content: none !important;
}

body {
    background: #f3f6fb;
    color: #10233f;
}

main {
    overflow: hidden;
}

section {
    position: relative;
}

.gs-logo img,
.gs-footer-brand img,
.gs-hero-image img {
    content: none !important;
    background: none !important;
}

.navbar {
    background: rgba(8, 23, 49, 0.9) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(5, 18, 39, 0.16);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(8, 23, 49, 0.96) !important;
    padding: 0.8rem 0;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 0.55rem 0.7rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.gs-logo img {
    height: 58px;
    border-radius: 0;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    margin: 0 0.25rem;
    padding: 0.65rem 0.9rem !important;
}

.navbar-nav .nav-link::after {
    bottom: 4px;
    left: 0.9rem;
    right: 0.9rem;
    width: auto;
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(90deg, var(--gs-coral), #ffa06f);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gs-white) !important;
}

.gs-btn {
    border-radius: 999px;
    padding: 0.95rem 1.65rem;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: none;
}

.gs-btn-primary,
.btn-coral {
    background: linear-gradient(135deg, var(--gs-coral), #ff875e);
    border: none;
    color: var(--gs-white);
    box-shadow: 0 16px 30px rgba(255, 107, 107, 0.25);
}

.gs-btn-primary:hover,
.btn-coral:hover {
    color: var(--gs-white);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(255, 107, 107, 0.32);
}

.gs-btn-secondary {
    background: linear-gradient(135deg, var(--gs-primary), #406bbd);
    border: none;
    color: var(--gs-white);
    box-shadow: 0 16px 30px rgba(43, 76, 140, 0.28);
}

.gs-btn-secondary:hover {
    color: var(--gs-white);
    transform: translateY(-2px);
}

.gs-btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
    color: var(--gs-white);
}

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

.gs-btn-nav {
    padding-inline: 1.35rem;
    margin-top: 0.35rem;
    margin-bottom: 0.35rem;
}

.gs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: var(--gs-coral);
    margin-bottom: 1rem;
}

.gs-eyebrow::before {
    content: '';
    width: 36px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gs-coral), #ffa06f);
}

.gs-section-title,
.gs-section-intro {
    margin-bottom: 3rem;
}

.gs-section-heading {
    font-size: clamp(2rem, 3vw, 3.35rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1rem;
    color: #0e2341;
}

.gs-section-description {
    font-size: 1.05rem;
    color: #5c6b84;
    max-width: 720px;
}

.gs-hero-home {
    min-height: 100vh;
    padding: 10rem 0 6rem;
    background:
        radial-gradient(circle at top right, rgba(74, 144, 226, 0.26), transparent 34%),
        linear-gradient(115deg, rgba(7, 18, 38, 0.96), rgba(13, 36, 76, 0.88)),
        url('../img/banner.avif') center/cover no-repeat;
    background-attachment: scroll;
}

.gs-hero-home::before {
    background: linear-gradient(90deg, rgba(7, 18, 38, 0.42), transparent 60%);
}

.gs-hero-copy,
.gs-hero-panel,
.gs-service-card,
.gs-audience-card,
.gs-about-panel,
.gs-difference-card,
.gs-contact-panel,
.gs-contact-form,
.gs-contact-info-card,
.gs-mvv-card,
.gs-team-card,
.gs-testimonial-card,
.gs-map-placeholder,
.gs-schedule-card,
.accordion-item,
.gs-service-detail,
.gs-about-image img,
.gs-service-image img {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

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

.gs-hero-title {
    font-size: clamp(2.6rem, 5vw, 4.9rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--gs-white);
    text-shadow: none;
    margin-bottom: 1.4rem;
    max-width: 10ch;
}

.gs-hero-description {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
    margin-bottom: 0;
}

.gs-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.gs-hero-list,
.gs-feature-list,
.gs-about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gs-hero-list {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.gs-hero-list li,
.gs-about-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.82);
}

.gs-about-list li {
    color: #4f5e79;
}

.gs-hero-list i,
.gs-about-list i {
    margin-top: 0.2rem;
    color: var(--gs-coral);
}

.gs-hero-proof .gs-proof-card {
    height: 100%;
}

.gs-proof-card {
    padding: 1.15rem 1.2rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(12px);
}

.gs-proof-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gs-white);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.gs-proof-label {
    display: block;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
}

.gs-hero-panel {
    position: relative;
    padding: 1.25rem;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 28px 60px rgba(4, 12, 28, 0.35);
}

.gs-hero-image-wrap {
    border-radius: 28px;
    overflow: hidden;
    min-height: 560px;
}

.gs-hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gs-floating-card {
    position: absolute;
    max-width: 260px;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    box-shadow: 0 20px 30px rgba(6, 17, 36, 0.24);
}

.gs-floating-card span {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    opacity: 0.7;
}

.gs-floating-card strong {
    display: block;
    font-size: 1rem;
    line-height: 1.4;
}

.gs-floating-card-primary {
    right: -1.1rem;
    top: 2.2rem;
    background: var(--gs-white);
    color: #132845;
}

.gs-floating-card-dark {
    left: -1rem;
    bottom: 2.2rem;
    background: #0c1d39;
    color: var(--gs-white);
}

.gs-trust-strip,
.gs-audiences,
.gs-differentials {
    padding: 5rem 0;
}

.gs-trust-strip {
    background: var(--gs-white);
}

.gs-logo-pills {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.gs-logo-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.35rem;
    min-height: 68px;
    border-radius: 20px;
    background: #f6f8fc;
    border: 1px solid #dbe4f2;
    color: #183561;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(24, 53, 97, 0.06);
}

.gs-services,
.gs-about,
.gs-contact {
    padding: 6rem 0;
}

.gs-services {
    background: linear-gradient(180deg, #f3f6fb 0%, #eef3fa 100%);
}

.gs-service-card {
    background: var(--gs-white);
    padding: 2.25rem;
    border-radius: 28px;
    border: 1px solid #dde6f4;
    box-shadow: 0 18px 38px rgba(16, 35, 63, 0.08);
    text-align: left;
}

.gs-service-card::before {
    display: none;
}

.gs-service-card:hover,
.gs-audience-card:hover,
.gs-difference-card:hover,
.gs-contact-form:hover,
.gs-contact-panel:hover,
.gs-contact-info-card:hover,
.gs-mvv-card:hover,
.gs-team-card:hover,
.gs-testimonial-card:hover,
.gs-service-detail:hover,
.gs-map-placeholder:hover,
.gs-schedule-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 44px rgba(16, 35, 63, 0.12);
}

.gs-service-icon,
.gs-mvv-icon,
.gs-team-icon,
.gs-service-icon-large,
.gs-contact-icon-large,
.gs-contact-icon {
    width: 72px;
    height: 72px;
    margin: 0 0 1.4rem;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--gs-primary), #4270ca);
    box-shadow: 0 16px 28px rgba(43, 76, 140, 0.2);
}

.gs-card-tag {
    display: inline-block;
    margin-bottom: 0.85rem;
    color: var(--gs-coral);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gs-service-card h3,
.gs-audience-card h3,
.gs-difference-card h3 {
    font-size: 1.3rem;
    line-height: 1.35;
    margin-bottom: 0.9rem;
}

.gs-service-card p,
.gs-audience-card p,
.gs-difference-card p,
.gs-contact-panel p,
.gs-contact-form p,
.gs-footer-brand p {
    color: #5c6b84;
    margin-bottom: 0;
}

.gs-feature-list {
    display: grid;
    gap: 0.75rem;
    margin: 1.5rem 0 1.75rem;
}

.gs-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #213b62;
    font-weight: 500;
}

.gs-feature-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--gs-coral);
    flex-shrink: 0;
}

.gs-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
    color: #183561;
}

.gs-link-arrow::after {
    content: '→';
    transition: transform 0.3s ease;
}

.gs-link-arrow:hover::after {
    transform: translateX(4px);
}

.gs-audience-card,
.gs-difference-card,
.gs-contact-info-card,
.gs-mvv-card,
.gs-team-card,
.gs-testimonial-card,
.gs-map-placeholder,
.gs-schedule-card,
.accordion-item {
    background: var(--gs-white);
    border: 1px solid #dde6f4;
    border-radius: 28px;
    box-shadow: 0 18px 38px rgba(16, 35, 63, 0.08);
}

.gs-audience-card {
    padding: 2rem;
    height: 100%;
}

.gs-audience-card i {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(43, 76, 140, 0.1);
    color: var(--gs-primary);
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.gs-about {
    background: var(--gs-white);
}

.gs-about-panel {
    padding: 2.6rem;
    background: linear-gradient(180deg, #ffffff, #f7f9fd);
    border: 1px solid #dde6f4;
    border-radius: 30px;
    box-shadow: 0 18px 38px rgba(16, 35, 63, 0.08);
}

.gs-about-list {
    display: grid;
    gap: 0.9rem;
    margin: 1.7rem 0 2rem;
}

.gs-mini-stat {
    height: 100%;
    padding: 1.55rem;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #f7f9fd);
    border: 1px solid #dde6f4;
    box-shadow: 0 16px 28px rgba(16, 35, 63, 0.08);
}

.gs-mini-stat strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #0e2341;
}

.gs-mini-stat span {
    color: #5c6b84;
    font-weight: 500;
}

.gs-about-photo {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 22px 38px rgba(16, 35, 63, 0.16);
}

.gs-about-photo img,
.gs-service-image img,
.gs-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gs-differentials {
    background: linear-gradient(180deg, #09162d 0%, #102546 100%);
}

.gs-differentials .gs-section-heading,
.gs-differentials .gs-section-description,
.gs-differentials .gs-eyebrow {
    color: var(--gs-white);
}

.gs-differentials .gs-eyebrow {
    opacity: 0.92;
}

.gs-difference-card {
    height: 100%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--gs-white);
    box-shadow: none;
}

.gs-difference-card h3,
.gs-difference-card p {
    color: var(--gs-white);
}

.gs-difference-card p {
    opacity: 0.76;
}

.gs-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, var(--gs-coral), #ff8d65);
    font-size: 1.1rem;
    font-weight: 800;
}

.gs-contact {
    background: linear-gradient(180deg, #f3f6fb 0%, #ffffff 100%);
}

.gs-contact-panel,
.gs-contact-form,
.gs-contact-form-main {
    padding: 2.4rem;
    border-radius: 30px;
    background: var(--gs-white);
    border: 1px solid #dde6f4;
    box-shadow: 0 20px 42px rgba(16, 35, 63, 0.08);
}

.gs-form-header {
    margin-bottom: 1.6rem;
}

.gs-form-header h3 {
    font-size: 1.7rem;
    margin-bottom: 0.35rem;
}

.gs-contact-stack {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.gs-contact-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: #f6f8fc;
    border: 1px solid #dde6f4;
    color: #183561;
}

.gs-contact-cta i {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(43, 76, 140, 0.08);
    color: var(--gs-primary);
    font-size: 1.15rem;
}

.gs-contact-cta span {
    display: flex;
    flex-direction: column;
}

.gs-contact-cta strong {
    font-size: 1rem;
    color: #183561;
}

.gs-contact-cta small {
    color: #65758f;
}

.form-control,
.form-select {
    min-height: 56px;
    border: 1px solid #d6dfed;
    border-radius: 18px;
    padding: 0.9rem 1rem;
    background: #f9fbff;
}

textarea.form-control {
    min-height: 140px;
}

.form-control:focus,
.form-select:focus {
    border-color: #8aa7df;
    background: var(--gs-white);
    box-shadow: 0 0 0 0.25rem rgba(43, 76, 140, 0.12);
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: var(--gs-danger);
    background: #fff8f8;
}

.form-control.is-valid,
.form-select.is-valid {
    border-color: var(--gs-success);
    background: #f7fff9;
}

.form-label {
    color: #183561;
    font-weight: 600;
}

.gs-field-feedback {
    min-height: 1.2rem;
    margin-top: 0.35rem;
    font-size: 0.82rem;
    color: #6b7890;
}

.gs-field-feedback.is-error {
    color: var(--gs-danger);
}

.gs-field-feedback.is-success {
    color: var(--gs-success);
}

.gs-form-note {
    font-size: 0.92rem;
    color: #65758f;
}

.gs-page-hero {
    padding: 12rem 0 4.5rem;
    background:
        radial-gradient(circle at top right, rgba(74, 144, 226, 0.22), transparent 32%),
        linear-gradient(120deg, rgba(7, 18, 38, 0.96), rgba(13, 36, 76, 0.9)),
        url('../img/banner.avif') center/cover no-repeat;
}

.gs-page-hero::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.gs-page-hero-content {
    max-width: 760px;
}

.gs-page-hero .gs-section-heading {
    color: var(--gs-white);
    margin-bottom: 1rem;
}

.gs-page-hero .gs-section-description {
    color: rgba(255, 255, 255, 0.74);
}

.gs-page-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.gs-inner-page {
    background: #f2f4f8;
}

.gs-page-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    max-width: 920px;
}

.gs-page-hero-metric {
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.gs-page-hero-metric strong {
    display: block;
    color: var(--gs-white);
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.gs-page-hero-metric span {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

.gs-page-story-section,
.gs-page-service-stack,
.gs-page-utility-section {
    padding: 4.8rem 0;
}

.gs-page-story-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: 2rem;
    align-items: stretch;
}

.gs-page-panel-light,
.gs-page-panel-dark {
    border-radius: 30px;
}

.gs-page-panel-light {
    padding: 2.6rem;
    background: linear-gradient(180deg, #ffffff, #f7f9fd);
    border: 1px solid #dde6f4;
    box-shadow: 0 18px 38px rgba(16, 35, 63, 0.08);
}

.gs-page-panel-dark {
    padding: 2.5rem;
    background: linear-gradient(180deg, var(--gs-primary), var(--gs-secondary));
    color: var(--gs-white);
    box-shadow: 0 22px 42px rgba(16, 35, 63, 0.14);
}

.gs-page-panel-light .gs-section-heading,
.gs-page-panel-light h2,
.gs-page-panel-light h3 {
    color: #10233f;
}

.gs-page-panel-dark .gs-section-heading,
.gs-page-panel-dark h2,
.gs-page-panel-dark h3,
.gs-page-panel-dark h4,
.gs-page-panel-dark .gs-home-title-kicker,
.gs-page-panel-dark .gs-eyebrow,
.gs-page-panel-dark p,
.gs-page-panel-dark li,
.gs-page-panel-dark span {
    color: var(--gs-white);
}

.gs-page-panel-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.gs-page-points,
.gs-page-compact-list {
    list-style: none;
    padding: 0;
    margin: 1.8rem 0 0;
    display: grid;
    gap: 0.95rem;
}

.gs-page-points li,
.gs-page-compact-list li {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.gs-page-points i {
    margin-top: 0.2rem;
    color: var(--gs-coral);
}

.gs-page-compact-list li::before {
    content: '';
    width: 10px;
    height: 10px;
    margin-top: 0.45rem;
    flex: 0 0 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
}

.gs-page-kpi-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.gs-page-kpi {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.gs-page-kpi strong {
    display: block;
    color: var(--gs-white);
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.gs-page-kpi span {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

.gs-page-service-stack {
    background: #f7f9fc;
}

.gs-page-service-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
    gap: 2rem;
    align-items: center;
    margin-bottom: 2.4rem;
}

.gs-page-service-row:last-child {
    margin-bottom: 0;
}

.gs-page-service-row.is-reverse {
    grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1fr);
}

.gs-page-service-row.is-reverse .gs-service-detail {
    order: 2;
}

.gs-page-service-row.is-reverse .gs-service-image {
    order: 1;
}

.gs-page-service-row .gs-service-detail {
    height: auto;
}

.gs-page-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.gs-page-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.gs-page-stack {
    display: grid;
    gap: 1.2rem;
}

.gs-page-highlight-card {
    padding: 1.6rem;
    border-radius: 24px;
    background: var(--gs-white);
    border: 1px solid #dde6f4;
    box-shadow: 0 16px 32px rgba(16, 35, 63, 0.06);
}

.gs-page-highlight-card h3,
.gs-page-highlight-card h4 {
    color: #10233f;
}

.gs-page-utility-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.gs-page-section-dark {
    background: linear-gradient(180deg, #09162d 0%, #102546 100%);
}

.gs-page-section-dark .gs-section-heading,
.gs-page-section-dark .gs-section-description,
.gs-page-section-dark .gs-home-title-kicker,
.gs-page-section-dark .gs-eyebrow {
    color: var(--gs-white);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item a,
.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.82);
}

.gs-service-detail,
.gs-mvv-card,
.gs-team-card,
.gs-testimonial-card,
.gs-contact-info-card,
.gs-schedule-card {
    padding: 2.2rem;
}

.gs-service-detail,
.gs-contact-info-card {
    height: 100%;
}

.gs-service-detail h2,
.gs-contact-info-card h4,
.gs-mvv-card h3,
.gs-team-card h4,
.gs-schedule-card h4 {
    color: #0f2340;
}

.gs-service-image,
.gs-about-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 24px 40px rgba(16, 35, 63, 0.14);
}

.gs-service-image img,
.gs-about-image img {
    min-height: 420px;
}

.gs-testimonial-author {
    border-top: 1px solid #dde6f4;
}

.gs-quote-icon {
    color: var(--gs-coral);
}

.gs-map-placeholder {
    padding: 2rem;
    min-height: 320px;
    border-style: solid;
}

.gs-map-info p {
    color: #4f5e79;
}

.gs-map-buttons .btn {
    border-radius: 999px;
    padding-inline: 1rem;
}

.accordion-item {
    overflow: hidden;
    margin-bottom: 1rem;
}

.accordion-button {
    font-weight: 700;
    color: #10233f;
    background: transparent;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: #10233f;
    background: #f8fbff;
}

.accordion-body {
    color: #5c6b84;
}

.gs-footer {
    background: #081120;
    color: rgba(255, 255, 255, 0.72);
    padding: 4.5rem 0 1.5rem;
}

.gs-footer-brand img {
    max-height: 64px;
}

.gs-footer-links h5 {
    color: var(--gs-white);
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.gs-footer-links ul {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
}

.gs-footer-links li,
.gs-footer-links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

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

.gs-social-links {
    display: flex;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.gs-social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--gs-white);
}

.gs-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gs-footer-bottom p,
.gs-footer-bottom a {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.gs-back-to-top {
    background: linear-gradient(135deg, var(--gs-primary), #4270ca);
    box-shadow: 0 14px 30px rgba(43, 76, 140, 0.25);
}

.gs-whatsapp-float a {
    box-shadow: 0 18px 30px rgba(37, 211, 102, 0.28);
}

.gs-notification {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    max-width: 360px;
    padding: 1rem 1.2rem;
    border-radius: 18px;
    color: var(--gs-white);
    font-weight: 600;
    z-index: 9999;
    box-shadow: 0 20px 36px rgba(16, 35, 63, 0.24);
}

.gs-notification-success {
    background: #198754;
}

.gs-notification-error {
    background: #dc3545;
}

.gs-notification-info {
    background: var(--gs-primary);
}

@media (max-width: 991.98px) {
    .gs-header .navbar {
        top: 66px;
    }

    .navbar-nav {
        padding-top: 1rem;
        gap: 0.45rem;
    }

    .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 22px;
        background: rgba(9, 21, 43, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .gs-hero-home,
    .gs-page-hero {
        padding-top: 10.5rem;
    }

    .gs-page-hero-metrics,
    .gs-page-story-shell,
    .gs-page-service-row,
    .gs-page-service-row.is-reverse,
    .gs-page-grid-3,
    .gs-page-utility-grid {
        grid-template-columns: 1fr;
    }

    .gs-page-grid-2,
    .gs-page-kpi-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gs-page-service-row.is-reverse .gs-service-detail,
    .gs-page-service-row.is-reverse .gs-service-image {
        order: initial;
    }

    .gs-logo-pills {
        justify-content: flex-start;
    }

    .gs-hero-panel {
        max-width: 640px;
        margin-inline: auto;
    }
}

@media (max-width: 767.98px) {
    .gs-header .navbar {
        top: 82px;
    }

    .gs-btn {
        width: 100%;
        max-width: none;
    }

    .gs-page-hero {
        padding-top: 11.5rem;
    }

    .gs-page-hero-metrics,
    .gs-page-grid-2,
    .gs-page-kpi-strip {
        grid-template-columns: 1fr;
    }

    .gs-hero-buttons,
    .gs-page-actions,
    .gs-footer-bottom {
        flex-direction: column;
    }

    .gs-hero-title,
    .gs-section-heading {
        max-width: none;
    }

    .gs-hero-image-wrap {
        min-height: 380px;
    }

    .gs-floating-card {
        position: static;
        max-width: none;
        margin-top: 1rem;
    }

    .gs-contact-panel,
    .gs-contact-form,
    .gs-contact-form-main,
    .gs-page-panel-light,
    .gs-page-panel-dark,
    .gs-about-panel,
    .gs-service-card,
    .gs-audience-card,
    .gs-difference-card,
    .gs-service-detail,
    .gs-contact-info-card,
    .gs-mvv-card,
    .gs-team-card,
    .gs-testimonial-card,
    .gs-schedule-card {
        padding: 1.6rem;
    }

    .gs-notification {
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
}

.gs-logo img::before,
.gs-logo img::after,
img[src="assets/img/logo.png"]::before,
img[src="assets/img/logo.png"]::after {
    display: none !important;
    content: none !important;
}

.gs-home-stv {
    background: #f1f1f1;
}

.gs-home-header {
    position: relative;
}

.gs-topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1041;
    background: var(--gs-secondary);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.gs-topbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.gs-topbar-social {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.gs-topbar-social a,
.gs-topbar-text span {
    color: rgba(255, 255, 255, 0.92);
}

.gs-home-stv .navbar {
    top: 42px;
    background: rgba(43, 76, 140, 0.95) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 34px rgba(16, 35, 63, 0.16);
}

.gs-home-stv .navbar.scrolled {
    background: rgba(30, 58, 102, 0.98) !important;
}

.gs-home-stv .gs-logo img {
    height: 60px;
}

.gs-home-stv .navbar-nav .nav-link {
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.gs-home-stv .navbar-nav .nav-link::after {
    background: linear-gradient(90deg, #ff6b6b, #f43f5e);
}

.gs-home-stv .gs-btn-primary,
.gs-home-stv .btn-coral {
    background: linear-gradient(135deg, #ff6b6b, #e84155);
    box-shadow: 0 16px 28px rgba(232, 65, 85, 0.28);
}

.gs-home-hero-stv {
    position: relative;
    padding: 12rem 0 4rem;
    background:
        linear-gradient(90deg, rgba(18, 40, 78, 0.95), rgba(43, 76, 140, 0.9)),
        url('../img/monitores-com-video-de-cctv-em-ecras.jpg') center/cover no-repeat;
    overflow: hidden;
}

.gs-home-hero-stv::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.09), transparent 24%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.1));
}

.gs-home-hero-stv .container {
    position: relative;
    z-index: 1;
}

.gs-home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 320px) minmax(0, 0.9fr);
    gap: 2rem;
    align-items: center;
    min-height: 470px;
}

.gs-home-hero-copy,
.gs-home-hero-center,
.gs-home-hero-side,
.gs-home-authority-main,
.gs-home-authority-side,
.gs-home-intro-box,
.gs-home-service-tile,
.gs-home-news-card,
.gs-home-form-wrap,
.gs-home-brand-grid,
.gs-home-contact-head {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gs-home-hero-copy.animate,
.gs-home-hero-center.animate,
.gs-home-hero-side.animate,
.gs-home-authority-main.animate,
.gs-home-authority-side.animate,
.gs-home-intro-box.animate,
.gs-home-service-tile.animate,
.gs-home-news-card.animate,
.gs-home-form-wrap.animate,
.gs-home-brand-grid.animate,
.gs-home-contact-head.animate {
    opacity: 1;
    transform: translateY(0);
}

.gs-home-hero-kicker,
.gs-home-title-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.gs-home-title-kicker {
    color: var(--gs-coral);
}

.gs-home-hero-copy h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.05;
    color: var(--gs-white);
    text-transform: uppercase;
    max-width: 11ch;
    margin-bottom: 1rem;
}

.gs-home-hero-copy p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.02rem;
}

.gs-home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.gs-home-hero-center {
    display: flex;
    justify-content: center;
}

.gs-home-hero-seal {
    width: 100%;
    max-width: 290px;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    border-radius: 50%;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06));
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 24px 50px rgba(16, 35, 63, 0.28);
}

.gs-home-hero-seal img {
    width: 170px;
    margin-bottom: 1rem;
}

.gs-home-hero-seal span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    line-height: 1.6;
}

.gs-home-hero-side {
    display: grid;
    gap: 1rem;
}

.gs-home-badge-card {
    padding: 1.2rem 1.3rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 32px rgba(16, 35, 63, 0.18);
}

.gs-home-badge-card strong {
    display: block;
    font-size: 1.85rem;
    line-height: 1;
    color: var(--gs-white);
    margin-bottom: 0.45rem;
}

.gs-home-badge-card span {
    display: block;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.92rem;
}

.gs-home-intro,
.gs-home-services-showcase,
.gs-home-news,
.gs-home-contact-cta,
.gs-home-brand-strip,
.gs-home-authority {
    padding: 4.8rem 0;
}

.gs-home-authority {
    background: linear-gradient(180deg, #f3f6fb 0%, #ffffff 100%);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.gs-home-authority-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 1.6rem;
    align-items: stretch;
}

.gs-home-authority-main,
.gs-home-authority-side {
    border-radius: 30px;
}

.gs-home-authority-main {
    padding: 2.5rem;
    background: linear-gradient(180deg, #ffffff, #f6f9ff);
    border: 1px solid #dbe5f5;
    box-shadow: 0 20px 40px rgba(16, 35, 63, 0.08);
}

.gs-home-authority-main h2 {
    color: #10233f;
    margin-bottom: 1rem;
}

.gs-home-authority-main p {
    color: #5d6c86;
}

.gs-home-authority-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.gs-home-authority-stat {
    padding: 1.15rem 1rem;
    border-radius: 22px;
    background: #f7faff;
    border: 1px solid #dbe5f5;
}

.gs-home-authority-stat strong {
    display: block;
    color: var(--gs-primary);
    font-size: 1.75rem;
    line-height: 1;
    margin-bottom: 0.45rem;
}

.gs-home-authority-stat span {
    display: block;
    color: #5d6c86;
    font-size: 0.92rem;
}

.gs-home-authority-side {
    padding: 2rem;
    background: linear-gradient(180deg, var(--gs-primary), var(--gs-secondary));
    box-shadow: 0 24px 44px rgba(16, 35, 63, 0.16);
}

.gs-home-authority-timeline {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 1.6rem;
}

.gs-home-authority-timeline::before {
    content: '';
    position: absolute;
    top: 0.35rem;
    bottom: 0.35rem;
    left: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.gs-home-authority-step {
    position: relative;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.gs-home-authority-step:last-child {
    margin-bottom: 0;
}

.gs-home-authority-step::before {
    content: '';
    position: absolute;
    left: -1.78rem;
    top: 0.32rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gs-coral);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.08);
}

.gs-home-authority-step span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding-top: 0.2rem;
}

.gs-home-authority-step h3,
.gs-home-authority-panel h3 {
    color: var(--gs-white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.gs-home-authority-step p,
.gs-home-authority-panel p,
.gs-home-authority-list li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    margin-bottom: 0;
}

.gs-home-authority-panels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.gs-home-authority-panel {
    padding: 1.1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gs-home-authority-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.4rem;
}

.gs-home-intro {
    background: #f4f4f4;
}

.gs-home-intro-box {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.gs-home-intro-box p {
    margin-bottom: 1.5rem;
    color: #5c646c;
    font-size: 1rem;
}

.gs-home-title-block {
    margin-bottom: 2.8rem;
}

.gs-home-title-block h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.16;
    color: var(--gs-primary);
}

.gs-home-services-showcase {
    background: #ececec;
}

.gs-home-service-tile,
.gs-home-news-card {
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: var(--gs-white);
    box-shadow: 0 18px 34px rgba(15, 30, 40, 0.08);
}

.gs-home-service-tile:hover,
.gs-home-news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 40px rgba(15, 30, 40, 0.14);
}

.gs-home-service-image {
    height: 220px;
}

.gs-home-service-image img,
.gs-home-news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gs-home-service-icon {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 58, 102, 0.96), rgba(74, 144, 226, 0.96));
    color: var(--gs-white);
    font-size: 3rem;
}

.gs-home-service-body {
    padding: 1.4rem 1.35rem 1.5rem;
    background: linear-gradient(180deg, var(--gs-primary), var(--gs-secondary));
}

.gs-home-service-tag {
    display: inline-block;
    margin-bottom: 0.7rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.gs-home-service-body h3,
.gs-home-news-body h3 {
    color: var(--gs-white);
    font-size: 1.08rem;
    line-height: 1.45;
    margin-bottom: 0.75rem;
}

.gs-home-service-body p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.93rem;
    margin-bottom: 1rem;
}

.gs-home-service-body .gs-link-arrow,
.gs-home-news-body .gs-link-arrow {
    color: var(--gs-white);
}

.gs-home-news {
    background: #f4f4f4;
}

.gs-home-news-card img {
    height: 210px;
}

.gs-home-news-body {
    padding: 1.1rem 1.2rem 1.3rem;
    background: linear-gradient(180deg, var(--gs-primary), var(--gs-secondary));
}

.gs-home-news-body span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.gs-home-contact-cta {
    background: #ededed;
}

.gs-home-contact-head {
    max-width: 680px;
    margin: 0 auto 2rem;
}

.gs-home-contact-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(43, 76, 140, 0.18);
    color: var(--gs-primary);
    font-size: 2rem;
    background: rgba(43, 76, 140, 0.06);
}

.gs-home-contact-head h2 {
    font-size: clamp(1.7rem, 2.5vw, 2.5rem);
    text-transform: uppercase;
    color: var(--gs-primary);
    margin-bottom: 0.8rem;
}

.gs-home-contact-head p {
    margin-bottom: 0;
}

.gs-home-form-wrap {
    max-width: 520px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 18px;
    background: var(--gs-white);
    box-shadow: 0 16px 32px rgba(15, 30, 40, 0.08);
}

.gs-home-form-wrap .form-label {
    margin-bottom: 0.35rem;
    font-size: 0.86rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gs-primary);
}

.gs-home-form-wrap .form-control,
.gs-home-form-wrap .form-select {
    min-height: 50px;
    border-radius: 8px;
    border-color: #c9d7ee;
    background: #fbfcff;
}

.gs-home-form-wrap textarea.form-control {
    min-height: 120px;
}

.gs-home-form-wrap .gs-btn {
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.gs-home-brand-strip {
    background: #f4f4f4;
    padding-top: 3rem;
    padding-bottom: 4.5rem;
}

.gs-home-brand-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.1fr) minmax(220px, 0.8fr) minmax(220px, 0.9fr);
    gap: 2rem;
    align-items: center;
}

.gs-home-brand-logo img {
    max-width: 300px;
}

.gs-home-brand-years {
    text-align: center;
}

.gs-home-brand-years strong {
    display: block;
    font-size: 4rem;
    color: var(--gs-coral);
    line-height: 1;
    margin-bottom: 0.65rem;
}

.gs-home-brand-years span {
    display: block;
    color: #5c646c;
    font-weight: 500;
}

.gs-home-brand-proof {
    display: grid;
    gap: 1rem;
}

.gs-home-proof-item {
    padding: 1.1rem 1.2rem;
    border-radius: 16px;
    background: var(--gs-white);
    box-shadow: 0 14px 30px rgba(15, 30, 40, 0.08);
}

.gs-home-proof-item strong {
    display: block;
    color: var(--gs-primary);
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
}

.gs-home-proof-item span {
    color: #5c646c;
    font-size: 0.94rem;
}

.gs-home-stv .gs-footer {
    background: var(--gs-secondary);
    padding-top: 3.6rem;
}

.gs-home-stv .gs-footer-links h5,
.gs-home-stv .gs-footer-brand p,
.gs-home-stv .gs-footer-links li,
.gs-home-stv .gs-footer-links a,
.gs-home-stv .gs-footer-bottom p,
.gs-home-stv .gs-footer-bottom a {
    color: rgba(255, 255, 255, 0.84);
}

.gs-home-stv .gs-footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.12);
}

.gs-home-stv .gs-social-links a {
    background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 991.98px) {
    .gs-topbar-inner {
        flex-direction: column;
        justify-content: center;
        padding: 0.5rem 0;
    }

    .gs-home-stv .navbar {
        top: 66px;
    }

    .gs-home-hero-stv {
        padding-top: 12.5rem;
    }

    .gs-home-hero-grid,
    .gs-home-brand-grid,
    .gs-home-authority-shell {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gs-home-hero-copy {
        order: 1;
    }

    .gs-home-hero-center {
        order: 2;
    }

    .gs-home-hero-side {
        order: 3;
    }

    .gs-home-hero-copy p,
    .gs-home-intro-box,
    .gs-home-contact-head {
        margin-inline: auto;
    }

    .gs-home-hero-actions {
        justify-content: center;
    }

    .gs-home-hero-copy h1 {
        max-width: none;
    }

    .gs-home-authority-stats,
    .gs-home-authority-panels {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .gs-topbar {
        font-size: 0.68rem;
    }

    .gs-home-stv .navbar {
        top: 82px;
    }

    .gs-home-hero-stv {
        padding-top: 13rem;
        padding-bottom: 3rem;
    }

    .gs-home-hero-seal {
        min-height: 240px;
        max-width: 240px;
    }

    .gs-home-hero-seal img {
        width: 140px;
    }

    .gs-home-service-image,
    .gs-home-service-icon,
    .gs-home-news-card img {
        height: 190px;
    }

    .gs-home-form-wrap {
        padding: 1.4rem;
    }

    .gs-home-authority-main,
    .gs-home-authority-side {
        padding: 1.6rem;
    }

    .gs-home-authority-step {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .gs-home-authority-step::before {
        left: -1.35rem;
    }

    .gs-home-authority-timeline {
        padding-left: 1rem;
    }
}
