/*
Theme Name: Theme Anuncie C
Theme URI: https://anuncie-c.com/
Author: Jhone Erlich
Author URI: https://eloshop.com.br/
Description: Development with Elementor.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header Styles */
.header {
    background: #013923;
    padding: 1rem 0;
    position: relative;
    z-index: 999999;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d4af37;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 0.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -2px;
}

/* Navigation Styles */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-menu li a {
    color: #fff;
    font-weight: 300;
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}
.nav-menu li a:hover {
    color: #E5AE3C;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* CTA Button */
.cta-button {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background: #d4af37;
    color: #1a3a2e;
    border-color: #d4af37;
}

/* Search Icon */
.search-icon {
    color: #d4af37;
    font-size: 1.3rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: none;
    border: none;
    padding: 0;
}

.search-icon:hover {
    transform: scale(1.1);
}

/* <CHANGE> Search bar now appears below header instead of overlay */
.search-bar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a3a2e 0%, #0d2419 100%);
    padding: 1.5rem;
    display: none;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.search-bar.active {
    display: block;
}

.search-bar input {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.5);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 4px;
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-bar input:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.15);
}

 .close-search {
    position: absolute;
    right: 1.5rem;
    background: none;
    border: none;
    color: #d4af37;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    transform: translateY(-50%);
    top: 50%;
}

.search-form {
    width: 100%;
}

.search-form .container {
    position: relative;
}

/* Aumenta o espaço interno para acomodar os botões */
#searchInput {
    padding-right: 110px !important;
}

/* Botão de busca */
.search-button {
    position: absolute;
    right: 60px; /* AFASTA do X */
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #E5AE3C;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
}

/* Botão de fechar */
.close-search {
    position: absolute;
    right: 30px; /* deixa mais afastado */
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0;
}

.page-anc {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}
.page-anc h1{
    margin-bottom: 15px !important;
    font-weight: 500 !important;
    color: #015e39 !important;
}
.page-anc a {
  color: #013d2e !important;
  font-weight: 400 !important;
}
.page-anc a:hover {
  color: #0a2719 !important;
}

/* <CHANGE> Hamburger menu transforms into X when open */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #d4af37;
    transition: all 0.3s ease;
    position: absolute;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

/* Hamburger transforms to X */
.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}
button.cta-button {
    background: #0A2719;
    border: 0;
    padding: 15px 20px 12px 20px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 5px;
}
/* Mobile Menu */
@media (max-width: 991px) {
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #E5AE3C;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        display: none;
        border-top: 1px solid rgba(212, 175, 55, 0.3);
    }
    ul#mobileMenu {
        padding: 15px;
    }
    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
       .nav-menu li a {
            color: #013923;
            font-weight: 400;
        }
      .nav-menu li a:hover {
            color: #002919;
        }
    .nav-menu li a::after {
        display: none;
    }

    .desktop-actions {
        display: none !important;
    }

    .mobile-actions {
        display: flex !important;
    }
    button.cta-button.w-100  {
        background: #013d2e;
        color: #fff;
    }
    ul#mobileMenu li:last-child {
        border-bottom: 0;
    }
}

