@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ===========================
   BASE
=========================== */
body {
    background-color: #F6F1EE;
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
}

main {
    margin-top: 50px;
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
}

/* ===========================
   HEADER
=========================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    box-sizing: border-box;
    z-index: 1000;
    background-color: transparent;
    border-bottom: none;
    box-shadow: none;
    transition: background-color 0.1s ease,
                box-shadow 0.1s ease,
                padding 0.1s ease;
}

header.scrolled {
    background-color: #F6F1EE;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    padding: 15px 40px;
}

/* ===========================
   LOGO
=========================== */
.logo-text {
    text-align: center;
    line-height: 0.8;
}

.logo-text h1 {
    font-family: 'Playfair Display', serif;
    color: #393534;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 3px;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.linha1 { display: block; }
.linha2 { font-size: 28px; }

.logo-text p {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    letter-spacing: 6px;
    margin-top: 8px;
}

/* ===========================
   DESKTOP NAV
=========================== */
.desktop-nav { display: flex; }

.navbar {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navbar a {
    text-decoration: none;
    color: #393534;
    font-size: 20px;
    transition: 0.3s;
}

.navbar a:hover { color: #070000; }

.navbar .btn-agende {
    display: inline-block;
    background-color: #393534;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid #393534;
    transition: all 0.3s ease;
}

.navbar .btn-agende:hover {
    background-color: #ffffff;
    color: #393534;
    border: 2px solid #393534;
    transform: translateY(-2px);
}

/* ===========================
   HAMBURGER — oculto no desktop
=========================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: #393534;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   MOBILE NAV DRAWER — oculto no desktop
=========================== */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100vh;
    background-color: #F6F1EE;
    box-shadow: -4px 0 20px rgba(0,0,0,0.12);
    z-index: 1050;
    padding: 90px 30px 40px;
    box-sizing: border-box;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open { right: 0; }

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: #393534;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(57,53,52,0.08);
    transition: color 0.2s;
}

.mobile-nav ul li a:hover { color: #3F5D46; }
.mobile-nav ul li:last-child a { border-bottom: none; }

.btn-agende-mobile {
    display: inline-block;
    background-color: #393534;
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600 !important;
    font-size: 16px !important;
    border: 2px solid #393534;
    text-align: center;
    margin-top: 10px;
    transition: all 0.3s ease;
    border-bottom: none !important;
}

.btn-agende-mobile:hover {
    background-color: #ffffff !important;
    color: #393534 !important;
}

/* ===========================
   OVERLAY — oculto por padrão, JS controla
=========================== */
.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 900;
    cursor: pointer;
}

/* ===========================
   HERO SECTION
=========================== */
.main-info {
    width: 100%;
    display: flex;
}

.left-info {
    width: 50%;
    font-size: 34px;
    text-align: center;
    color: #3F5D46;
    display: grid;
    align-items: center;
}

.left-info p {
    text-align: center;
    font-size: 28px;
    width: 95%;
    color: #444444;
    align-items: center;
}

.right-info {
    width: 55%;
    display: flex;
    justify-content: center;
}

.right-info img {
    margin-top: 40px;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    border: 3px solid #F6F1EE;
}

/* ===========================
   ABOUT SECTION
=========================== */
#about {
   width: 100%;
    display: flex;
}

#about .text-box h2{
    color: #3F5D46;
   
    
}

.section-flex {
    width: 50%;
    font-size: 20px;
    text-align: center;
    color: #444444;
    display: grid;
    align-items: center;
}

.text-box {
    width: 100%;
}

.img-box {
    width: 50%;
}

.img-box img {
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    border: 3px solid #F6F1EE;
}

.right-image {
    flex-direction: row-reverse;
    margin-top: 200px;
}

#servicos h2{
    color: #444444;
}

.palavra-verde{
     color: #3F5D46;
     font-style: italic;
     font-weight: 700;
}

.palavra-jornada{
    color: #3F5D46;
    font-style: italic;
     font-weight: 700;
}
/* ===========================
   LOCATION BUTTONS
=========================== */
.location-buttons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-location,
.btn-online {
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-location {
    background-color: #393534;
    border: 2px solid #393534;
    color: white;
}

.btn-location:hover {
    background-color: white;
    color: #393534;
}

.btn-online {
    background-color: #3F5D46;
    color: white;
    border: 2px solid #3F5D46;
}

.btn-online:hover {
    background-color: transparent;
    color: #3F5D46;
}

/* ===========================
   PROCESS SECTION
=========================== */
.process {
    padding: 100px 40px;
    text-align: center;
}

.process-container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.process-card {
    background: #ffffff;
    width: 330px;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: relative;
    transition: 0.3s ease;
}


.process-card:hover { transform: translateY(-8px); }

.phase-number {
    font-size: 40px;
    font-weight: 700;
    color: #0A145F;
    margin-bottom: 10px;
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #393534;
}

.process-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.process-card ul li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.process-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3F5D46;
    font-weight: bold;
}

