/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #34B0B3;
    --primary-dark: #2A8D8F;
    --secondary-color: #F8F9FA;
    --dark-gray: #2C3E50;
    --light-gray: #6C757D;
    --white: #FFFFFF;
    --black: #000000;
    --bg-color-dark: rgb(59,79,83); /* Cor de fundo escura */
      --hex-color: #33d9d9; /* Cor base inspirada no logo */
    --bg-color: #f4f7f6;
    --size: 150px;
    
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    
    --gradient-primary: linear-gradient(135deg, #34B0B3 0%, #2A8D8F 100%);
    --gradient-dark: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.2);
    
    --border-radius: 10px;
    --transition: all 0.3s ease;

      --profile-hex-size: 120px;
            --profile-hex-border-color: blue;
            --profile-hex-zoom-duration: 0.4s;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

 /* Para navegadores baseados em Webkit (Chrome, Safari, Edge) */
        ::-webkit-scrollbar {
            width: 12px; /* Largura da barra de rolagem vertical */
            height: 12px; /* Altura da barra de rolagem horizontal */
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-color-dark); /* Cor de fundo da trilha da barra de rolagem */
        }

        ::-webkit-scrollbar-thumb {
            background-color: var(--hex-color); /* Cor do "polegar" (o arrastador) */
            border: 0px solid var(--bg-color-dark); /* Borda para dar um efeito de profundidade */
        }

        /* Opcional: Estilo ao passar o mouse sobre o polegar */
        ::-webkit-scrollbar-thumb:hover {
            background-color: #28a7a7; /* Um tom ligeiramente mais escuro ao passar o mouse */
        }


#carregando {
            position:                           fixed;
            top:                                0;
            left:                               0;
            right:                              0;
            bottom:                             0;
            background-color:                   rgb(59,79,83);
            z-index:                            9999;
            display:                            flex; /* Adicionado para usar Flexbox */
            justify-content:                    center; /* Centraliza horizontalmente */
            align-items:                        center; /* Centraliza verticalmente */
        }

        .loader-container {
            position: relative;
            width: var(--size);
            height: var(--size);
            /* display: flex; Removido daqui, pois o pai (#carregando) já está fazendo o trabalho */
            /* justify-content: center; Removido daqui */
            /* align-items: center; Removido daqui */
        }

        /* O Hexágono usando SVG para precisão no traçado */
        .hexagon-svg {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0 0 8px rgba(51, 217, 217, 0.3));
        }

        .hexagon-path {
            fill: none;
            stroke: var(--hex-color);
            stroke-width: 6;
            stroke-linecap: round;
            /* O cálculo do dasharray é baseado no perímetro do hexágono */
            stroke-dasharray: 450; 
            stroke-dashoffset: 450;
            animation: draw-hexagon 3s ease-in-out infinite;
            transform-origin: center;
        }

        /* Efeito de preenchimento suave */
        .hexagon-fill {
            fill: var(--hex-color);
            opacity: 0;
            animation: pulse-fill 3s ease-in-out infinite;
        }

        /* Animação do traçado */
        @keyframes draw-hexagon {
            0% {
                stroke-dashoffset: 450;
                transform: rotate(0deg) scale(0.9);
            }
            40% {
                stroke-dashoffset: 0;
                transform: rotate(0deg) scale(1);
            }
            60% {
                stroke-dashoffset: 0;
                transform: rotate(360deg) scale(1);
            }
            100% {
                stroke-dashoffset: -450;
                transform: rotate(360deg) scale(0.9);
            }
        }

        /* Animação de pulsação do fundo */
        @keyframes pulse-fill {
            0%, 40%, 100% {
                opacity: 0;
            }
            50% {
                opacity: 0.15;
            }
        }

        /* Partículas decorativas opcionais para dar mais "vida" */
        .loader-container::after {
            content: 
            position: absolute;
            width: 10px;
            height: 10px;
            background: var(--hex-color);
            border-radius: 50%;
            filter: blur(2px);
            animation: orbit 3s linear infinite;
        }

        @keyframes orbit {
            0% { transform: rotate(0deg) translateY(calc(var(--size) / -2)) rotate(0deg); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: rotate(360deg) translateY(calc(var(--size) / -2)) rotate(-360deg); opacity: 0; }
        }

