:root{
   /* Backgrounds */
  --bg-main: #f8f9fa;
  --bg-card: #ffffff;
  --bg-footer: #5a9db7;

  /* Brand / Ação */
  --primary: #62A1BB;
  --primary-hover: #4f8ea6;

  /* Títulos */
  --title-main: #1a470f;
  --title-secondary: #6fa83a;

  /* Texto */
  --text-main: #333333;
  --text-muted: #6c757d;

  /* Estados */
  --success: #7bbf6a;
  --focus: #9fd3e5;

  /* box shadow */
  --box-shadow: 0 0 10px -5px var(--text-muted);
}

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Nunito', sans-serif;
}

body.no-scroll{
    overflow: hidden;
    height: 100vh;
}

button, a{
    -webkit-tap-highlight-color: transparent;
}

/* =========================================================== */

/* HEADER */
.navbar{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    padding: 1rem;
    position: fixed; 
    top: 0;
    width: 100%;
    height: 70px;
    background-color: var(--bg-card);
    z-index: 5;
}

/* botão - menu */
.menu-toggle{
    width: 30px;
    height: 25px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 2;
}

.logo{
    width: 70px;
    height: 50px;
    position: fixed;
    top: 18px;
    right: 10px;
    z-index: 2;
}

.menu-toggle .bar{
    width: 100%;
    height: 2px;
    background-color: var(--title-main);
    border-radius: 2px;
    transition: all .6s ease-in-out;
    position: relative;
    transform-origin: center;
}

.menu-toggle.active .bar:nth-child(1){
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2){
    opacity: 0;
}


.menu-toggle.active .bar:nth-child(3){
    transform: translateY(-15px) rotate(-45deg);
}

/* menu de navegação */
.nav-list{
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100vh;
    background-color: var(--bg-card);
    list-style-type: none;
    transform: translateX(-100%); 
    transition: transform 1s ease;
    box-shadow: 0 0 50px -30px var(--text-muted);
    z-index: 1;
}

.nav-list li{
    margin: 85px 35px;
}

.nav-list a{
    text-decoration: none;
    color: var(--title-main);
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
}

.nav-list.active{
    transform: translateX(0);
}

.menu-toggle:focus-visible{
    outline: 3px solid var(--title-main); 
    outline-offset: 10px;
    border-radius: 4px;
}

.nav-list a:focus-visible{
    outline: 3px solid var(--title-main); 
    outline-offset: 10px;
    border-radius: 4px;
}

/* FUNDO ESCURO - OVERLAY */
.overlay{
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.overlay.active{
    opacity: 1;
    visibility: visible;
    z-index: 4;
}

/* ========================================================================== */

/* HERO SITE */
.hero-site{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
}

.hero-image img{
    width: 55%;
    height: auto;
    border-radius: 15px 50px;
    object-fit: cover;
    display: block;
    margin: 30px auto;
    box-shadow: 0 0 30px -10px var(--text-muted);
}

.hero-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content h1{
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
    max-width: 32ch;
}

.hero-content p{
    font-size: 1rem;
    max-width: 35ch;
    margin: 0 auto 1.5rem;
    line-height: 1.3;
    text-align: center;
}


.hero-button{
    display: inline-block;
    background-color: var(--title-main);
    color: var(--bg-main);
    font-weight: bold;
    padding: 10px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 0 15px -5px var(--text-muted);
    margin-bottom: 30px;
}

.section-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 60px 0;
}

.section-divider span {
  width: 12px;
  height: 12px;
  background-color: var(--title-main);
  border-radius: 50%;
}

.hero-button:focus-visible{
    outline: 3px solid var(--title-main); 
    outline-offset: 10px;
    border-radius: 4px;
}

.sobre-container{
    max-width: 90%;
    background-color: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-left: 5%;
    box-shadow: 0 0 10px -5px var(--text-muted);
    border-radius: 15px 50px;
    margin-top: 2rem;
    margin-bottom: 150px;
}

.sobre-charllene h2{
    font-size: 1.7rem;
    text-align: center;
    margin-top: 2rem;
    color: var(--title-main);
    font-weight: bold;
}

.sobre-charllene h2::after{
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--title-main);
    margin: 12px auto 0;
    border-radius: 2px;
    margin-bottom: 2rem;
}

