
@font-face {
    font-family: 'Astagie';
    src: url('./fontes/Astagie.otf') format('truetype');
}

@font-face {
    font-family: 'RelationshipMelodrame';
    src: url('./fontes/Relationshipofmelodrame.ttf') format('truetype');
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root{
    --logo-verdeclara-textura: #8D986F;   
    --logo-verdeescura-textura: #495642;
    --brown: #A67C52;
    --blue-dark: #14173A;     
    --brown-clear: #7B5D44; 
    --dark-brown: #3C2C1F;
    --blue-light: #f3f6fc;
    --cream: #F7E7C2;
    --white: #ffffff;
    --gold: rgb(255, 217, 0);
}

html{
    scroll-behavior:smooth;
}

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

body{
    display: block;
    min-height: 100vh;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
}

section{
    padding: 0;
}

.navb a{
    text-decoration: none;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 5px 4px;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 1.8px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s;
    position: relative;
    display: inline-block;
}

.navb a::after {
  content: '';
  position: absolute;
  bottom: -5px; 
  left: 0;
  width: 0; 
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}

.navb a:hover { 
    color: var(--white); 
}

.navb a:hover::after { 
    width: 100%; 
}

#header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    gap: 8px;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    left: 0;
    top: 0;
    right: 0;
    margin-top: 0;
    background: 
    radial-gradient(circle at 20% 30%, rgba(255,204,0,0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.06), transparent 40%),
    linear-gradient(135deg, var(--logo-verdeclara-textura) 0%, var(--logo-verdeescura-textura) 100%);
}

.particles { 
    position: absolute; 
    inset: 0; 
    pointer-events: none; 
}

.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0%   { transform: translateY(100vh) translateX(0px); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(-10vh) translateX(30px); opacity: 0; }
}

.imagem{
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo{
    font-family: 'Astagie';
    font-size: 1.3rem; 
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logodesk{
    width: 100%;
    max-width: 900px;
    height: auto;
    object-fit: cover;
    margin-top: 50px;
}

.logomob{
    display: none;
}

@media (max-width: 768px) {

    .logodesk{
        display: none;
    }

    .logomob{
        margin-top: 10px;
        display: block;
        width: 350px;
        height: 450px;
        object-fit: cover;
    }
    
    .navmobile{
        display: none;
    }
}

nav{
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    gap: 40px;
    background: var(--logo-verdeclara-textura);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    height: auto;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px;
}

nav.active{
    right: 0;
    transition: 0.5s ease;
}


.menu-btn{
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: fixed;
    top: 17px;
    right: 20px;
    z-index: 1000;
}

.menu-btn span{
    width:100%;
    height:3px;
    background:#ffffff;
    border-radius:3px;
    transition:0.3s ease;
}

.menu-btn:hover span{
    background: rgba(255,255,255,0.1);
    background: var(--gold);
}

#doubt, #inicio, #contact{
    display: none;
}


.menu-btn.active span:first-child{
    transform: rotate(45deg) translateY(13px);
}

.menu-btn.active span:nth-child(2){
    opacity: 0;
}

.menu-btn.active span:last-child{
    transform: rotate(-45deg) translateY(-14px);
}

@media (min-width: 768px){
    nav{
        position: fixed;
        display: flex;
        width: 100%;
        top: 0;
        left: 0;
        right: 0;
        gap: 50px;
        justify-content: space-between;
        align-items: center;
        transition: 0.7s ease;
        background-color: transparent;
        border: none;
    }

    .navb{
        position: fixed;
        display: flex;
        width: 100%;
        top: 0;
        left: 0;
        right: 0;
        gap: 50px;
        justify-content: space-between;
        align-items: center;
        transition: 0.7s ease;
        background-color: transparent;
        border: none;
    }

    .navbardesk{
        display: flex;
        gap: 50px;
        align-items: center;
    }

    .navbardesk a{
        margin-top: 0;
    }

    .divnavlogo{
        display: block;
    }   

    .navb .nav-logodesk{
        font-family: 'Astagie';
        font-size: 1.6rem; 
        color: var(--white);
        text-decoration: none;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 0;
        margin-top: 0;
        left: 20px;
        top: 0px;
        z-index: 2004;
    }

    nav.scrolled {
        background: var(--logo-verdeescura-textura);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 2px 32px rgba(0, 0, 0, 0.4);
        padding: 14px 56px;
    }

    #doubt, #contact{
        display: block;
    }
    
    .menu-btn{
        display: none;
    }
    
}