@media (min-width: 992px) {
    .mobile-actions {
        display: none !important;
    }
}
.solicite-diagnostico a {
    width: 100%;
}
.solicite-diagnostico a {
    padding: 20px;
    font-size: 19px;
    border-radius: 10px;
    font-weight: 900 !important;
}
.ellipse-mobile {
    position: relative;
}
.ellipse-mobile img.imob2 {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 80%;
    left: 50%;
}
.ciclemob {
    position: relative;
}
.ciclemob:before {
content: "";
  width: 1290px;
  height: 683px;
  display: block;
  background-image: url("assets/img/mockup-celular-scaled.webp");
  position: absolute;
  transform: translate(-50%, -50%);
  top: 44%;left: 50%;
  background-position: center;
 }

 .full_content_home {
    overflow: hidden !important;
}
.ciclemob {
    margin-bottom: -50px !important;
}
@media(max-width: 400px){
    .ciclemob:before {
        background-size: 70%;
    }
}
/*----------------------------------------ENDFONTS-----------------------------------------------*/

    .btn-diagnostico {
      background-color: #f7b733;
      color: #003a2d;
      font-weight: bold;
      border-radius: 8px;
      padding: 8px 16px;
    }

    /* Hero Section */
    .hero {
      padding: 100px 0;
      background: linear-gradient(135deg, #003a2d 60%, #064b3b);
      position: relative;
      overflow: hidden;
    }
    .hero h1 {
      font-weight: 700;
      color: #f7b733;
    }
    .hero ul {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }
    .hero ul li {
      font-size: 1.1rem;
      margin-bottom: 8px;
    }
    .hero .btn-whatsapp {
      background-color: #00c853;
      color: #fff;
      border-radius: 50px;
      font-weight: 600;
      margin-right: 10px;
    }
    .hero .btn-cases {
      background-color: #00695c;
      color: #fff;
      border-radius: 50px;
      font-weight: 600;
    }

    .hero img {
      max-width: 350px;
      transform: rotate(-15deg);
    }

    /* Section - O que fazemos */
    .section-fazemos {
      background-color: #004c3c;
      padding: 80px 0;
      text-align: center;
    }
    .section-fazemos h2 {
      color: #f7b733;
      font-weight: 700;
      margin-bottom: 40px;
    }

    .card-fazemos {
      background-color: #003a2d;
      border-radius: 16px;
      padding: 30px;
      color: #fff;
      height: 100%;
      border: 1px solid #f7b73333;
      transition: all 0.3s ease;
    }
    .card-fazemos:hover {
      background-color: #005944;
      transform: translateY(-5px);
    }
    .card-fazemos i {
      font-size: 40px;
      color: #f7b733;
      margin-bottom: 20px;
    }
  .custom-header {
    background-color: #013923;
    border-radius: 0 0 12px 12px;
    padding: 12px 0;
    position: relative;
    z-index: 10;
    }
    .left-banner-home {
        position: relative !important;
        z-index: 99999 !important;
    }
    .btns-banner-home a {
        background: #197242 !important;
        width: 100%;
        border-radius: 50px;
    }
    .left-banner-home .btn2 {
        width: 70%;
    }
    .left-banner-home .btns-banner-home a span.elementor-button-icon {
        font-size: 25px;
    }
    .left-banner-home .btns-banner-home a span.elementor-button-text {
        align-items: center;
        display: flex;
        padding-top: 4px;
    }
    .left-banner-home .btns-banner-home a {
        font-weight: 500;
    }
    .btns-banner-home a:hover {
        background: #229b5a !important;
    }
    .solicite-diagnostico span.elementor-button-text {
        font-weight: 500;
    }

/*-----------------------HEADER------------------------------*/
    body {
      color: #fff;
      font-family: 'ArtegraSans' !important;
      font-weight: 300 !important;
    }
    .logo img {
        width: 220px;height: auto;
        }
    }
    
body, h1, h2, h3, h4, h5, h6, p, span, div, a, li {
    font-family: 'ArtegraSans' !important;
    font-weight: 400;
}
.container {
   max-width: 1220px !important;
		padding-left: 15px !important;
		padding-right: 15px !important;
}
.e-con-inner {
    max-width: 1190px !important;
}
.copyanc {
    margin-bottom: -15px;
}
div#searchBar {
    padding: 20px 5px;
		background: #002718;
}
input#searchInput {
    padding-top: 14px;
}
.elementor-swiper-button-next {
    margin-right: 3px;
}
.elementor-swiper-button-prev {
    margin-left: 3px;
}
.elementor-swiper-button {
    background: #042b1c;
    padding: 8px;
    border-radius: 100px;
    width: 35px;
    height: 35px;
    display: flex !important;
    align-items: center;
}
.oque-fazemos:before {
    content: "";
    width: 100px;
    height: 100px;
    background-color: #0b2b1c;
    background-image: url('https://anuncie-c.com/wp-content/uploads/2025/11/down-yellow.png');
    background-repeat: no-repeat;
    background-position: center 50px;
    background-size: 40px;
    position: absolute;
    top: -60px;
    transform: translateX(-50%);
    left: 50%;
    border-radius: 100%;
}
.nosso-metodo {
    padding: 0;
}
.btns-diag a:hover {
	background: #0f6443 !important;
}
.duvidas-frequentes p {
    color: #071F11;
}
#btn-sendformac {
    max-width: 185px;
    padding: 0;
    padding-top: 2px;
}
.title-cont:after {
    content: "";
    width: 30%;
    height: 2px;
    display: block;
    background: #09412b;
}

