:root {
    --primary: #004a8c; /* Azul */
    --secondary: #00a859; /* Verde #00a859 | Verde Limão #43bd1f */
    --tertiary: #b02b2e; /* Vermelho Grena */
    --dark: #1a1a1a; /* Preto */
    --light: #f9f9f9; /* Branco */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/*  */

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Menu de Navegação Customizado */
.navbar {
    transition: var(--transition);
    padding: 10px 0; /* padding: 20px 0;  */
    background: transparent;
}

.navbar.sticky {
    background: white !important;
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: white !important;
}

.navbar.sticky .navbar-brand { color: var(--primary) !important; }
.navbar-brand span { color: var(--tertiary); }

.nav-link {
    color: white !important;
    font-weight: 500;
    /*text-transform: uppercase;*/
    margin: 0 10px;
    transition: var(--transition);
}

.navbar.sticky .nav-link { color: var(--dark) !important; }
.nav-link:hover { color: var(--secondary) !important; }

/* SEÇÃO HERO COM PARALAX REAL */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    /* IMAGEM DE FUNDO MODERNA INCORPORADA*/
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('../images/aracaju.jpg');
    /*background-image: url('../images/aracaju.jpg');*/
    background-attachment: fixed; /* Efeito Parallax */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Imagens utilizadas:
https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?q=80&w=1920&auto=format&fit=crop
https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1920&auto=format&fit=crop */

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.hero-content p {
    text-align: justify;
    font-size: 1.4rem;
    max-width: 750px;
    margin: 0 auto 40px;
    font-weight: 300;
    animation: fadeInUp 1.2s ease;
}

.btn-main {
    padding: 18px 45px;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0, 168, 89, 0.3);
}

.btn-main:hover {
    transform: translateY(-5px);
    background: #008d4a;
    box-shadow: 0 15px 30px rgba(0, 168, 89, 0.5);
}

/* Seções */
section { padding: 140px 0; }

.section-title h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    text-transform: uppercase;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Campos Email */
.service-email {
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
    border: 1px solid #eee;
}

/* Cards de Serviços */
.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
    border: 1px solid #eee;
}

.service-card, .service-email:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.service-card i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* Divisor Parallax Secundário */
.parallax-divider {
    height: 600px;
    background-image: linear-gradient(rgba(0, 74, 140, 0.8), rgba(0, 74, 140, 0.8)), 
                      url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1920&auto=format&fit=crop');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* Contato e Mapa */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.info-list .item {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.info-list .item i {
    width: 60px;
    height: 60px;
    background: var(--light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.map-wrapper {
    border-radius: 25px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* WhatsApp Flutuante */
.wpp-float {
    position: fixed;
    bottom: 60px; /* 95px; */
    right: 15px; /* 28px; */
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 3000;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Ícones Redes Sociais */
.redesocial {
    background: #25d366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Estilo da marca d'água */
.watermark {
    position: fixed;                /* Fixa na tela */
    top: 50%;                       /* Centraliza verticalmente */
    left: 50%;                      /* Centraliza horizontalmente */
    transform: translate(-50%, -50%);
    opacity: 0.1;                   /* Transparência */
    z-index: -1;                    /* Fica atrás do conteúdo */
    width: 100vmin;                 /* Ajuste do tamanho */
    heidht: 100vmin;
    background: none;               /* Sem cor de fundo */
    box-shadow: none;               /* Sem sombra */
    mix-blend-mode: multiply;
}

img {
    pointer-events: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 5px; /* gap: 20px; */
}

nav ul li a {
  text-decoration: none;
  color: #333;
  position: relative; /* necessário para o ::after */
  padding: 3px 0;
}

nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #004a8c; /* cor da barra #007bff */
  transition: width 0.3s ease; /* animação suave */
}

nav ul li a:hover::after {
  width: 100%; /* barra aparece ao passar o mouse */
}

footer { background: #111; color: white; padding: 40px 0; }

.card-img-top {
    /* Ensures the image doesn't overflow the card during zoom */
    overflow: hidden;
    /* Smooth transition for the transform */
    transition: transform 0.5s ease;
}

.custom-card-hover:hover .card-img-top {
    /* Scales the image inside the card */
    transform: scale(1.1);
}


