/* =========================
   RESET E ESTILOS GERAIS
========================= */


@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --colo1: #ad8c91;
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.8;
    color: #222;
    margin: auto;
    font-weight: 300;
    font-size: 14px;
}

a {
    text-decoration: none;
    font-weight: 300;
}
h1 {
  color: black;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.6;
}

h2 {
  font-weight: 400;
  font-size: 1.3rem;
  color: #333;
  line-height: 1.5;
}

h3 {
  font-weight: 400;
  font-size: 1.2rem;
  color: #444;
  line-height: 1.4;
}

h4 {
  font-weight: 400;
  font-size: 1rem;
  color: #555;
  line-height: 1.4;
}

h5 {
  font-weight: 400;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.4;
}

p {
  font-weight: 300;
  line-height: 1.8;
  font-size: 14px;
}

ul, li {
    text-decoration: none;
    font-weight: 300;
}
section {
    margin-bottom: 40px;
    max-width: 900px;
    padding: 0 15px 0px;
    margin: auto;
}

.img-profissional {
    max-width: 100%;
    height: auto;
}


/* BOTÃO CTA */
.cta {
    display: inline-block;
    background: var(--colo1);
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: 300;
    font-size: 13px;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta:hover {
    background: var(--colo1);
}

/* =========================
   HEADER
========================= */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 4px;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.div-header-position{
    display: flex;
    margin: 0 auto;
    width: 1136px;
    max-width: 1200px;
    justify-content: space-between;
    align-items: center;
}


/* Logo */
.logo img {
  height: 35px;
}

/* Navegação */
nav {
    display: none; /* mobile first */
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 15px 0;
}

nav ul {
    list-style: none;
    display: flex
;
    flex-direction: column;
    text-decoration: none;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 200;
    transition: color 0.2s ease;
}

nav ul li a:hover {
    color: var(--colo1);
}

/* Mostrar menu no mobile quando ativo */
nav.show {
    display: flex;
    justify-content: center;
}

/* Botão menu mobile */
.menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 24px;
    background: none;
    border: none;
    color: #333;
}




#agendamento{
    background: #80808026;
    border-radius: 10px;
    padding: 1px 15px 26px;
}



.sobre {
  margin-bottom: 40px;
  background: var(--colo1);
  padding: 20px;
  color: white;
  width: 84%;
  border-radius: 10px;
}








.cta-final-formulario {
    display: flex;
  }
  
  .cta-final-formulario img {
    margin: 40px auto;
    transition: transform 0.3s ease;
    width: 387px;
    border-radius: 8px;
} 


  
  .cta-final-formulario img:hover {
    transform: scale(1.02);
  }
  
  .container-formulario {
    background: var(--background);
  }
  
  .formulario {
    display: flex;
    flex-direction: column;
    width: 82%;
    background: #e3e3e391;
    padding: 15px 10px;
    border-radius: 15px;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* .cta-final-formulario {
    margin: 0 auto;
    width: 90%;
  } */
  
  .formulario:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .formulario h2 {
    font-size: 22px;
    width: 90%;
    padding: 5px 0px 14px;
    color: var(--primary-hover);
    font-weight: 300;
    transition: color 0.3s ease;
    line-height: 1.4;
  }
  
  .formulario:hover h2 {
    color: #51618b;
  }
  
  .formulario p {
    font-size: 13px;
    line-height: 1.8;
    font-weight: 200;
    padding-bottom: 10px;
    transition: opacity 0.3s ease;
  }
  
  .formulario:hover p {
    opacity: 0.9;
  }
  
  /* Novo estilo para o container do input */
  .input-container {
    position: relative;
    margin: 10px 0;
  }
  
  .formulario input {
    width: 100%;
    /* background: transparent; */
    border: none;
    font-size: 14px;
    padding: 12px 6px;
    border-radius: 8px;
    border: 1px solid #c8c8c8;
    transition: all 0.3s ease;
    font-weight: 300;
  }
  
  .formulario input::placeholder {
    color: #3a4859;
  }
  
  .formulario label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    /* background: #e3e3e391; */
    padding: 0 6px;
    color: #3a4859;
    font-size: 14px;
    transition: all 0.3s ease;
    pointer-events: none;
    font-weight: 300;
  }
  
  .formulario input:focus,
  .formulario input:not(:placeholder-shown) {
    border-color: var(--primary-hover);
    outline: none;
    box-shadow: 0 0 0 2px rgba(175, 129, 105, 0.2);
  }
  
  .formulario input:focus+label,
  .formulario input:not(:placeholder-shown)+label {
    top: 0;
    font-size: 12px;
    color: #3a4859;
    font-weight: 500;
  }
  
  .formulario input::placeholder {
    color: transparent;
  }
  
  .formulario button {
    padding: 5px 0px;
    width: 155px;
    height: 39px;
    background: var(--primary-hover);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .formulario button:hover {
    background: #51618b;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .formulario button:active {
    transform: translateY(1px);
  }
  
  @media(min-width:1440px) {
    .cta-final-formulário {
      height: 500px;
    }
  }
  
  @media screen and (min-width: 600px) {
  
    .container-formulario {
      display: flex;
      justify-content: center;
    }
  
    #id-div-formulario {
      display: flex;
      align-items: center;
    }
  
    .formulario {
      width: 410px;
      margin: 25px 45px;
      padding: 65px 40px;
      background-color: #fffeff;
    }
  }