.card-servico {
    position: relative;
    padding: 32px 28px !important;
    border-radius: 32px;
    font-family: "Inter", sans-serif;
    color: #fff;
    overflow: hidden; /* importante pro degradê interno */
}

/* BORDA COM DEGRADÊ GROSSA */
.card-servico::before {
    content: "" !important;
    position: absolute !important;;
    inset: 0 !important;;
    border-radius: 32px !important;;
    padding: 6px !important;;
	background: linear-gradient(180deg, #ffffff00 0%, #D7B86A 100%) !important;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none !important;
}

/* DEGRADÊ INTERNO (conteúdo mais escuro em cima e embaixo) */
.card-servico::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.25) 100%);
    pointer-events: none;
    z-index: 0;
}

/* ÍCONE CÍRCULO */
.card-servico .elementor-icon-wrapper .elementor-icon {
    background: #D9A038;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.card-servico svg {
    width: 36px;
    height: 36px;
    fill: #063C2E;
}

/* TÍTULO */
.card-servico h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    color: #D9A038;
    margin: 0 0 12px 0;
    position: relative;
    z-index: 2;
		margin-bottom: 0;
}

/* TEXTO */
.card-servico p {
    font-size: 18px;
    line-height: 1.4;
    margin: 0;
    position: relative;
    z-index: 2;
		font-weight: 300;
}
.card-servico h2 {
   color: #E1B04C !important;
   font-weight: 700 !important;
}
button#btn-sendformac {
    font-weight: 500;
}
.duvidas-frequentes .e-n-accordion-item-title-text {
    font-weight: 400;
}
.footer-menu-links li,
.footer-menu-social li {
    display: flex;
    align-items: center;
}
.footer-menu-links li a {
    color: white;
    text-decoration: none;
}
.footer-menu-social i {
    color: #E5AE3C;
}
.footer-menu-social .social-link i {
    color: #E5AE3C;
    transition: 0.3s;
}
.footer-menu-social .social-link:hover i {
    opacity: 0.7;
}
.footer-menu-social a {
    margin-bottom: 10px;
}
.menu-footer ul {
    display: block;
}
.menu-footer ul li {
    padding: 6px 0;
}
footer nav.menu-footer .nav-menu {
    position: relative;
    top: 0;
    left: 0;
    background: transparent;
}
footer nav.menu-footer .nav-menu li {
    text-align: left !important;
    border-bottom: 0;
}
footer nav.menu-footer .nav-menu li a {
    color: #fff;
    font-weight: 300;
}
footer ul#menu-menu-principal-2 {
    border-top: 0;
    padding-top: 0;
}
.fw-bold {
    font-weight: 500 !important;
}
  .btn-blog {
    background-color:#E5AE3C;
    color:#013D2E;
    padding:10px 25px;
    border-radius:8px;
    font-weight:400;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:all 0.3s ease;
  }
  .btn-blog:hover {
    background-color:#f5be52;
    color:#013D2E;
    text-decoration:none;
  }
  /* Container geral do blog */