.nav-logo span {
    color: var(--logo-verdeclara-textura);
}

.navmobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    height: 60px;
    z-index: 2000;
}

.navmobile.scrolled{
    background-color: var(--logo-verdeescura-textura);
}


@media (min-width: 768px) {
    .navmobile {
        display: none;
    }

    .nav-logo {
        font-size: 2.5rem;
        position: fixed;
        top: 0;
        left: 20px;
    }
}


.icons{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
    background: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 10px 10px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    gap: 30px;

}

.icons img{
    width: 30px;
    height: 30px;
    object-fit: cover;
}

header{
    min-height: auto;
}

section{
    width: 100%;
    padding: 60px 20px;
}

section:nth-child(even){
    background:#ffffff;
}

.menumobile {
  display: none;
  position: fixed;
  background: var(--navy-deep);
  z-index: 998;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  opacity: 0;
  transition: 0.3s;
  background: var(--logo-verdeclara-textura);
  backdrop-filter: blur(8px);
  top: 0;
  width: 100%;
  height: 100%;
}

.menumobile[style*="flex"] {
  display: flex;
  opacity: 1;
}

.mob-link {
font-family: 'Astagie';
  font-size: 38px;
  font-weight: 200;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.25s;
}

.mob-cta {
  font-size: 18px;
  color: white;
  background: var(--logo-verdeescura-textura);
  padding: 14px 36px;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.whatsapp-fixo{
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 60px;
    height: 60px;

    z-index: 999;

    cursor: pointer;
}

.whatsapp-fixo img{
    width: 100%;
    height: 100%;
}

#servicos{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, var(--logo-verdeclara-textura) 0%, var(--logo-verdeescura-textura) 100%);
}

#servicos h2{
    color: #ffffff;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

@media (min-width: 768px) {
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.servico-card {
  padding: 20px 10px;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translateY(10px);
  border-radius: 14px;
  transition: all 0.2s ease;
}
 
.servico-card::after {
  content: '';
  position: absolute;
  bottom: 0; 
  left: 0; 
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.servico-card:hover::after { transform: scaleX(1); }
 
.servico-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
 
.servico-icon {
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 22px;
  width: 100%;
  max-width: 320px;
  height: 200px;  
  font-size: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.servico-icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.servico-card:hover .servico-icon {
  background-color:  var(--cream);
  transform: scale(1.1);
}
 
.servico-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color:var(--cream);
  margin-bottom: 12px;
  line-height: 1.2;
  flex-grow: 1;
}

.servico-card p { 
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.75;
  color: #FFFFFF;
}


.container{
    width: 100%;
    max-width: 1100px;
    margin-top: 5px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 60px;
}

section h2{
    display: inline-block;
    text-align: center;
    color: var(--logo-verdeescura-textura);
    font-family: 'Astagie', serif;
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 auto;
    position: relative;
    top: 20px;
    padding-bottom: 12px;
}

section h2::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 72px;
    height: 1px;
    background: currentColor;
    opacity: 0.55;
}

#sobre-mim{
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, var(--cream) 0%, rgb(196, 196, 196) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.paragrafo{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
}

.foto, .paragrafo{
    display: flex;
    flex-direction: row;
}

.paragrafo p{
    width: 340px;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.9;
    font-weight: 300;
    letter-spacing: 0.2px;
    color: white;
    margin-left: 0px;
    margin-top: -15px;
    
}

.flexdir{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    gap: 50px;
}

#frame{
    border-radius: 8px;
    color: var(--white);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    background-color: #8D986F;
}

