/* ===== 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;
}

.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;
}

.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;
} 