.sobre-charllene p{
    font-size: 1rem;
    font-weight: 500;
    padding: 20px;
    text-align: left;
    margin-left: 10px;
}

.redes-sociais{
    text-align: center;
    margin-top: 20px;
    font-size: 2rem;
    hyphens: none;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.redes-sociais a{
    color: var(--title-main);
    padding: 0 20px;
    hyphens: none;
    
}

.redes-sociais a:focus-visible{
    outline: 3px solid var(--title-main); 
    outline-offset: 10px;
    border-radius: 4px;
}

/* ======================================================================= */

/* ÁREA DO CARROCEL DE CARDS */
.carrocel-tittle{
    font-size: 1.7rem;
    text-align: center;
    margin-top: 0;
    position: relative;
    color: var(--title-main);
}

.carrocel-tittle::after{
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--title-main);
    margin: 12px auto 0;
    border-radius: 2px;
}

.carrocel{
    position: relative;
    max-width: 90%;
    margin: 1rem auto 100px;
    overflow: hidden;
}

.carrocel-track{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    list-style-type: none;
    padding: 0;
    margin: 0;
    transition: transform 0.5s ease-in-out;
    
}

.card{
    max-width: 75%;
    background-color: var(--bg-main);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 10px -5px var(--text-muted);
    margin: 50px auto;
}

.card h3{
    margin: 1.5rem 0;
    color: var(--title-main);
    font-weight: bold;
}

.card p{
    font-size: 1rem;
    line-height: 1.5;
}

.carrocel-control{
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    z-index: 4;
    width: 45px;
    height: 45px;
    background-color: transparent;
    color: var(--title-main);
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    margin: 0 auto;
}

.carrocel-control.prev{
    left: -10px;
}

.carrocel-control.next{
    right: -10px;
}

.carrocel-control:focus-visible {
    outline: 3px solid var(--title-main); 
    outline-offset: 10px;
    border-radius: 4px;
}


.carrocel-dots{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: .5rem;
    margin-bottom: 1rem;
    gap: 20px;
}

.carrocel-dots button{
    width: 12px;
    height: 12px;
    min-width: 10px;
    min-height: 10px;
    border-radius: 50%;
    border: 2px solid var(--title-main);
    background-color: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 0;
    line-height: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.carrocel-dots button[aria-current="true"] {
    opacity: 1;
}

.carrocel-dots button[aria-current="true"] {
  background: var(--title-main);
}

.carrocel-dots button:focus-visible{
    outline: 3px solid var(--title-main); 
    outline-offset: 10px;
    border-radius: 4px;
}


/* ======================================================================= */

/* IMAGENS */
.espaço{
    padding: 4rem 1rem;
}

.nosso-espaço{
    max-width: 90%;
    margin: 0 auto;
}

.nosso-espaço h3{
    text-align: center;
    font-size: 1.7rem;
    margin-bottom: 2rem;
    color: var(--title-main);
    font-weight: bold;
    margin-top: -50px;
}

.nosso-espaço h3::after{
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--title-main);
    margin: 12px auto 0;
    border-radius: 2px;
}

.galeria-fotos{
    margin-top: 4rem;
}

.galeria{
    display: grid;
    grid-template-columns: repeat(1fr);
    gap: 3%;
    margin-bottom: 100px;
}

.slide{
    width: 100%;
}

.slide img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    box-shadow: 0 0 20px -5px var(--text-muted);
}

/* footer */
.footer {
  background-color: var(--title-main);
  color: #fff;
  margin-top: 5rem;
}

/* TOPO: duas colunas */
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* endereço */
.footer-address {
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}

.footer-phone{
    margin-top: 1.5rem;
    margin-bottom: -1rem;
    font-weight: bold;
}
/* telefone */
.footer-phone a {
  color: #fff;
  text-decoration: underline;
}

.footer-phone a:focus-visible{
    outline: 3px solid var(--bg-card); 
    outline-offset: 10px;
    border-radius: 4px;

}

.footer-bottom {
  width: 100%;
  border-top: 2px solid var(--bg-main);
  padding: 1rem;
  text-align: center;
  font-size: 0.8rem;
}