/* Container principal com nome único */
        .profile-hex-wrapper {
            position: relative;
            width: var(--profile-hex-size);
            height: var(--profile-hex-size);
            cursor: pointer;
        }

        .profile-hex-base {
            width: 100%;
            height: 100%;
            overflow: visible;
        }

        /* Classe da imagem com prefixo */
        .profile-hex-img-content {
            transition: transform var(--profile-hex-zoom-duration) ease-in-out;
            transform-origin: center;
        }

        /* Efeito de zoom */
        .profile-hex-wrapper:hover .profile-hex-img-content {
            transform: scale(1.15);
        }

        /* Classe da borda com prefixo */
        .profile-hex-border-stroke {
            fill: none;
            stroke: var(--profile-hex-border-color);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            pointer-events: none; /* Garante que o hover funcione na imagem abaixo */
        }

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

/* COOKIES */
.cookie-consent {
	display: none;
  	position: fixed;
	width: 100%;
	min-height: 20px;
	box-sizing: border-box;
  	bottom: 0;
	background-color:                   rgb(59,79,83);
	padding: 5px;
  	z-index: 9999;
	font-size: 12px;
	text-align: center;
	margin: 0 auto;
	color: #FFF;
}

.cookie-consent h1 {
	color: #FFF !important;
	padding: 5px;
	font-size: 18px;
	font-weight: 600;
	line-height: 20px;
	display: block;
	text-align: center;
 }

.cookieConsent {
	z-index: 9;
	width: 100%;
	min-height: 20px;
	box-sizing: border-box;
	padding: 10px;
	background: #1b2a63;
	color: #FFF;
	font-size: 12px;
	text-align: center;
	margin: 0 auto;
}

/* Estilos para o Modal de WhatsApp - Versão Clean */
#whatsappModal .modal-content {
    border-radius: 15px;
}

.whatsapp-option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    text-decoration: none !important;
    transition: var(--transition);
    background: #fff;
    height: 100%;
}

