@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

/* --- VARIÁVEIS GERAIS --- */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --menu-height: 80px;
    --menu-bg-color: #ffffff; /* Fallback */
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
    padding-top: var(--menu-height);
}

h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; }
a { text-decoration: none; transition: all 0.3s ease; }

/* --- NAVBAR DESKTOP --- */
#mainNav {
    background-color: var(--menu-bg-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: var(--menu-height);
    padding: 0;
    z-index: 1030;
}

#mainNav .navbar-brand img { max-height: 35px; width: auto; }

@media (min-width: 992px) {
    #mainNav .nav-link {
        font-weight: 600;
        color: #555;
        font-size: 0.95rem;
        padding: 0 18px !important;
        line-height: var(--menu-height);
    }
    #mainNav .nav-link:hover, #mainNav .nav-link.active { color: var(--primary-color); }
    
    /* Dropdown Desktop */
    .dropdown-menu {
        border-top: 3px solid var(--primary-color);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .navTrigger { display: none; }
}

/* --- MENU MOBILE LAYOUT PREMIUM (Atualizado) --- */
@media (max-width: 991.98px) {
    :root { --menu-height: 70px; }
    .navbar-toggler { display: none !important; }

    /* Container Full Screen */
    .navbar-collapse {
        position: fixed;
        top: 0; left: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--menu-bg-color) !important;
        z-index: 1100;
        padding: 20px 30px; /* Padding lateral aumentado */
        
        display: flex !important;
        flex-direction: column;
        /* ALTERAÇÃO: 'stretch' permite que elementos filhos controlem seu próprio alinhamento */
        align-items: stretch; 
        justify-content: flex-start;
        
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        visibility: visible !important;
        overflow-y: auto; /* Permite rolar se o menu for alto */
    }

    .navbar-collapse.show-drawer { transform: translateX(0); }

    /* 1. TOPO (LOGO) - CENTRALIZADO */
    .mobile-menu-header {
        width: 100%;
        text-align: center; /* Logo no centro */
        margin-top: 40px;
        margin-bottom: 10px;
    }
    .mobile-logo img { max-height: 50px; }
    .mobile-divider {
        border-top: 1px solid #eee;
        opacity: 1;
        margin: 15px 0;
        width: 100%;
    }

    /* 2. LINKS DO MENU - ALINHADOS À ESQUERDA */
    .menu-links-container {
        width: 100%;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        /* ALTERAÇÃO: Alinhamento à esquerda */
        text-align: left; 
    }
    
    #mainNav .navbar-nav { width: 100%; }
    
    #mainNav .nav-link {
        font-size: 1.2rem;
        color: #333;
        padding: 12px 0;
        font-weight: 500;
        border-bottom: 1px solid #f9f9f9;
        /* ALTERAÇÃO: Texto à esquerda */
        text-align: left; 
        display: block;
        width: 100%;
    }
    
    /* Dropdown Pai (Flex para separar texto da setinha) */
    #mainNav .nav-link.dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Submenu (Links Filhos) */
    .dropdown-menu {
        background: #f8f9fa;
        border: none;
        padding-left: 15px; /* Indentação para hierarquia */
        margin-bottom: 10px;
    }
    .dropdown-item {
        font-size: 1.1rem;
        padding: 10px 0;
        color: #555;
    }

    #mainNav .nav-link:hover, .dropdown-item:hover { 
        color: var(--primary-color); 
        padding-left: 5px; /* Efeitinho de deslize ao passar o mouse */
    }

    /* 3. RODAPÉ (LOGIN/SOCIAL) - CENTRALIZADO */
    .mobile-menu-footer {
        width: 100%;
        text-align: center; /* Centraliza Login e Ícones */
        margin-bottom: 30px;
        margin-top: 20px;
    }
    .auth-links {
        font-size: 1.1rem;
        color: #333;
        font-weight: 600;
        margin-bottom: 15px;
    }
    .auth-links a { color: #333; }
    
    .social-links-mobile {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    .social-links-mobile a i {
        font-size: 1.8rem;
        color: #333;
    }

    /* --- BOTÃO X (NAV TRIGGER) --- */
    .navTrigger {
        cursor: pointer;
        width: 30px; height: 25px;
        position: absolute;
        top: 22px; right: 20px;
        z-index: 1200;
    }
    .navTrigger span {
        display: block; position: absolute;
        height: 3px; width: 100%;
        background: #333;
        border-radius: 9px; opacity: 1; left: 0;
        transform: rotate(0deg); transition: .25s ease-in-out;
    }
    .navTrigger span:nth-child(1) { top: 0px; }
    .navTrigger span:nth-child(2) { top: 10px; }
    .navTrigger span:nth-child(3) { top: 20px; }

    .navTrigger.active span:nth-child(1) { top: 10px; transform: rotate(135deg); }
    .navTrigger.active span:nth-child(2) { opacity: 0; left: -60px; }
    .navTrigger.active span:nth-child(3) { top: 10px; transform: rotate(-135deg); }
}

/* Artefatos do Admin */
.footer-menu-container, #footer-menu-switch { display: none !important; }

/* Geral */

.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}
.section-title p {
  margin-bottom: 0;
}
.section-title h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #ef9f34;
  bottom: 0;
  left: calc(50% - 25px);
}
footer { background: #1a1a1a; color: #fff; padding: 60px 0 30px; }
footer a { color: #ccc; }

.diagonal {
  --skew-angle: -3deg;
  --background: linear-gradient(35deg, #2754b2, #002762);
  position: relative;
  isolation: isolate;
}

.diagonal::after {
  content: "";
  background: var(--background);
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: skewY(var(--skew-angle));
}

.rev-diagonal {
  --skew-angle: 3deg;
  --background: linear-gradient(45deg, #2754b2, #002762);
  position: relative;
  isolation: isolate;
  text-align: right;
}

.rev-diagonal::after {
  content: "";
  background: var(--background);
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: skewY(var(--skew-angle));
}

.section-bg {
  padding: 120px 0;
  color: #fff;
  content: "";
  background: linear-gradient(135deg, #317be5 0%, #064092 100%);
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

.section-bg-service {
  content: "";
  background: #fff;
  color: #002762;
}

.section-bg-projetos {
  content: "";
  background: #002762;
  color: #fff;
}

.section-bg-logomarcas {
  content: "";
  background: #002762;
  color: #fff;
}

.section-title-slogan {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
  color: #fff;
}
.section-title-slogan h2 {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-title-slogan h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #d62d83;
  bottom: 0;
  left: calc(50% - 25px);
}
.section-title-slogan p {
  margin-bottom: 0;
  color: #fff;
}

.btn-action {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #EF9F34;
  border: 2px solid #EF9F34;
}
.btn-action:hover {
  background: #002762;
  border-color: #002762;
  color: #fff;
}

.btn-lgpd {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  color: #fff;
  background: #002762;
  border: 2px solid #002762;
 
}
.btn-lgpd:hover {
  background: #d62d83;
  border-color: #d62d83;
  color: #fff;
}

/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/
.tabs .nav-tabs {
  border: 0;
}
.tabs .nav-link {
  border: 1px solid #b9b9b9;
  padding: 10px;
  transition: 0.3s;
  color: #111111;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  margin-top: 15px;
}
.tabs .nav-link i {
  padding-right: 10px;
  font-size: 30px;
}
.tabs .nav-link h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}
.tabs .nav-link:hover {
  color: #d62d83;
}
.tabs .nav-link.active {
  background: #002762;
  color: #fff;
  font-weight: 600;
  border-color: #002762;
}
@media (max-width: 768px) {
  .tabs .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .tabs .nav-link {
    padding: 15px;
  }
  .tabs .nav-link i {
    font-size: 28px;
  }
}
.tabs .tab-content {
  margin-top: 30px;
}
.tabs .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}
.tabs .tab-pane ul {
  list-style: none;
  padding: 0;
}
.tabs .tab-pane ul li {
  padding-bottom: 10px;
}
.tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #359d1b;
}
.tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 80px;
}
.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}
.counts .count-box i {
  position: absolute;
  width: 54px;
  height: 54px;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #fff;
  color: #b62c7e;
  border-radius: 50px;
  border: 2px solid #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.counts .count-box span {
  font-size: 18px;
  display: block;
  font-weight: 700;
  color: #111111;
}
.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #b62c7e;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Faqs
--------------------------------------------------------------*/
.accordion-button:not(.collapsed) {
    background-color: #263b80;
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.accordion-item {
	border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	font-size: 18px;
}


