@font-face {
    font-family: 'The Seasons';
    src: url('TheSeasons-Regular.woff2') format('woff2'); /* Aponte para o arquivo real */
    font-weight: normal;
    font-style: normal;
}

:root {
    /* Cores */
    --color-primary: #588fff;
    --color-primary-light: #eaf2ff;
    --color-text-dark: #333333;
    --color-text-light: #555555;
    --color-white: #ffffff;
    
    /* Gradientes */
    --grad-btn: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    --grad-bg-home: linear-gradient(180deg, var(--color-primary-light) 0%, var(--color-white) 100%);
    
    /* Tipografia */
    --font-heading: 'The Seasons', 'Playfair Display', serif; 
    --font-body: 'Poppins', sans-serif;
}

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

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

.title-serif {
    font-family: var(--font-heading);
    font-weight: normal;
}

.text-center { text-align: center; }
.text-white { color: var(--color-white); }
.text-blue { color: var(--color-primary); }

/* Componentes Padrões */
.logo-small, img{
    display: flex;
    width: 60px;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    object-fit: cover;
}

.placeholder-img {
    background-color: #d1d8e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.9rem;
    border: 2px dashed #a5b1c2;
    object-fit: cover;
}

/* Botões */
.btn-primary {
    display: inline-block;
    background: var(--grad-btn);
    color: var(--color-white); 
    font-weight: 500;
    padding: 14px 35px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(88, 143, 255, 0.3);
    text-shadow: 5px 4px 10px rgba(0, 0, 0, 0.3);

    white-space: nowrap;
}

.btn-primary:hover { 
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 143, 255, 0.4);
    text-decoration: none;
}

.btn-small { padding: 10px 24px; font-size: 0.9rem; }

.header {
    background: var(--color-white);
    padding: 15px 30px;
    position: fixed;
    top: 75px;
    left: 50%;
    transform: translateX(-50%); 
    width: calc(100% - 80px); 
    max-width: 1200px;
    border-radius: 50px; 
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    
}

.header.scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0; 
    padding: 15px 20%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-small{
    padding: 0 60px 0px 30px;
}

.nav {
    display: flex;
    gap: 40px;
    padding: 0 60px;
}

.nav a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-text-dark);
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--color-primary);
}

.hamburger {
    display: none;
    cursor: pointer;
    border: none;
    background: transparent;
    gap: 5px;
    flex-direction: column;
    z-index: 1001;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

#btn-agendar-mobile {
    display: none;
}


.hero {
    padding: 120px 40px 80px 40px;
    position: relative;
    overflow: hidden;
}
.hero-container {
    background: var(--grad-bg-home);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 60px 110px;
    border-radius: 40px;
}
.hero-left { flex: 1; max-width: 400px; }
.hero-center { flex: 1; display: flex; justify-content: center; }
.hero-right { flex: 1; display: flex; justify-content: flex-end; position: relative;}

.hero-center .imagem-central{
    width: 100%;    
    height: 100%;
    object-fit: cover;
    border-radius: 120px;
    overflow: hidden;
}

.hero-center .imagem-central img{
    width: 100%;
    scale: 1.2;
    position: relative;
    top: -5px;
}

.hero-left h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
    color: var(--color-text-dark);
}


.services-list { margin-bottom: 30px; }

.services-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
}

.services-list li::before {
    content: "•";
    color: var(--color-text-dark);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.quote {
    font-size: 1rem;
    margin-bottom: 25px;
    color: var(--color-text-light);
    line-height: 1.5;
}
.credentials { margin-bottom: 35px; font-size: 0.85rem; color: var(--color-text-light); }

.main-photo {
    width: 100%;
    max-width: 400px;
    height: 550px;
    border-radius: 200px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.bg-blurred-logo {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    background: url('caminho-pro-seu-logo.png') no-repeat center;
    background-size: contain;
    opacity: 0.15;
    filter: blur(8px);
    z-index: 0;
}
.badge-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 1;
}
.badge,
.badge-certificados{
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    padding: 25px 40px;
    border-radius: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
    font-size: 0.95rem;
    width: 260px;
    color: var(--color-text-dark);
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 5px #588fff;
  }
  50% {
    box-shadow: 0 0 20px #eaf2ff;
  }
  100% {
    box-shadow: 0 0 5px #588fff;
  }
}

