/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header/Navbar */
.header {
    background-color: #647148;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #EBBF76;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 15px;
    border-radius: 5px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.whatsapp-btn {
    background-color: white;
    color: #25D366 !important;
    padding: 12px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
}

.whatsapp-btn:hover {
    background-color: #25D366;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #EBBF76;
    margin: 3px 0;
    transition: 0.3s;
}

/* Banner Section */
.banner-section {
    margin-top: 80px;
    width: 100%;
    position: relative;
}

.banner-container {
    width: 100%;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Sections */
.section {
    padding: 80px 0;
}

/* Jornada de Cura Section */
.jornada-cura-section {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.jornada-cura-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.jornada-image {
    position: relative;
}

.jornada-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(100, 113, 72, 0.2);
    transition: transform 0.3s ease;
}

.jornada-image img:hover {
    transform: scale(1.02);
}

.jornada-text {
    padding-left: 40px;
}

.jornada-text h2 {
    color: #647148;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 30px;
    text-align: left;
}

.jornada-text h2:after {
    display: none;
}

.jornada-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 0;
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #647148;
    position: relative;
}

.section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #EBBF76;
    margin: 15px auto;
}

/* Bem-vindo Section */
.bemvindo-section {
    background-color: white;
    padding: 100px 0;
}

.bemvindo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.bemvindo-text h2 {
    color: #647148;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
    text-align: left;
}

.bemvindo-text h2:after {
    display: none;
}

.bemvindo-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
}

.bemvindo-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    justify-items: center;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icon-circle {
    width: 148px;
    height: 192px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.icon-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(100, 113, 72, 0.2);
}

.icon-circle img {
    width: 148px;
    height: 192px;
    object-fit: contain;
}



/* Constelação Section */
.constelacao-section {
    background-color: rgba(178, 189, 143, 0.25);
    padding: 100px 0;
}