.whatsapp-option-card:hover {
    border-color: #25D366; /* Cor oficial do WhatsApp */
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.whatsapp-option-card .option-icon {
    width: 55px;
    height: 55px;
    background: #e8f9ee;
    color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 12px;
    transition: var(--transition);
}

.whatsapp-option-card:hover .option-icon {
    background: #25D366;
    color: #fff;
}

.whatsapp-option-card .phone-number {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    display: block;
}

/* Ajuste para mobile */
@media (max-width: 400px) {
    .whatsapp-option-card .phone-number {
        font-size: 0.75rem;
    }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.btn-small-text {
    /* Reduz o tamanho da fonte. Ajuste o valor conforme necessário. */
    font-size: 0.8rem; 
    
    /* Remove a transformação para caixa alta */
    text-transform: none;
    
    /* Opcional: Ajustar o espaçamento entre letras, já que não é mais caixa alta */
    letter-spacing: normal;
}

 .service-card {
        display: flex;
        flex-direction: column;
        height: 100%;
        padding: 2rem;
        background-color: var(--white);
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .service-card:hover {
        box-shadow: 0 4px 16px rgba(52, 176, 179, 0.15);
        transform: translateY(-4px);
    }

    .service-card-footer {
        margin-top: auto;
        padding-top: 1.5rem;
        border-top: 1px solid var(--secondary-color);
        display: flex;
        justify-content: center;
    }

.hex-wrapper {
    width: 170px;
    height: 171px; /* 200 x 1.15 */

    background: #57ced3;
    clip-path: polygon(
        50% 0%,
        93% 25%,
        93% 75%,
        50% 100%,
        7% 75%,
        7% 25%
    );

    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform 0.35s ease, background 0.35s ease;
}

.hex-img {
    width: 153px;
    height: 153px; /* mantém proporção interna */
    overflow: hidden;
    clip-path: inherit;
}

.hex-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

/* Hover */
.hex-wrapper:hover {
    background: #42444a;
    transform: scale(1);
}

.hex-wrapper:hover img {
    transform: scale(1.02);
}

    /* Estilo Outline (Vazado) */
.btn-ver-detalhes {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background-color: var(--white); /* Fundo branco */
    color: var(--primary-color) !important; /* Texto na cor primária */
    border: 3px solid var(--primary-color); /* Borda na cor primária */
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    outline: none;
}

/* Inversão de cores no Hover */
.btn-ver-detalhes:hover,
.btn-ver-detalhes:focus,
.btn-ver-detalhes:active {
    background-color: var(--primary-color); /* Fundo preenche com a cor */
    color: var(--white) !important; /* Texto fica branco */
    border-color: var(--primary-color);
    text-decoration: none !important;
    transform: translateY(-2px); /* Leve subida em vez de lateral */
    box-shadow: 0 4px 12px rgba(52, 176, 179, 0.2);
}

.btn-ver-detalhes i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.section-subtitle {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

#page-container p {
        font-size: 1rem;
}

.accordion-container {
            width: 100%;
            max-width: 1280px;
            height: 400px;
            display: flex;
            gap: 8px;
            perspective: 1000px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .accordion-item {
            flex: 1;
            height: 100%;
            position: relative;
            cursor: pointer;
            overflow: hidden;
            border-radius: 15px;
            transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transform-origin: center;
        }

        .accordion-item:first-child {
            flex: 2;
        }

        .accordion-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Overlay Layer */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 20px;
            z-index: 10;
        }

        .accordion-item:nth-child(1) .overlay {
            background: linear-gradient(135deg, rgba(52, 176, 179, 0.7) 0%, rgba(52, 176, 179, 0.5) 100%);
            opacity: 1;
        }

        .accordion-item:nth-child(2) .overlay {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
            opacity: 0;
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .accordion-item:nth-child(3) .overlay {
            background: linear-gradient(135deg, rgba(52, 176, 179, 0.7) 0%, rgba(52, 176, 179, 0.5) 100%);
            opacity: 0;
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .accordion-item:nth-child(4) .overlay {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
            opacity: 0;
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .accordion-item:nth-child(5) .overlay {
            background: linear-gradient(135deg, rgba(52, 176, 179, 0.7) 0%, rgba(52, 176, 179, 0.5) 100%);
            opacity: 0;
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .accordion-item:nth-child(6) .overlay {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
            opacity: 0;
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .accordion-item:nth-child(7) .overlay {
            background: linear-gradient(135deg, rgba(52, 176, 179, 0.7) 0%, rgba(52, 176, 179, 0.5) 100%);
            opacity: 0;
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .overlay-content {
            text-align: center;
            color: white;
            animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .overlay-title {
       
            font-size: 25px;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .overlay-description {
            font-size: 13px;
            font-weight: 300;
            opacity: 0.95;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
            line-height: 1.4;
        }

        /* Botão */
        .btn-conheca {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border: 2px solid white;
            background-color: transparent;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-conheca:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
            text-decoration: none;
            color: white;
        }

        .btn-conheca i {
            font-size: 14px;
        }

        /* Hover State */
        .accordion-item:hover {
            flex: 3;
            z-index: 20;
        }

        .accordion-item:not(:first-child):hover .overlay {
            opacity: 1;
        }

        .accordion-item:hover ~ .accordion-item {
            flex: 0.8;
        }

        /* Animation */
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .accordion-container {
                height: 300px;
                gap: 4px;
                padding: 15px;
            }

            .overlay-title {
                font-size: 18px;
            }

            .overlay-description {
                font-size: 11px;
            }

            .btn-conheca {
                padding: 8px 16px;
                font-size: 11px;
            }
        }

        @media (max-width: 480px) {
            .accordion-container {
                height: 250px;
                gap: 2px;
                padding: 10px;
            }

            .overlay-title {
                font-size: 14px;
                margin-bottom: 4px;
            }

            .overlay-description {
                font-size: 10px;
            }

            .btn-conheca {
                padding: 6px 12px;
                font-size: 9px;
            }
        }

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-medium);
}

.navbar-brand .logo-img {
    height: 100px;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 40px;
}

.contact-header {
    align-items: center;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--primary-color);
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background: #128C7E;
    color: white !important;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Modern Hamburger Menu */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    width: 50px;
    height: 50px;
    position: relative;
    background: transparent;
    border-radius: 8px;
    transition: var(--transition);
}

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

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    margin: 5px auto;
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.navbar-nav .nav-link {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--dark-gray) !important;
    margin: 0 1rem;
    padding: 0.5rem 0 !important;
    position: relative;
    transition: var(--transition);
    font-size: 1rem;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Mobile WhatsApp Button */
.mobile-whatsapp {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(52, 176, 179, 0.2);
}

.whatsapp-mobile {
    background: #25D366 !important;
    color: white !important;
    border-radius: 25px !important;
    padding: 0.75rem 1.5rem !important;
    margin: 0 !important;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
}

.whatsapp-mobile:hover {
    background: #128C7E !important;
    color: white !important;
    transform: translateY(-2px);
}

.whatsapp-mobile::after {
    display: none;
}

/* Mobile menu improvements */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        border-radius: 15px;
        margin-top: 1rem;
        padding: 1.5rem;
        box-shadow: var(--shadow-medium);
        border: 1px solid rgba(52, 176, 179, 0.1);
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
        padding: 0.75rem 1rem !important;
        border-radius: 10px;
        transition: var(--transition);
        text-align: center;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(52, 176, 179, 0.1);
        color: var(--primary-color) !important;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .navbar-brand .logo-img {
        height: 40px;
    }
    
    .contact-header {
        display: none !important;
    }
    
    .container {
        padding: 0 10px;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .container {
        padding: 0 8px;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand .logo-img {
        height: 35px;
    }
    
    .navbar-collapse {
        margin-top: 0.5rem;
        padding: 1rem;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel-inner {
    height: 100vh;
}

.carousel-item {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hexagon-shape {
    position: absolute;
    background: var(--primary-color);
    opacity: 0.1;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: float 6s ease-in-out infinite;
}

.hex-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.hex-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.hex-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 5%;
    animation-delay: 4s;
}

.hex-4 {
    width: 80px;
    height: 80px;
    top: 80%;
    right: 15%;
    animation-delay: 1s;
}

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

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    font-weight: 300;
    font-size: 0.7em;
    opacity: 0.9;
}

.title-highlight {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-hexagon {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    clip-path: polygon(15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hexagon:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: white;
    text-decoration: none;
}

.btn-hexagon-light-gray {
    /* Define o fundo como cinza claro */
    background: var(--light-gray);
    
    /* 
     * Para um fundo claro, a cor do texto precisa de bom contraste.
     * O branco pode não ser a melhor opção. Vamos usar um cinza escuro ou preto.
    */
    color: var(--dark-gray); /* Usando --dark-gray para o texto */
}

/* Efeito Hover para o botão cinza claro */
.btn-hexagon-light-gray:hover {
    /* Podemos escurecer um pouco o fundo no hover para dar feedback */
    background: #5a6268; /* Um tom de cinza um pouco mais escuro */
    color: var(--white); /* No hover, podemos mudar o texto para branco */
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}
.btn-modern {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 1rem 2rem;
    font-family: var(--font-primary);
    font-weight: 600;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.btn-modern:hover {
    background: white;
    color: var(--dark-gray) !important;
    transform: translateY(-3px);
    text-decoration: none;
}

/* Grid da Galeria */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 25px;
        }

        .gallery-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            border: 1px solid #eee;
        }

        .gallery-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-color: var(--color-primary);
        }

        .image-container {
            position: relative;
            aspect-ratio: 1 / 1;
            overflow: hidden;
        }

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

        /* Overlay no Hover (apenas ícone de zoom) */
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(42, 141, 143, 0.7); /* Cor 2A8D8F com transparência */
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-card:hover .image-container img {
            transform: scale(1.1);
        }

        .gallery-card:hover .gallery-overlay {
            opacity: 1;
        }

        .zoom-icon {
            color: white;
            font-size: 30px;
        }

        /* Rodapé da Foto com Título Fixo */
        .card-footer-custom {
            background-color: white;
            padding: 12px 15px;
            text-align: center;
            border-top: 2px solid var(--color-primary);
        }

        .photo-title {
            color: var(--color-secondary);
            font-weight: 700;
            font-size: 15px;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Modal Customizado */
        .modal-content {
            background-color: transparent;
            border: none;
        }

        .modal-body {
            padding: 0;
            position: relative;
        }

        #fullImage {
            width: 100%;
            border-radius: 8px 8px 0 0;
            border: 5px solid white;
            border-bottom: none;
        }

        .modal-caption-container {
            background-color: white;
            padding: 15px;
            border-radius: 0 0 8px 8px;
            border: 5px solid white;
            border-top: 1px solid #eee;
            text-align: center;
        }

        #modalCaption {
            color: var(--color-neutral);
            font-weight: 700;
            font-size: 18px;
            margin: 0;
        }

        .close-btn {
            position: absolute;
            top: -45px;
            right: 0;
            color: white;
            font-size: 35px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .close-btn:hover {
            color: var(--color-primary);
        }

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
    background-size: 100%;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators li {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-10px) rotate(45deg); }
    60% { transform: translateY(-5px) rotate(45deg); }
}

/* Mobile Hero Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-hexagon,
    .btn-modern {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
    
    .hexagon-shape {
       
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .carousel-indicators {
        bottom: 20px;
    }
    
    .carousel-indicators li {
        width: 12px;
        height: 12px;
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    background: var(--secondary-color);
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-heavy);
}

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

.badge-number {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
}

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

.about-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--light-gray);
}

.about-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

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

.feature-content h5 {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.feature-content p {
    color: var(--light-gray);
    margin: 0;
}

/* Mobile About Adjustments */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .experience-badge {
        position: static;
        margin: 2rem auto 0;
        width: 100px;
        height: 100px;
        padding: 1rem;
    }
    
    .badge-number {
        font-size: 1.2rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
}

/* ===== VALUES SECTION ===== */
.values-section {
    padding: 100px 0;
    background: white;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    position: relative;
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.value-number {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.value-icon {
    background: var(--primary-color);
    color: white;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    clip-path: polygon(
        50% 0%,   /* topo */
        93% 25%,  /* canto superior direito */
        93% 75%,  /* canto inferior direito */
        50% 100%, /* base */
        7% 75%,   /* canto inferior esquerdo */
        7% 25%    /* canto superior esquerdo */
    );
}

.value-card h4 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--light-gray);
    line-height: 1.6;
}

/* Mobile Values Adjustments */
@media (max-width: 768px) {
    .values-section {
        padding: 60px 0;
    }
    
    .value-card {
        margin-bottom: 2rem;
    }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 100px 0;
    background: var(--secondary-color);
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    position: relative;
    transition: var(--transition);
    height: 100%;
    overflow: hidden;
}

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

.service-icon {
    background: var(--primary-color);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: var(--transition);
}

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

.service-card h4 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--light-gray);
    line-height: 1.6;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay h5 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-overlay p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-overlay ul {
    list-style: none;
    padding: 0;
}

.service-overlay li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-overlay li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
}

/* Mobile Services Adjustments */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .service-overlay {
        position: static;
        opacity: 1;
        background: var(--primary-color);
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: var(--border-radius);
    }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background: var(--dark-gray);
    color: white;
}

.contact-info {
    padding-right: 2rem;
}

.contact-info .section-subtitle {
    color: var(--primary-color);
}

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

.contact-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-items {
    margin-bottom: 2rem;
}

.contact-item-info {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

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

.contact-details h5 {
    margin-bottom: 0.25rem;
    color: white;
}

.contact-details p {
    margin: 0;
    opacity: 0.8;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 176, 179, 0.25);
    color: white;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form select.form-control option {
    background: var(--dark-gray);
    color: white;
}

/* Mobile Contact Adjustments */

@media (max-width: 768px) {
    #page-container p {
            font-size: 0.9rem;
    }

    #page-container h3 {
            font-size: 1.4rem;
    }


    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: white;
    padding: 60px 0 20px;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 80px;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 20px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    margin: 0;
    opacity: 0.7;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary-color);
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.whatsapp-float,
.scroll-to-top {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    border: none;
    cursor: pointer;
}

.whatsapp-float {
    background: #25D366;
    color: white;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: white;
    text-decoration: none;
    transform: scale(1.1);
}

.scroll-to-top {
    background: var(--primary-color);
    color: white;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* Mobile Floating Buttons */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-float,
    .scroll-to-top {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ===== RESPONSIVE UTILITIES ===== */
@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
    }
    
    .container {
        padding: 0 8px;
    }
}

/* ===== ANIMATIONS ===== */
.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.page-header {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    color: white;
    padding: 150px 0 100px;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-dark);
    opacity: 0.8; /* ajuste aqui */
    z-index: 1;
}

/* Conteúdo acima do overlay */
.page-header > * {
    position: relative;
    z-index: 2;
}

.page-header-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-header-shapes .hexagon-shape {
    position: absolute;
    background: var(--primary-color);
    opacity: 0.1;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.page-header-shapes .hex-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 10%;
}

.page-header-shapes .hex-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 20%;
}

.page-header-shapes .hex-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 5%;
}

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

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

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

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: white;
}

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

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
}