.badge-certificados {
  transition: transform 0.3s ease;
  animation: pulse-glow 2s infinite ease-in-out;
  cursor: pointer;
}

.badge-certificados:hover {
  transform: scale(1.1);
  animation-play-state: paused;
  color: var(--color-white);
  background-image: var(--grad-btn);
}


.carousel-bar {
    background: var(--color-white); 
    padding: 50px 0; 
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0 auto;
    max-width: 1250px;
}
.carousel-track {
    display: flex;
    gap: 20px; 
    align-items: center;
    width: max-content;
}
.carousel-item {
    background: var(--grad-btn);
    color: var(--color-white);
    padding: 12px 30px;
    border-radius: 50px; 
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    white-space: nowrap;
    transition: all 0.5s ease;
    opacity: 0.4; 
    transform: scale(0.85); 
    cursor: pointer;
    }
.carousel-item.active {
    opacity: 1;
    transform: scale(1.15); 
    box-shadow: 0 10px 20px rgba(88, 143, 255, 0.3);
    z-index: 2;
}


.about {
    padding: 100px 0;
}
.about-header { text-align: center; margin-bottom: 60px; }
.about-header h2 { font-size: 2.8rem; margin-bottom: 10px; color: var(--color-text-dark); }
.about-header p { color: var(--color-text-light); }

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}
.info-card {
    background: var(--color-primary-light);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}
.info-card:hover { transform: translateY(-5px); }
.icon-placeholder {
    width: 60px; height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
}
.info-card h4 { color: var(--color-primary); padding: 10px 0; font-weight: 400;}
.info-card p { font-size: 0.9rem; line-height: 1.5; }

.about-profile {
    display: flex;
    align-items: center;
    gap: 50px;
    background: var(--color-white);
}
.profile-photo {
    width: 250px; height: 250px;
    border-radius: 50%;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.profile-text { flex: 1; }
.profile-text h3 { font-size: 2.2rem; margin-bottom: 20px; }
.profile-text p { margin-bottom: 15px; color: var(--color-text-light); font-size: 0.95rem; }

.schedule-box {
    background: var(--color-primary-light);
    padding: 35px;
    border-radius: 20px;
    width: 320px;
    flex-shrink: 0;
}
.schedule-box h4 { margin-bottom: 15px; font-size: 1.5rem;}
.schedule-box p { font-size: 0.85rem; margin-bottom: 20px; color: var(--color-text-light); }
.contact-list { margin-top: 20px; font-size: 0.9rem; }
.contact-list li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }


.steps-bar {
    background: var(--color-primary-light);
    padding: 40px 0;
    text-shadow: 5px 3px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.3);
}
.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.step {
    background: var(--grad-btn);
    color: var(--color-white);
    padding: 15px 40px;
    border-radius: 50px;
    text-align: center;
    font-weight: 400;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(88, 143, 255, 0.2);
    cursor: pointer;
}
.step-arrow { color: var(--color-primary); opacity: 0.5; font-size: 1.2rem; }

.methods {
    padding: 100px 0;
    position: relative;
    background-image: url(./assets/imgs_passos/Fundo-passos.webp);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    z-index: -1;

    background-position-y: -350px;
    background-repeat: no-repeat;
    font-size: 25px;
}

.methods-container {
    display: flex;
    flex-direction: column;
    gap: 120px;
    max-width: 900px;
    margin: 0 auto;
}

.method-text.card-white li {
    color: var(--color-text-dark);

}