.constelacao-section h2 {
    color: #2F381A;
    font-weight: 600;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.constelacao-section h2:after {
    display: none;
}

.constelacao-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.constelacao-description {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 60px;
    text-align: center;
}

.video-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.video-wrapper {
    position: relative;
    width: 754px;
    height: 410px;
    background-color: #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(47, 56, 26, 0.2);
    transition: transform 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(47, 56, 26, 0.3);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

/* Agende Section */
.agende-section {
    background-color: #F5F5F5;
    padding: 80px 0;
    text-align: center;
}

.agende-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.agende-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2F381A;
    margin-bottom: 20px;
    line-height: 1.2;
}

.agende-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.agende-btn {
    display: inline-block;
    background-color: #647148;
    color: white;
    padding: 24px 80px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(100, 113, 72, 0.3);
}

.agende-btn:hover {
    background-color: #5a6340;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(100, 113, 72, 0.4);
    color: white;
    text-decoration: none;
}

/* Transformação Section */
.transformacao-section {
    background-color: rgba(235, 191, 118, 0.25);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.transformacao-header {
    max-width: 600px;
    margin-bottom: 60px;
}

.transformacao-subtitle {
    color: #647148;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.transformacao-section h2 {
    color: #2F381A;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
    text-align: left;
}

.transformacao-section h2:after {
    display: none;
}

.transformacao-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.transformacao-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.icon-row {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.icon-row img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.transformacao-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Parte Superior */
.transformacao-top {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 120px;
    margin-bottom: 60px;
    align-items: start;
}

.transformacao-header {
    padding-right: 80px;
    max-width: 800px;
}

.top-images {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.top-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.top-right {
    flex: 1;
}

/* Parte Inferior */
.transformacao-bottom {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-end;
    margin-top: 40px;
}

.bottom-left {
    flex: 1;
    max-width: 692px;
}

.bottom-center {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bottom-right {
    flex: 1;
    max-width: 656px;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.decoration-square {
    position: absolute;
    background-color: #F8D1A0;
    border-radius: 8px;
    z-index: -1;
    opacity: 0.8;
}

/* Dimensões específicas das imagens */
.top-left .image-container:first-child {
    width: 150px;
    height: 170px;
}

.top-left .image-container:first-child img {
    width: 150px;
    height: 170px;
    object-fit: cover;
}

.top-left .image-container:last-child {
    width: 150px;
    height: 225px;
}

.top-left .image-container:last-child img {
    width: 150px;
    height: 225px;
    object-fit: cover;
}

.top-right .image-container {
    width: 400px;
    height: 280px;
}

.top-right .image-container img {
    width: 400px;
    height: 280px;
    object-fit: cover;
}

.bottom-left .image-container {
    width: 692px;
    height: 489px;
}

.bottom-left .image-container img {
    width: 692px;
    height: 489px;
    object-fit: cover;
}

.bottom-center .image-container:first-child {
    width: 223px;
    height: 250px;
}

.bottom-center .image-container:first-child img {
    width: 223px;
    height: 250px;
    object-fit: cover;
}

.bottom-center .image-container:last-child {
    width: 223px;
    height: 338px;
}

.bottom-center .image-container:last-child img {
    width: 223px;
    height: 338px;
    object-fit: cover;
}

.bottom-right .image-container {
    width: 656px;
    height: 465px;
}

.bottom-right .image-container img {
    width: 656px;
    height: 465px;
    object-fit: cover;
}

/* Decoração dos quadrados */
.square-1 {
    width: 60px;
    height: 60px;
    top: -15px;
    right: -15px;
}

.square-2 {
    width: 80px;
    height: 80px;
    bottom: -20px;
    left: -20px;
}

.square-3 {
    width: 50px;
    height: 50px;
    top: -12px;
    left: -12px;
}

.square-4 {
    width: 70px;
    height: 70px;
    bottom: -18px;
    right: -18px;
}

.square-5 {
    width: 55px;
    height: 55px;
    top: -14px;
    right: -14px;
}

.square-6 {
    width: 90px;
    height: 90px;
    top: -25px;
    left: -25px;
}

.square-7 {
    width: 75px;
    height: 75px;
    bottom: -20px;
    right: -20px;
}

/* Depoimentos Section */
.depoimentos-section {
    background-color: white;
    padding: 100px 0;
}

.depoimentos-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.depoimentos-subtitle {
    color: #647148;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.depoimentos-section h2 {
    color: #2F381A;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 0;
    text-align: center;
}

.depoimentos-section h2:after {
    display: none;
}

.depoimentos-videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-depoimento {
    position: relative;
}

.video-wrapper-depoimento {
    position: relative;
    width: 370px;
    height: 506px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.video-wrapper-depoimento:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.video-wrapper-depoimento iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-nome {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(100, 113, 72, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
}

/* Contato Section */
.contato-section {
    background-color: #647148;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contato-content {
    max-width: 600px;
    margin: 0 auto;
}

.contato-section h2 {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contato-section p {
    color: #F8D1A0;
    font-size: 18px;
    margin-bottom: 40px;
}

.social-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn-contato {
    background-color: #25D366;
    color: white;
}

.whatsapp-btn-contato:hover {
    background-color: #20B954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
    color: white;
    text-decoration: none;
}

.social-btn i {
    font-size: 24px;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: #E6B069;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(235, 191, 118, 0.3);
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #647148;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 10px 0;
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 15px;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .section h2 {
        font-size: 2rem;
    }

    .banner-image {
        object-fit: contain;
    }

    .contato-section {
        padding: 60px 0;
    }

    .contato-section h2 {
        font-size: 28px;
    }

    .social-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .social-btn {
        padding: 15px 30px;
        font-size: 16px;
    }

    .constelacao-section h2 {
        font-size: 2rem;
    }

    .constelacao-description {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .video-wrapper {
        width: 100%;
        height: 300px;
        max-width: 500px;
    }

    .agende-section {
        padding: 60px 0;
    }
    
    .agende-section h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .agende-section p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .agende-btn {
        padding: 15px 40px;
        font-size: 16px;
    }

    .jornada-cura-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .jornada-text {
        padding-left: 0;
    }

    .jornada-text h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .jornada-text p {
        text-align: left;
    }

    .bemvindo-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .bemvindo-text h2 {
        font-size: 2rem;
        text-align: center;
    }

    .bemvindo-text p {
        text-align: left;
    }

    .bemvindo-icons {
        gap: 30px;
    }

    .transformacao-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .transformacao-icons {
        gap: 15px;
    }

    .icon-row {
        font-size: 13px;
        gap: 12px;
    }

    .icon-row img {
        width: 20px;
        height: 20px;
    }

    .transformacao-header {
        padding-right: 0;
    }

    .top-images {
        flex-direction: column;
        align-items: center;
    }

    .transformacao-bottom {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .top-left, .bottom-center {
        align-items: center;
    }

    .image-container,
    .top-left .image-container:first-child,
    .top-left .image-container:last-child,
    .top-right .image-container,
    .bottom-left .image-container,
    .bottom-center .image-container:first-child,
    .bottom-center .image-container:last-child,
    .bottom-right .image-container {
        width: 100%;
        height: 250px;
        max-width: 400px;
    }

    .image-container img,
    .top-left .image-container:first-child img,
    .top-left .image-container:last-child img,
    .top-right .image-container img,
    .bottom-left .image-container img,
    .bottom-center .image-container:first-child img,
    .bottom-center .image-container:last-child img,
    .bottom-right .image-container img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .decoration-square {
        display: none;
    }

    .depoimentos-section h2 {
        font-size: 2rem;
    }

    .depoimentos-videos {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .video-wrapper-depoimento {
        height: 300px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .container {
        padding: 0 15px;
    }

    .section {
        padding: 60px 0;
    }
}

@media screen and (max-width: 480px) {
    .nav-logo img {
        height: 40px;
    }

    .nav-container {
        height: 70px;
    }

    .banner-section {
        margin-top: 70px;
    }

    .section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .service-card {
        padding: 20px;
    }

    .bemvindo-text p {
        font-size: 1rem;
    }

    .constelacao-section h2 {
        font-size: 1.7rem;
    }

    .constelacao-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .video-wrapper {
        height: 250px;
        margin: 0 15px;
    }

    .agende-section {
        padding: 40px 0;
    }
    
    .agende-section h2 {
        font-size: 24px;
    }
    
    .agende-section p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .agende-btn {
        padding: 12px 30px;
        font-size: 15px;
    }

    .constelacao-section {
        padding: 60px 0;
    }

    .transformacao-section h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .transformacao-description {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .transformacao-gallery {
        padding: 0 15px;
    }

    .transformacao-section {
        padding: 60px 0;
    }

    .depoimentos-section {
        padding: 60px 0;
    }

    .depoimentos-section h2 {
        font-size: 1.8rem;
    }

    .video-wrapper-depoimento {
        height: 250px;
        margin: 0 10px;
    }

    .depoimentos-header {
        padding: 0 15px;
    }

    .transformacao-section h2 {
        font-size: 32px;
        text-align: center;
        line-height: 1.3;
    }

    .transformacao-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .transformacao-icons {
        gap: 12px;
    }

    .icon-row {
        font-size: 12px;
        gap: 10px;
        justify-content: center;
    }

    .icon-row img {
        width: 18px;
        height: 18px;
    }

    .transformacao-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .transformacao-header {
        padding-right: 0;
    }

    .top-images {
        flex-direction: column;
        align-items: center;
    }

    .transformacao-bottom {
        grid-column: 1;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .top-left, .bottom-center {
        align-items: center;
    }

    .image-container,
    .top-left .image-container:first-child,
    .top-left .image-container:last-child,
    .top-right .image-container,
    .bottom-left .image-container,
    .bottom-center .image-container:first-child,
    .bottom-center .image-container:last-child,
    .bottom-right .image-container {
        width: 100%;
        height: 250px;
        max-width: 400px;
    }

    .image-container img,
    .top-left .image-container:first-child img,
    .top-left .image-container:last-child img,
    .top-right .image-container img,
    .bottom-left .image-container img,
    .bottom-center .image-container:first-child img,
    .bottom-center .image-container:last-child img,
    .bottom-right .image-container img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .decoration-square {
        display: none;
    }

    .jornada-text h2 {
        font-size: 1.6rem;
    }

    .jornada-text p {
        font-size: 1rem;
    }

    .jornada-cura-section {
        padding: 60px 0;
    }

    .bemvindo-section {
        padding: 60px 0;
    }

    .bemvindo-text h2 {
        font-size: 1.8rem;
    }

    .bemvindo-icons {
        gap: 25px;
    }

    .icon-circle {
        width: 118px;
        height: 154px;
    }

    .icon-circle img {
        width: 118px;
        height: 154px;
    }



    .whatsapp-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        padding: 10px;
    }

    .contato-section {
        padding: 40px 0;
    }

    .contato-section h2 {
        font-size: 24px;
    }

    .contato-section p {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .social-btn {
        padding: 12px 25px;
        font-size: 14px;
        gap: 10px;
    }

    .social-btn i {
        font-size: 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animações de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 1s ease-out;
}