.featured-process .phase-number { color: #650D22; }
.n3 .phase-number { color: #EEA100; }

/* ===========================
   CONTATO SECTION
=========================== */
.contato {
    background-color: #F6F1EE;
    padding: 80px 20px;
    text-align: center;
}

.contato h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #393534;
}

.contato p {
    max-width: 600px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
    color: #444444;
    font-size: 22px;
    text-align: center;
}

.btn-agende-inferior {
    display: inline-block;
    background-color: #393534;
    color: #ffffff;
    padding: 15px 28px;
    border-radius: 30px;
    font-weight: 700;
    border: 2px solid #393534;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-agende-inferior:hover {
    background-color: #ffffff;
    color: #393534;
    border: 2px solid #393534;
    transform: translateY(-2px);
}

/* ===========================
   FOOTER
=========================== */
footer {
    background-color: #FBF8F6;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

footer h2 {
    margin-top: 5px;
    font-size: 16px;
    font-weight: 400;
    color: #6b6b6b;
}

.btn-instagram,
.btn-email,
.btn-telefone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #393534;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-instagram i,
.btn-email i,
.btn-telefone i {
    font-size: 22px;
    line-height: 1;
    display: block;
}

.Feed {
    width: 100%;
    background-color: #F6F1EE;
    height: 10vh;
    position: relative;
    bottom: 70px;
}

/* ===========================
   OVERFLOW / ELFSIGHT FIX
=========================== */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

.elfsight-app-9f3a4c1f-250b-464c-8f04-a9335fa97945 {
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

main > * {
    max-width: 100%;
    box-sizing: border-box;
}

/* ===========================
   MOBILE — até 900px
   Desktop não é afetado
=========================== */
@media (max-width: 900px) {

    .desktop-nav { display: none; }
    .hamburger   { display: flex; }
    .mobile-nav  { display: block; }

    header          { padding: 18px 24px; }
    header.scrolled { padding: 12px 24px; }

    .logo-text h1 { font-size: 20px; }
    .linha2       { font-size: 20px; }
    .logo-text p  { font-size: 11px; letter-spacing: 4px; }

    main {
        padding-top: 30px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .main-info {
        flex-direction: column;
        align-items: center;
    }

    .left-info {
        width: 100%;
        font-size: 26px;
    }

    .left-info p {
        font-size: 18px;
        width: 100%;
    }

    .right-info {
        width: 100%;
        justify-content: center;
    }

    .right-info img {
        max-width: 100%;
        margin-top: 24px;
    }

    #about {
        flex-direction: column;
        align-items: center;
    }

    .section-flex {
        width: 100%;
        font-size: 16px;
    }

    .right-image {
        flex-direction: column;
        margin-top: 30px;
    }

    .img-box {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 24px;
    }

    .img-box img { max-width: 100%; }

    .process { padding: 60px 20px; }
    .process-container { gap: 24px; }
    .process-card { width: 100%; max-width: 380px; }

    .contato h2 { font-size: 28px; }
    .contato p  { font-size: 17px; }

    .btn-location,
    .btn-online { font-size: 15px; }
}

/* ===========================
   MOBILE PEQUENO — até 480px
=========================== */
@media (max-width: 480px) {

    .logo-text h1 { font-size: 16px; letter-spacing: 2px; }
    .linha2       { font-size: 16px; }
    .logo-text p  { font-size: 9px; letter-spacing: 3px; }

    .left-info   { font-size: 22px; }
    .left-info p { font-size: 15px; }

    .location-buttons { flex-direction: column; align-items: center; }

    .btn-location,
    .btn-online {
        text-align: center;
        justify-content: center;
    }

    .process { padding: 50px 16px; }

    .contato    { padding: 50px 16px; }
    .contato h2 { font-size: 22px; }
    .contato p  { font-size: 15px; }

    footer { padding: 30px 16px; }

    .btn-instagram,
    .btn-email,
    .btn-telefone { font-size: 14px; }
}