.foto{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 12px;
}

.fad{
    width: 280px;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.sobre-badge {
    position: static;
    background: transparent;
    color: var(--cream);
    padding: 18px 22px;
    border-radius: 8px;
    z-index: 2;
    text-align: center;
    width: 330px;
}

.sobre-badge .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--cream);
    line-height: 1;
}

.sobre-badge .lbl {
    color: var(--white);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 1;
    margin-top: 6px;
    line-height: 1.4;
}

.topicosul{
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: min(100%, 860px);
    max-width: 860px;
    margin: 0 auto;
    padding: 0;
}

.topicos li{
    width: 100%;
    max-width: 860px;
    margin: 20px 0;
    border-radius: 12px;
    position: relative;
    color: var(--white);
    font-weight: 400;
    text-decoration: none;
    list-style: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    padding-left: 25px;
    line-height: 1.5;
    padding: 14px 18px 14px 40px;
    opacity: 0;
    transition: all 0.8s ease;
    transform: translateY(0);
    transition: transform 0.45s ease, opacity 0.45s ease, border-color 0.25s ease, background 0.25s ease;
}

.topicos li::before{
    content: "✔";
    position:absolute;
    left:0;
    left: 14px;
    top: 14px;
    font-weight: bold;
    color: var(--logo-verdeescura-textura);
}

.topicos.show li{
    transform: translateY(0);
    opacity: 1;
}

.topicos li:nth-child(1){ transition-delay:0.1s; }
.topicos li:nth-child(2){ transition-delay:0.25s; }
.topicos li:nth-child(3){ transition-delay:0.4s; }
.topicos li:nth-child(4){ transition-delay:0.55s; }
.topicos li:nth-child(5){ transition-delay:0.7s; }


.topicos li:hover{
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

#sobre_desk{
    display: none;
}

@media (min-width: 768px) {
    .flexdir{
        display: grid;
        grid-template-areas:
            "foto texto"
            "topicos topicos";
        grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
        gap: clamp(32px, 4vw, 64px);
        align-items: center;
        width: 100%;
        max-width: 1100px;
        margin-top: 0;
    }

    .foto{
        grid-area: foto;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-left: 150px;
    }

    .fad{
        width: 100%;
        width: 340px;
        height: auto;
    }

    .textosobre{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }

    .paragrafo{
        width: 100%;
        max-width: 500px;
        align-items: center;
        text-align: left;
        margin-top: 10;
        text-align: left;
    }

    .paragrafo p{
        max-width: none;
        text-align: left;
        font-size: 1.07rem;
        line-height: 1.95;
        margin-left: 150px;
    }

    .paragrafo, .foto{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .topicosul{
        grid-area: topicos;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .topicos li{
        display: block;
        margin: 10px;
        width: 100%;
        max-width: 900px;
        text-align: center;
        justify-content: center;
        align-items: center;
        padding: 18px 30px;
        transition: transform 0.35s ease, opacity 0.35s ease, border-color 0.25s ease, background 0.25s ease;
    }

    .fad.show{
        transform: none;
        opacity: 1;
    }

    .topicos.show li{
        transform: translateY(0);
        opacity: 1;
    }

    #sobre_mobile{
        display: none;
    }

    #sobre_desk{
        display: inline;
    }

    .sobre-badge{
        position: static;
        text-align: center;
    }
}

#stats {
    padding: 80px 20px;
    background: #ffffff;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
    max-width: 900px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-inner {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--dark-brown);
}

.stat-num {
    font-size: 5.5rem;
    font-weight: 700;
    color: var(--gold-dark);
    font-family: 'Cormorant Garamond', serif;
}


#psicoterapia{
    padding: 80px 20px;
    background: var(--cream);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.psico-wrapper{
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}


