:root {
    --azul-escuro: #0a0a3c;
    --azul-royal: #3d5afe;
    --branco: #ffffff;
    --cinza-claro: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--azul-escuro);
}

/* Helpers */
.bg-navy {
    background-color: #04085b;
    color: white;
}

.bg-royal {
    background-color: var(--azul-royal);
    color: white;
}

.bg-blue {
    background-color: #04085B;
    color: white;
}

.text-royal {
    color: var(--azul-royal);
}

.btn-royal {
    background-color: var(--azul-royal);
    color: white;
    border-radius: 0;
    padding: 10px 30px;
    border: none;
}

.btn-outline-white {
    border: 1px solid white;
    color: white;
    border-radius: 0;
    padding: 10px 30px;
}

.btn-navy {
    background-color: var(--azul-escuro);
    color: white;
    border-radius: 0;
    padding: 10px 30px;
}

/* Header / Hero */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../../assets/img/background.jpg') center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 50px;
}

/* Seção Sobre */
.about-img-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Seção Serviços */
.services-section {
    padding: 80px 0;
}

.service-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    transition: 0.3s;
    height: 100%;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Equipamentos */
.equip-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Estrutura */
.structure-section {
    min-height: 400px;
}

footer {
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    text-decoration: underline;
}

.uppercase {
    text-transform: uppercase;
}

.blue-section {
    background-color: #4360ED;
    color: #fff;
    padding: 80px 0;
    background-image: url('pattern-white.png');
    /* Pattern em marca d'água */
}

.blue-section .section-title {
    color: #fff;
}

.service-list {
    list-style: none;
    padding: 0;
    columns: 1;
}

.equipamentos-section {
    padding: 80px 0 0 0;
    text-align: center;
}

.equipamentos-section h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 50px;
    font-weight: 300;
}

/* Ajustes do Slick para remover gutters */
.slick-carousel-container {
    width: 100%;
    overflow: hidden;
}

.slick-slide {
    padding: 0;
    margin: 0;
    outline: none;
}

.slick-slide img {
    width: 100%;
    height: 370px;
    /* Altura fixa para manter proporção no layout do site */
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.slick-slide img:hover {
    opacity: 0.9;
}

/* Customização de setas do Slick (opcional, já que é automático) */
.slick-prev,
.slick-next {
    z-index: 10;
    width: 40px;
    height: 40px;
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

@media (max-width: 768px) {
    .slick-slide img {
        height: 300px;
    }

    .equipamentos-section h2 {
        font-size: 1.8rem;
    }
}

.galeria-section {
    padding: 150px 0 0 0;
    background-color: #fff;
}

.galeria-header {
    text-align: center;
    margin-bottom: 60px;
}

.galeria-header h1 {
    font-size: 3rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

.galeria-header p {
    font-size: 1.1rem;
    color: var(--secondary-blue);
    max-width: 600px;
    margin: 0 auto;
}

/* Grid sem Gutter (Espaçamento zero) */
.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.galeria-item {
    overflow: hidden;
    position: relative;
    display: block;
}

.galeria-item img {
    width: 100%;
    height: 350px;
    /* Altura para manter o padrão visual */
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.galeria-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

@media (max-width: 768px) {
    .galeria-header h1 {
        font-size: 2.2rem;
    }

    .galeria-item img {
        height: 250px;
    }
}

.contato-section {
    padding-top: 150px;
    background-color: #fff;
}

/* Estilo do Formulário */
.form-label {
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.form-control {
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 10px 15px;
}

.form-control:focus {
    border-color: var(--light-blue);
    box-shadow: none;
}

input[type=text],
input[type=email],
textarea {
    border: solid 1px #4361EE !important;
}

.info-text {
    margin-left: 25px;
}

.btn-enviar {
    background-color: #050d3a;
    color: #fff;
    padding: 12px 40px;
    border: none;
    border-radius: 2px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.btn-enviar:hover {
    background-color: #050d3a;
    color: #fff;
}

/* Estilo da Coluna de Informações */
.contato-info-label {
    color: #4361EE;
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: block;
}

.contato-title {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contato-sub {
    color: var(--text-gray);
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-icon {
    font-size: 2rem;
    color: var(--light-blue);
    margin-right: 20px;
}

.info-text strong {
    display: block;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.info-text p {
    margin: 0;
    color: var(--text-gray);
}

/* Redes Sociais */
.social-title {
    color: var(--primary-blue);
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 50%;
    color: var(--primary-blue);
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}

@media (max-width: 768px) {
    .contato-title {
        font-size: 2rem;
    }

    .contato-info-col {
        margin-top: 50px;
    }
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 25px;
    padding-right: 25px;
}

.list-unstyled {
    font-size: 17px;
}

footer h6 {
    font-size: 2rem;
}

.subt {
    font-size: 1.5rem;
}

.textimage-block {
    padding-top: 150px;
    padding-bottom: 80px;
}