.method-row {
    display: flex;
    align-items: center;
    border-radius: 100px;
    gap: 10px;
    background-color: var(--color-white);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);

}
.method-row.reverse { flex-direction: row-reverse; }

.method-img img{
    width: 350px; height: 350px;
    border-radius: 100px;
    padding: 20px;
    flex-shrink: 0;
}

.card-white {
    flex: 1;
}

.text-center-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 200px; 
    
}

.card-white h4 { font-size: 1.8rem; margin-bottom: 20px; line-height: 1.2; }
.card-white ul { padding-left: 20px; list-style-type: none; }
.card-white ul li { position: relative; margin-bottom: 10px; color: var(--color-text-light); }
.card-white ul li::before { content: "•"; color: var(--color-text-dark); position: absolute; left: -15px;}


.testimonials {
    background-image: url(./assets/imgs_passos/Fundo-passos.webp);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-position-y: -350px;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.testimonials h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    text-shadow: 5px 3px 10px rgba(0, 0, 0, 0.3);
}

.testimonials-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; 
    -ms-overflow-style: none;  
    padding: 20px 10px; 
    align-items: stretch; 
}
.testimonials-track::-webkit-scrollbar {
    display: none; 
}


.testimonial-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    
    width: 380px; 
    min-width: 380px;
    max-height: 400px;
    flex-shrink: 0;
    scroll-snap-align: center;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 280px; 
}

.testimonial-card h4 {
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-text-dark);
}
.testimonial-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-y: auto;
    scrollbar-color:  #5890ff65 transparent;
    scrollbar-width: thin;
}


.slider-btn {
    background: var(--color-white);
    color: var(--color-primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
}
.slider-btn:hover { 
    transform: scale(1.1); 
    background: var(--color-primary-light);
}
.prev-btn { left: -25px; }
.next-btn { right: -25px; }


.footer {
    background: var(--color-white);
}

.footer-logo {
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 60px;
}

.logo-large img{
    width: 150px;
    margin: 10px auto 0 auto;
    font-size: 0.9rem;
    object-fit: cover;
    font-size: 4rem;
    padding: 60px 0 20px 0;
}

.footer-logo h2 { font-size: 2.5rem; margin-bottom: 5px; }
.footer-logo p { color: var(--color-text-light); }

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}
.align-left { text-align: left; }
.align-center { text-align: center; }
.align-right { text-align: right; }

.footer-col h4 { font-size: 1.3rem; margin-bottom: 25px; }
.footer-col ul li { margin-bottom: 12px; font-size: 0.95rem; color: var(--color-text-light); }
.footer-col.align-right a:hover { color: var(--color-primary); text-decoration: underline; }
.footer-col.align-center p { margin-bottom: 25px; font-weight: 400; color: var(--color-text-dark); line-height: 1.5; }

.footer-creditos {
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    justify-content: space-between;
    padding: 18px 50px;
    font-size: 0.9rem;
}


.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}


.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto; 
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-content.modal-largo {
    max-width: 900px;
}

.close-modal {
    color: #999;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--color-primary);
}

.modal-body {
    margin-top: 20px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.modal-body p {
    margin-bottom: 15px;
}


.certificados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.certificado-item p {
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-dark);
}


.certificados-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    

    column-count: 2;
    column-gap: 20px;
}

.certificados-list li {
    
    break-inside: avoid; 
    margin-bottom: 10px;
}

.certificados-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background-color: var(--color-primary-light);
    border-radius: 10px;
    color: var(--color-text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.certificados-list li a:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(88, 143, 255, 0.2);
}

.cert-icon {
    font-size: 1.2rem;
    opacity: 0.8;
}



