@charset "UTF8";

@import url('https://fonts.googleapis.com/css2?family=Philosopher:wght@700&family=Righteous&family=Sarala&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #0583F2; /* Your chosen color */
    --secondary-color: #FFFF00; /* Yellow for accents */
    --background-color: #F5F5F5; /* White for sections */
    --text-color: #2C7FB5; /* Dark blue for text */
    --accent-color: #46C756; /* Green for buttons */
    --dark-color: #000000; /* Black for contrast */
    --light-color: #FFFAFA; /* White for text on dark backgrounds */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: 'Sarala', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #0071C1;
}

/* Header */
.cabecalho {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2rem;
    background-color: var(--light-color);
    box-shadow: var(--shadow);
}

#burguer{
    display: none;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 10px;
}

#logo-header {
    height: 6rem;
    border-radius: 1rem;
}

.cabecalho-menu {
    display: flex;
    gap: 2rem;
}

.cabecalho-menu-item {
    font-family: 'Sarala', sans-serif;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.4rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.cabecalho-menu-item::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.cabecalho-menu-item:hover {
    color: var(--primary-color);
}

.cabecalho-menu-item:hover::after{
    width: 100%; /* Expande o sublinhado ao passar o mouse */
    left: 0;
    transform: translateX(0);
}

/* Back to Top Button */
#btn-voltar-topo {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: var(--secondary-color);
    padding: 10px;
    border-radius: 20%;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 3; 
}

#btn-voltar-topo.show {
    opacity: 1;
}

#icon-btn-voltar-topo {
    color: #000000;
    font-size: 24px;
}

#btn-voltar-topo:hover {
    transform: scale(1.1); 
    background-color: var(--light-color);
}

/* WhatsApp Button */
.btn-lateral {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent-color);
    padding: .3rem 1.4rem;
    border-radius: 5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 3;
}

#icon-btn-lateral {
    color: var(--light-color); /* White */
    font-size: 3.4rem;
}

#btn-lateral:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
    /*background-color: var(--secondary-color);  Yellow */
}

/* .avaliacoes{
    background-color: #0071C1;
}

.elfsight-app a[href*="elfsight.com"] {
    display: none;
} */

/* .carousel-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
  }

  .carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    transition: transform 0.4s ease-in-out;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .review {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .review .author {
    font-weight: bold;
    margin-bottom: 5px;
  }

  .review .stars {
    color: gold;
    margin-bottom: 10px;
  }

  .review p {
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
  }

  .buttons {
    text-align: center;
    margin-top: 10px;
  }

  .buttons button {
    background-color: #ccc;
    color: #0071C1;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
  }

  .buttons button:hover {
    background-color: #0056b3;
  } */

  .mvv-section{
    padding: 4rem 2rem;
    background-color: #F5F5F5;
    text-align: center;
  }

  .mvv-container{
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }

  .mvv-card{
    background-color: #F5F5F5;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
    padding: 2rem;
    width: 400px;
    transition: transform .2s ease;
  }

  .mvv-title{
    font-size: 3rem;
    font-weight: bold;
    color: #0071C1;
    margin-bottom: 1rem;
  }

  .mvv-text{
    font-size: 2rem;
    color: #0583F2;
    line-height: 1.4;
  }

.subtitle-avalia{
    font-family: "Montserrat", sans-serif;
    font-size: 3rem;
    color: #0071C1;
    text-align: center;
    background-color: #F5F5F5;
    padding: 3rem 0;
}

.avaliacoes{
    background-color: #F5F5F5;
    padding: 0 4rem;
}


.google-reviews-widget {
    display: flex;
    align-items: center;
    position: relative;
    /* max-width: 78%; */
    margin: 0 auto;
    padding: 6rem 2rem;
    overflow: hidden;
    background-color: #F5F5F5;
    /* width: 100%; */
}

.reviews-wrapper {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    padding-bottom: 6rem;
}

.review-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    /* min-width: 380px; */
    max-width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.review-author {
    font-weight: bold;
    margin: 0;
    color: #444;
    text-transform: uppercase;
}

.stars {
    color: #0071C1; 
    font-size: 1.8rem;
    line-height: 1;
}

.google-logo {
    width: 24px;
    height: 24px;
    margin-left: auto;
}

.review-text {
    font-size: 1.6rem;
    color: #444;
    margin-top: 1btn0px;
}

.nav {
    background-color: #0071C1;
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    color: #F5F5F5;
    padding: 8px 14px;
    transition: background-color 0.3s;
    z-index: 1;
}

.nav:hover {
    background-color: #000;
}

.nav.left {
    position: absolute;
    left: 0;
}

.nav.right {
    position: absolute;
    right: 0;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    /* text-align: center; */
    /* padding: 4rem; */
    /* background-image: url('../img/Design\ sem\ nome\ \(3\).png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; */
    color: var(--light-color);
    background-color: #0071C1;
    border-bottom: 6px solid #F5F5F5;
    
}



.hero-title {
    font-family: 'Sarala', sans-serif;
    font-size: 4.8rem;
    color: var(--secondary-color);
}