/* ===== COMPANY OVERVIEW ===== */
.company-overview {
    padding: 100px 0;
    background: var(--secondary-color);
}

.company-image-wrapper {
    position: relative;
}

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

.company-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--light-gray);
    line-height: 1.8;
}

/* ===== MISSION VISION VALUES ===== */
.mission-vision-values {
    padding: 100px 0;
    background: white;
}

.mvv-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

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

.mvv-card h3 {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.mvv-card p {
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

.mvv-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.mvv-card li {
    color: var(--light-gray);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.mvv-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ===== COMPANY HISTORY ===== */
.company-history {
    padding: 100px 0;
    background: var(--secondary-color);
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    min-width: 100px;
    text-align: center;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin: 0 2rem;
    flex: 1;
    max-width: 400px;
}

.timeline-content h4 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--light-gray);
    line-height: 1.6;
    margin: 0;
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 100px 0;
    background: white;
}

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

.team-stat {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.team-stat:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.stat-icon {
    background: var(--primary-color);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: var(--light-gray);
    font-weight: 600;
}

/* ===== CERTIFICATIONS ===== */
.certifications-section {
    padding: 100px 0;
    background: var(--secondary-color);
}

.certifications-content {
    padding-right: 2rem;
}

.certifications-description {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.certification-list {
    margin-bottom: 2rem;
}

.certification-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

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

.cert-content h5 {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.cert-content p {
    color: var(--light-gray);
    margin: 0;
}

.certifications-visual {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.cert-badge {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    min-width: 150px;
    transition: var(--transition);
}

.cert-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.cert-badge i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.cert-badge span {
    font-weight: 600;
    color: var(--dark-gray);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: var(--dark-gray);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

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

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== MOBILE ADJUSTMENTS FOR INTERNAL PAGES ===== */
@media (max-width: 768px) {
    .page-header {
        padding: 120px 20px 60px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 0.8rem;
    }
    
    .company-overview,
    .mission-vision-values,
    .company-history,
    .team-section,
    .certifications-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .company-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .certifications-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        align-items: flex-start;
    }
    
    .timeline-year {
        min-width: 80px;
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
    
    .timeline-content {
        margin-left: 1rem;
        margin-right: 0;
        max-width: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .mvv-card {
        margin-bottom: 2rem;
    }
    
    .team-stat {
        margin-bottom: 2rem;
    }
    
    .certifications-visual {
        flex-direction: column;
    }
    
    .cert-badge {
        width: 100%;
        max-width: 200px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .floating-buttons,
    .carousel-control-prev,
    .carousel-control-next,
    .carousel-indicators {
        display: none !important;
    }
}