@media (max-width: 1024px) {
    .nav{
        padding: 0 50px;
    }

    .hero-container {
        flex-direction: column; 
        text-align: center;
    }

    .hero-left, .hero-center, .hero-right {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .services-list li {
        display: inline-block;
        margin: 0 10px 10px;
    }

    .services-list li::before { display: none; }
    .bg-blurred-logo { top: 0; right: 50%; transform: translateX(50%); }
    
    .info-grid { grid-template-columns: repeat(2, 1fr); }
    .about-profile { flex-direction: column; text-align: center; }
    
    .method-row, .method-row.reverse {
        text-align: center;
    }

    .method-img { width: 100%; max-width: 400px; height: auto; aspect-ratio: 4/3; }
    .card-white { width: 100%; }
    .card-white ul { padding-left: 0; }
    .card-white ul li::before { display: none; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .align-left, .align-right { text-align: center; }

    

    .testimonial-card { 
        min-width: calc(50% - 15px);
    }
}


@media (max-width: 768px) {
    /* --- ELEMENTOS GERAIS DO SITE NO CELULAR --- */
    .container {
        padding: 30px 20px;
    }

    .hero { padding-top: 200px; }
    .hero-left h1 { font-size: 2.5rem; }
    .main-photo { border-radius: 100px; }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-box { width: 100%; }
    
    .steps-container { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); margin: 5px 0; }
    .step { width: 100%; max-width: 300px; }
    
    .slider-btn { display: none; } 
    .footer-bottom { flex-direction: column; text-align: center; gap: 15px; border-radius: 20px; padding: 20px; }

    .testimonial-card {
        width: auto;
        min-width: calc(100vw - 60px); 
        max-width: calc(100vw - 60px);
    } 

    .certificados-list {
        column-count: 1;
        display: flex;
    }
    
    .header {
        padding: 15px 20px; 
        width: calc(100% - 20px); 
        border-radius: 20px; 
        top: 20px;
        transition: all 0.4s ease;
    }

    .header .header-container{
        justify-content: center;
    }

    .logo-small {
        order: 1;
        padding: 0;
    }

    .header img{
        width: 50px;
    }

    
    .header-container {
        display: flex;
        flex-wrap: wrap; 
        justify-content: space-between;
        align-items: center;
    }


    .hamburger {
        order: 2;
        display: flex;
        opacity: 0;
        visibility: hidden;
        transform: translateX(10px);
        transition: all 0.4s ease;
        display: none;
    }
    
    .nav {
        order: 3;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 15px 15px;
        max-height: 400px;
        visibility: visible;
        transition: all 0.4s ease;
        overflow: hidden;
    }

    #btn-agendar-header {
        display: none !important;
    }

    #btn-agendar-mobile {
        display: inline-block;
        width: 100%;
        max-width: 250px;
        text-align: center;
        margin-top: 10px;
    }


    .header.scrolled{
        width: 100vw;
        height: 60px;
        padding: 10px 20px;
    }

    .scrolled .header-container {
        justify-content: space-between;
    }

    .header.scrolled .hamburger {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        display: inline-flex;
    }

    .header.scrolled .nav:not(.active) {
        max-height: 0;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        padding: 0;
    }

    .header.scrolled #btn-agendar-header {
        max-height: 0;
        margin-top: 0;
        padding-top: 0;
        padding-bottom: 0;
        opacity: 0;
        visibility: hidden;
    }


    .header.scrolled .nav.active {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        max-height: 400px;
        opacity: 1;
        visibility: visible;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .hero{
        padding: 120px 20px 80px 20px;
    }

    .hero-container li{
        padding-left: 0;
    }

    .about-header h2 { font-size: 2.2rem; }

    .methods{
        background-position: center;
        text-align: center;
    }

    .method-row, .method-row.reverse {
        flex-direction: column;
    }

    .method-img img{
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 4/3;
        margin: 0 auto;
    }

    .method-text {
        padding: 0 50px 20px 50px;
    }

    .testimonials {
        background-position: center;
    }

    .testimonial img {
        width: 100%;
        margin: 0 auto;
    }

    .footer-creditos{
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