.hero-subtitle {
    font-family: 'Sarala', sans-serif;
    font-size: 2.4rem;
    color: var(--secondary-color);
    margin-top: 1rem;
}

.hero-content{
    padding-left: 10rem;
}

.hero-slogan {
    font-family: "Montserrat", sans-serif;
    font-size: 2.8rem;
    font-weight: bold;
    margin-top: 2rem;
    padding: 1rem;
    /* border: 2px dashed var(--secondary-color); */
    max-width: 600px;
    letter-spacing: 1px;
}

.hero-cta {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--light-color);
    border-radius: 1rem;
    font-family: 'Sarala', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.255);
    transition: background-color 0.3s ease;
}

.hero-cta:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Services Section */
/* .services {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #0071C1;
    height: 700px;
    border-bottom: 6px solid #2C7FB5;
}

.section-title {
    font-family: "Montserrat", sans-serif;
    font-size: 3rem;
    color: #F5F5F5;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    font-family: 'Sarala', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #0583F2;
    padding: 2.4rem;
    background-color: #F5F5F5;
    border-radius: 1rem;
    box-shadow: var(--shadow);
} */

.servic{
        padding: 12rem 9.4rem;
        background-color: #FFFAFA;
    }

.carousel-container-servicos {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #e9e9e9;
  /* margin-top: 2rem; */
  /* padding: 0 10px; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-servicos {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding: 2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel-servicos::-webkit-scrollbar {
  display: none;
}

.service-card {
  width: 300px;
  background-color: #F5F5F5;
  border-radius: 1rem;
  padding: 2rem;
  text-align: left;
  font-family: 'Sarala', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #0583F2;
  flex: 0 0 320px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-card:hover {
  transform: scale(1.05);
  background-color: #e9e9e9;
}

.service-title{
    font-size: 3rem;
    font-weight: bolder;
    color: #64676A;
    margin-bottom: .5rem;
}

.service-text{
    font-size: 2rem;
    color: #444;
    line-height: 1.4;
    /* font-weight: lighter; */
}

.carousel-btn {
  background-color: #FFFAFA;
  padding: 8px 14px;
  border-radius: 50%;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #0583F2;
  transition: background-color 0.3s;
  z-index: 2;
}

.carousel-btn:hover {
  background-color: #0071C1;
  color: #FFFAFA;
}

/* About Section */
.about {
    /* padding: 6rem 0 4rem 0; */
    text-align: center;
    background-color: #F5F5F5;
}

.about-title{
    color: #0071C1;
    padding-top: 5.4rem;
    font-size: 3rem;
}

.about-text {
    font-family: 'Sarala', sans-serif;
    font-size: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 1.6rem;
    color: #0583F2;
}

/* Detailed Services Section */
.detailed-services {
    padding: 4rem 2rem;
    background-color: #0071C1;
}

.service-detail {
    margin-bottom: 4rem;
}

.service-detail-title {
    font-family: "Montserrat", sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #F5F5F5;
}

.service-detail-text {
    font-family: 'Sarala', sans-serif;
    font-size: 2rem;
    font-weight: lighter;
    color: #F5F5F5;
    line-height: 1.8;
}

/* Extra Services Section */
.extra-services {
    padding: 4rem 2rem;
    background-color: var(--primary-color);
}