.blog-list-container {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Título do blog */
.blog-list-container h1 {
    font-weight: 700;
    margin-bottom: 30px;
}

/* Card do post */
.blog-card {
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 20px;
    background: #ffffff;
    transition: transform .2s ease, box-shadow .2s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Título do card */
.blog-card h5 a {
    color: #004225; /* verde escuro do layout */
    font-weight: 700;
    text-decoration: none;
}

.blog-card h5 a:hover {
    color: #006f3f;
    text-decoration: underline;
}

/* Texto do post */
.blog-card p {
    color: #444;
    margin-top: 10px;
    line-height: 1.5;
}

/* Sidebar */
.blog-sidebar .card {
    border-radius: 12px;
}

.blog-sidebar .card-header {
    font-weight: 700;
    background: #ffffff;
    border-bottom: 1px solid #e6e6e6;
}

.blog-sidebar .list-group-item {
    padding: 12px 16px;
    border: none;
    border-bottom: 1px solid #f1f1f1;
}

.blog-sidebar .list-group-item:last-child {
    border-bottom: none;
}

.blog-sidebar .list-group-item a {
    color: #004225;
    font-weight: 600;
    text-decoration: none;
}

.blog-sidebar .list-group-item a:hover {
    color: #006f3f;
    text-decoration: underline;
}
.card-header.fw-bold {
    background: #e5ae3c;
    color: #fff;
    font-weight: 500 !important;
    border-bottom: 0;
}
.card.mb-4 {
    overflow: hidden;
}
.blog-sidebar {
    margin-top: 61px !important;
}
.card-footer a {
    background: #e5ae3c;
    border: 0;
    color: #013d2e !important;
}
.card-footer a:hover {
    background: #ffc64f;
    border: 0;
    color: #013d2e !important;
}
.blog-card img {
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}
.card.category_anc img {
    height: auto;
}
/* Paginação */
.pagination {
    display: flex;
    gap: 6px;
}

.pagination .page-numbers {
    padding: 8px 14px;
    border-radius: 6px;
    background: #ffffff;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #004225;
    transition: background .2s;
}

.pagination .page-numbers:hover {
    background: #f0f0f0;
}

.pagination .current {
    background: #004225;
    color: #fff !important;
    border-color: #004225;
}
.erro-404 h2 {
    color: #028b55;
}
.erro-404 h1 {
    color: #e5ae3c !important;
    margin-bottom: 0 !important;
}
.erro-404 a {
    background: #e5ae3c;
    border: 0;
    font-size: 16px;
}
.erro-404 a:hover {
    background: #ffc754;
}
.erro-404 {
    padding: 150px 0 !important;
}
@media(max-width:991px){
      .listtyle {
            width: 100% !important;
            height: 1px !important;
        }
        a.btn-blog {
            width: 100%;
    }
    .mt-5.pt-3.copyanc  {
    border: 0 !important;
    padding-top: 0 !important;
    }

  }
@media(max-width: 768px){
    .ellipse-mobile {
        display: none;
    }
	.nosso-metodo-text {
			width: 50%;
			margin: 0 auto;
	}
	.left-banner-home {
    height: 400px;
	}
	.full_content_home {
			min-height: 490px !important;
	}
	#btn-sendformac {
    max-width: 100%;
}
}
@media(max-width: 420px){
	.nosso-metodo-text {
			width: 80%;
			margin: 0 auto;
	}
	.logo img {
    width: 150px;
	}
	.slider-servicos-oqf p {
			font-size: 15px;
	}
	.slider-servicos-oqf h2 {
			font-size: 17px;
	}
}
@media(max-width: 340px){
.solicite-diagnostico {
    margin-top: -45px;
	}
	.slider-servicos-oqf p {
    font-size: 15px;
	}
		.left-banner-home {
    height: 500px;
	}
	.full_content_home {
			min-height: 610px !important;
	}
}
@media(max-width: 325px){
	.slider-servicos-oqf p {
    font-size: 12px;
	}
	.slider-servicos-oqf h2 {
			font-size: 13px;
	}
}
@media(min-width: 768px) and (max-width: 992px){
 .left-banner-home {
		height: 450px;
	}
	.full_content_home {
			min-height: 540px !important;
	}
	.ciclemob:before {
		background-repeat: no-repeat;
		background-size: 80%;
		top: 44%;
		left: 46%;
	}
	.ellipse-mobile {
			height: 400px !important;
	}
}
@media(min-width: 1020px) and (max-width: 1220px){
   .e-con-inner {
			max-width: 1190px !important;
			padding-left: 10px !important;
			padding-right: 10px !important
	}
}
@media(min-width: 520px) and (max-width: 767px){
    .solicite-diagnostico {
        margin-top: -50px;
    }
}
@media(min-width: 992px) and (max-width: 1100px){
    header ul#menu-menu-principal {
     gap: 25px
    }
}