/* =========================
   FOOTER
========================= */
footer {
    background: var(--colo1);
    color: white;
    padding: 14px 0;
}

.container-footer {
    width: 93%;
    margin: 1px auto;
}

/* Footer principal */
.div-footer-1 {
    padding: 14px 0;
}

.div-footer-1 img {
    width: 160px;
}

.div-footer-1 h2 {
    color: var(--color4);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 300;
    max-width: 367px;
    padding-bottom: 13px;
}

.div-footer-1 ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ul-text-footer-1 li a {
    color: var(--color4);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 200;
    max-width: 367px;
}

/* Footer secundário */
.div-footer-2 {
    display: flex;
    gap: 22px;
    padding-bottom: 18px;
}

.div-footer-text-2 h2 {
    color: var(--color4);
    font-size: 16px;
    font-weight: 300;
    padding-bottom: 5px;
    line-height: 1.4;
}

.div-footer-text-2 ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.div-footer-text-2 ul li {
    color: var(--color4);
    font-weight: 200;
    font-size: 16px;
    line-height: 1.4;
}

.div-footer-text-2 ul a {
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: white;
    text-decoration: none;
    list-style: disc;
}

footer h3 {
    color: var(--color4);
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    padding: 14px 0 15px;
    border-top: 1px solid var(--color4);
    line-height: 1.4;
}

/* =========================
   MEDIA QUERIES
========================= */
@media screen and (min-width: 600px) {
    .container-footer {
        display: flex;
        justify-content: space-around;
        max-width: 1100px;
        padding: 25px 0;
    }

    .div-footer-1 {
        padding: 0;
    }

    .div-footer-1 h2 {
        padding: 13px 0;
    }

    footer h3 {
        width: 500px;
        margin: 0 auto;
    }
}

@media screen and (min-width: 768px) {
    /* Navegação desktop */
    .menu-toggle {
        display: none;
    }

    .logo img {
        height: 50px;
    }

    nav {
        display: block !important;
        position: static;
        width: auto;
        background: none;
        border: none;
        padding: 0;
    }

    nav ul {
        flex-direction: row;
    }

    nav ul li {
        margin: 0;
    }
    
    .img-profissional {
        border-radius: 16px;
        height: 421px;
    }

        .position-curriculo {
            display: flex;
            gap: 10px;
        }


     .position-curriculo {
            display: flex
    ;

/* Mapa do Site */
.sitemap-section {
    background: #f8f9fa;
    padding: 60px 0;
    margin-top: 0;
}



.sitemap-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sitemap-header {
    text-align: center;
    margin-bottom: 50px;
}

.sitemap-header h2 {
    font-size: 32px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
}

.sitemap-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ffffff;
}

.sitemap-header p {
    font-size: 16px;
    color: #666;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.sitemap-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.sitemap-main-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #e9ecef;
    max-width: 1000px;
    width: 100%;
}

.sitemap-categories-container {
    
    gap: 25px;
    display: flex
    ;
        gap: 50px;
        flex-wrap: wrap;
}

.sitemap-category {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.sitemap-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.sitemap-category h3 {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.sitemap-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-category ul li {
    margin-bottom: 10px;
}

.sitemap-category ul li a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
    padding: 5px 0;
}

.sitemap-category ul li a:hover {
    color: #3498db;
    padding-left: 10px;
}

.sitemap-category ul li a::before {
    content: "→";
    margin-right: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sitemap-category ul li a:hover::before {
    opacity: 1;
}

/* Tablet */
@media (min-width: 768px) {
    .sitemap-section {
        padding: 80px 0;
    }
    
    .sitemap-header h2 {
        font-size: 36px;
    }
    
    .sitemap-header p {
        font-size: 18px;
    }
    
    .sitemap-main-card {
        padding: 50px;
    }
    
    .sitemap-categories-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .sitemap-category {
        padding: 25px;
    }
    
    .sitemap-category h3 {
        font-size: 22px;
    }
    
    .sitemap-category ul li a {
        font-size: 15px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .sitemap-main-card {
        padding: 60px;
    }
    
    .sitemap-categories-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
    
    .sitemap-category {
        padding: 30px;
    }
    
    .sitemap-category h3 {
        font-size: 24px;
    }
    
    .sitemap-category ul li a {
        font-size: 16px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .sitemap-main-card {
        padding: 50px;
    }
    
    .sitemap-categories-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .sitemap-category {
        padding: 25px;
    }
    
    .sitemap-category h3 {
        font-size: 20px;
    }
    
    .sitemap-category ul li a {
        font-size: 15px;
    }
}
   }
 }