.extra-service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.extra-service-item {
    font-family: 'Sarala', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    padding: 1rem;
    background-color: var(--light-color);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.pricing {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    background-color: #ccc;
    /* background: linear-gradient(to bottom, #f5f5f509 10%, #0583F2 84%, #0583F2 10%); */
    /* background:linear-gradient(to top, #87898B, #8c8f910f); */
    padding: 2rem;
}

.subtitle-pricing{
    color: #64676A;
    text-align: center;
    padding: 20px;
    background-color: #ccc;
    font-family: inherit;
    font-family: 'Righteous', sans-serif;
    font-size: 3rem;
    
    text-transform: uppercase;
    /* border-bottom: 0.2rem solid #0583f21b; */
    /* max-width: 30%; */
    margin: 0 auto;
}

.paragraph-princing{
    font-family: "Montserrat", sans-serif;
    color: #64676A;
    text-transform: none;
    font-size: 2rem;
    font-weight: 600;
}

.pricing-plan {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #0071C1;
    /* padding: 2rem; */
    border-radius: 3rem;
    /* text-align: center; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 400px; /* Definindo uma largura fixa para os cards */
    height: auto;
    min-height: 650px;
    /* box-shadow: -10px 0px 8px 5px rgba(0, 0, 0, 0.053); */
}

.pricing-plan, p{
    color: var(--light-color);
}

.basic, .prata, .ouro{
    /* display: block; */
    /* color: white; */
    /* padding: 10px; */
    /* outline: 2px solid rgba(0, 0, 0, 0.049); */
    border-radius: 10px;
    font-weight: 600;
    color: #64676A;
}


.plan-gold, .plan-bronze, .plan-prata{
    /* padding-top: 6.2rem; */
    border-radius: 2.8rem;
    
}

.pricing-bronze, .pricing-prata, .pricing-ouro{
    border: 1px solid #F5F5F5;
}

.pricing-prata{
    background-color: #808385;
}

span.pricing-plan__price_prata{
    color: #0071C1;
}

.plan-bronze{
    /* text-align: left; */
    background-color: #F5F5F5;
    padding: 2.5rem;
}

.plan-prata{
    background-color: #F5F5F5;
    padding: 2.5rem;
}

.plan-gold{
    background-color: #F5F5F5;
    padding: 2.5rem;
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* .pricing-plan.featured {
    transform: scale(1.05); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: #f0f8ff;
} */

.pricing-plan-title {
    font-family: 'Righteous', sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    /* margin-bottom: 1rem; */
    /* padding-bottom: 1rem; */
    letter-spacing: 2px;
    color: black;
}

.title-prata{
    color: #0071C1;
}

.plan-description{
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #0583F2;
    margin-bottom: 1rem;
}

.pricing-plan__price {
    font-size: 3.6rem;
    font-weight: bolder;
    color: black;
    margin: 1rem 0;
}

.pricing-plan p{
    color: #64676A;
}


.pricing-plan__features {
    list-style: none;
    padding-left: 2rem;
    margin: 2.2rem 0;
    text-align: left;
    font-weight: 600;
    /* background-color: #007fc4; */
    /* letter-spacing: 1px; */
}

.pricing-plan__features li {
    font-family: 'Sarala', sans-serif;
    font-size: 1.8rem;
    /* text-transform: uppercase; */
    color: var(--light-color);
    margin: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.pricing-plan__features li i {
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.ast-nt::after{
    content: " **";
    color: var(--light-color);
}

.ast-nt-sec::after{
    content: " *";
    color: var(--light-color);
}

.action{
    display: flex;
    margin-top: auto;
    justify-content: center;
    /* background-color: #007fc4; */
}

.pricing-plan__cta {
    margin-top: 2rem;
    padding: 1.2rem 2rem;
    margin-bottom: 2rem;
    background-color: var(--light-color);
    color: #0071C1;
    border-radius: 5rem;
    font-family: 'Sarala', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
    width: 80%;
}

.pricing-plan__cta:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.cta-bronze:hover{
    background-color: #2C7FB5;
    color: var(--background-color);
}

.cta-prata:hover{
    background-color: #727272;
    color: var(--background-color);
}

.cta-ouro:hover{
    background-color: #2C7FB5;
    color: var(--background-color);
}

/* Contact Section */
.contact {
    padding: 9.8rem 2rem;
    text-align: center;
    background-color: #0071C1;
    /* border-top: 6px solid #F5F5F5; */
}

.contact-title{
    font-family: "Montserrat", sans-serif;
    font-size: 2.8rem;
    font-weight: bolder;
    color: #F5F5F5;
}

.contact-paragraph{
    font-size: 2rem;
    max-width: 620px;
    margin: 0 auto;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    padding: 2rem 0 3rem 0;
}

.formulario {
  max-width: 800px;
  margin: 2rem auto;
  background-color: #143d58;
  padding: 3rem 4rem;
  border-radius: 1rem;
  font-family: "Montserrat", sans-serif;
}

.form-title{
    padding-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.formulario input,
.formulario textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-family: 'Sarala', sans-serif;
  font-size: 1.6rem;
  resize: vertical;
}

.btn-enviar {
  background-color: #0071C1;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-enviar:hover {
  background-color: #005fa3;
}

.cta-outra-contabilidade{
    /* display: block;
    justify-content: center;
    align-items: center; */
    background-color: white;
    padding: 2.4rem 1.4rem;
    /* border-radius: 1rem; */
    text-decoration: none;
    /* font-weight: bold; */
    /* margin: 0 auto; */
    text-align: center;
}

.cta-outro-site{
    color: #143d58;
    font-weight: 400;
    font-size: 1.6rem;
}

.cta-outro-site a {
  color: #007FC4;
  font-weight: bold;
  font-size: 2rem;
  transition: color .2s ease-in-out;
}

.cta-outro-site a:hover{
    color: #005fa3;
    padding-top: 1.4rem;

}

/* Footer */
.rodape {
    padding: 2rem;
    text-align: center;
    background-color: var(--light-color);
    border-top: 5px solid var(--secondary-color);
}

.logo-footer {
    width: 18rem;
    margin-bottom: 1rem;
}

.footer-text {
    font-family: 'Sarala', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: #143d58;
    margin-top: 1rem;
}

.email{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .6rem;
    margin: 0 auto;
}

.email i{
    color: #143d58;
    font-size: 2.2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    /* margin-top: 2rem; */
}

.social-links a {
    color: #143d58;
    font-size: 2.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #0071C1;
}

.footer-text a{
    /* text-decoration: none; */
    color: #143d58;
}

.footer-text a:hover{
    transform: translateX(.4rem);
    transition: all 300ms ease-in-out;
    color: #0071C1;
}

/* .priv {
    font-family: 'Sarala', sans-serif;
    font-size: 1.4rem;
    color: var(--text-color);
    margin-top: 1rem;
} */

.direitos p {
    font-family: 'Sarala', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #143d58;
    margin-top: 2.4rem;
    border-top: 1px solid #808385;
    padding-top: 3rem ;
}