.psico-texto{
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--logo-verdeescura-textura);
}

.psico-texto p{
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--logo-verdeescura-textura);
    margin-bottom: 16px;
}

.psico-topicos{
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    max-width: 900px;
    font-size: 0.9rem;
    height: auto;
}

.psico-card{
    background: var(--white);
    padding: 10px 22px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    font-size: 1.05rem;
    color: #2b3327;
    transition: transform 0.25s ease;
}

.psico-card:hover{
    transform: translateY(-4px);
}

@media (min-width: 768px){

    .psico-topicos{
        grid-template-columns: repeat(2, 1fr);
    }

    .psico-texto p{
        font-size: 1.05rem;
    }
}

#faq{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 50px;
    background: linear-gradient(180deg, var(--logo-verdeclara-textura) 50%, var(--logo-verdeescura-textura));
}

#faq h2{
    color: var(--white);
}

.faq-item {
    width: 100%;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: 0.3s;
    max-width: 800px;
    height: auto;
    color: black;
}

.faq-question {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 550;
    color: black;
}

.icon {
    font-size: 22px;
    transition: 0.3s;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

.box .texto{
    max-height: 0;
    width: 100%;
    overflow: hidden;
    padding: 0 20px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-family: 'Montserrat', sans-serif;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 20px;
}

#galeria{
    background: var(--cream);
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider{
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
}

.slides{
    display: flex;
    width: max-content;
    animation: slide 24s infinite;
}

.slides img{
    width: 800px;
    height: 600px;
    border-radius: 12px;
    object-fit: cover;
}


@media (min-width: 768px){

.slides img{
    width: 100%;
    min-width: 800px;
    height: 700px;
    border-radius: 12px;
    object-fit: cover;
    }
}

@keyframes slide{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-50%);
    }
}

#localizacao{
    background: var(--logo-verdeclara-textura);
    display: flex;
    justify-content: center;
    align-items: center;
}

#localizacao h2{
    color: var(--white);
}

.locais{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.local-card{
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.local-card h3{
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 8px;
    color: var(--dark-brown);
}

.local-card p{
    font-family: 'DM Sans', sans-serif;
    color: var(--dark-brown);
    font-size: 0.95rem;
}

@media (min-width: 768px){
    .local-card{
        width: 900px;
    }
}

.mapa{
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}


#contato{
    background-color: var(--logo-verdeescura-textura);
    color :white;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

#contato h2{
    color: var(--white);
}

.contato-box {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
    max-width: 900px;
    text-align: center;
    justify-items: center;
}


.contato-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contato-info img{
    width: 50px;
    height: 50px;
}

.contato-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.contato-info p {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
    text-align: center;
    max-width: 390px;
    margin-bottom: 40px;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contato-form input,
.contato-form textarea {
    padding: 12px;
    border-radius: 6px;
    border: none;
    outline: none;
}

.contato-form textarea {
    min-height: 120px;
}

.contato-form button {
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.contato-form button:hover {
    background: var(--gold-dark);
}

@media (min-width: 768px){
    .contato-info{
        width: 400px;
        text-align: center;
    }
}

.contato-form button.send{
    margin-top: 20px;
    background: var(--cream) !important;
    color: var(--dark-brown) !important;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
}

.send:hover{
    transform: scale(1.07);
}

#footer{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: var(--logo-verdeescura-textura);
}

#footer p{
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.whats{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  height: 50px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  display: flex;                 
  align-items: center;          
  justify-content: center;     
  width: 100%;             
  min-width: 340px;      
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: scale(1.05);
}

@media (min-width: 768px) {

    #contato{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .btn-whatsapp {
        margin-top: 30px;
        margin-bottom: 20px;
        width: 350px;
    }
}

.insta-link{
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--cream); 
    transition: all 0.3s ease;
}

.insta-link img{
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.insta-link:hover{
    opacity: 0.7;
    transform: translateY(-1px); 
}

