/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #0b0b0b;
    background-color: #f4efe6;
}

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

/* Tipografia */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #c6a14a;
    color: #0b0b0b;
}

.btn-primary:hover {
    background-color: #b8934a;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #c6a14a;
    border: 2px solid #c6a14a;
}

.btn-secondary:hover {
    background-color: #c6a14a;
    color: #0b0b0b;
}

/* Navegação */
.navbar {
    background-color: #0b0b0b;
    padding: 1rem 0;
    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;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #f4efe6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #c6a14a;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #f4efe6;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4b2e83 0%, #1c4b5e 100%);
    color: #f4efe6;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    color: #c6a14a;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-logo-img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Seções */
section {
    padding: 80px 0;
}

.section-title {
    color: #4b2e83;
    margin-bottom: 3rem;
}

/* Sobre Section */
.sobre {
    background-color: #f4efe6;
}

.quem-busca {
    margin-bottom: 4rem;
}

.subsection-title {
    color: #5c1a42;
    text-align: center;
    margin-bottom: 3rem;
}

.clientes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.cliente-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.cliente-item:hover {
    transform: translateY(-5px);
}

.cliente-item i {
    font-size: 3rem;
    color: #c6a14a;
    margin-bottom: 1rem;
}

.fundadora-section {
    margin-bottom: 4rem;
}

.fundadora-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.fundadora-text p {
    margin-bottom: 1rem;
    text-align: justify;
}

.fundadora-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.valor-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #c6a14a;
}

.valor-card h4 {
    color: #4b2e83;
    margin-bottom: 1rem;
}

.valor-card ul {
    list-style: none;
    padding-left: 0;
}

.valor-card li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.valor-card li:before {
    content: "•";
    color: #c6a14a;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Serviços Section */
.servicos {
    background: linear-gradient(135deg, #1c4b5e 0%, #4b2e83 100%);
    color: #f4efe6;
}

.servicos .section-title {
    color: #c6a14a;
}

.servicos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.servicos-text h3 {
    color: #c6a14a;
    margin-bottom: 2rem;
}

.servicos-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.servico-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-5px);
}

.servico-card i {
    font-size: 3rem;
    color: #c6a14a;
    margin-bottom: 1rem;
}

.servico-card h4 {
    color: #0b0b0b;
    margin-bottom: 0.5rem;
}

.servico-card p {
    color: #0b0b0b;
}

/* Criação de Conteúdo Section */
.conteudo {
    background-color: #f4efe6;
}

.conteudo-content-centered {
    text-align: center;
    margin-bottom: 4rem;
}

.conteudo-text-centered {
    max-width: 800px;
    margin: 0 auto;
}

.conteudo-text-centered p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.conteudo-servicos ul {
    list-style: none;
    padding: 0;
}

.conteudo-servicos li {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    border-left: 5px solid #5c1a42;
}

.conteudo-servicos li h4 {
    color: #4b2e83;
    margin-bottom: 0.5rem;
}

.conteudo-servicos li p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Vídeos Section */
.videos {
    background: linear-gradient(135deg, #1c4b5e 0%, #4b2e83 100%);
    color: #f4efe6;
}

.videos .section-title {
    color: #c6a14a;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.video-card iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Mentoria Section */
.mentoria {
    background-color: #f4efe6;
}

.metodo-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #5c1a42;
    font-style: italic;
    margin-bottom: 3rem;
}

.depoimento-section {
    margin-bottom: 4rem;
    text-align: center;
}

.video-depoimento {
    margin: 2rem 0;
}

.depoimento-video {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.depoimento-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.rose-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.rose-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 5px solid #c6a14a;
    transition: transform 0.3s ease;
}

.rose-card:hover {
    transform: translateY(-10px);
}

.rose-letter {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c6a14a, #b8934a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    font-family: 'Playfair Display', serif;
}

.rose-card h4 {
    color: #4b2e83;
    margin-bottom: 1rem;
}

.mentoria-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.processo-mentoria {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.processo-mentoria h4 {
    color: #4b2e83;
    margin-bottom: 1.5rem;
}

.processo-mentoria ul {
    list-style: none;
}

.processo-mentoria li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.processo-mentoria i {
    color: #c6a14a;
}

.cta-box {
    background: linear-gradient(135deg, #1c4b5e, #4b2e83); /* Cor alterada */
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-box h4 {
    color: #c6a14a;
    margin-bottom: 1rem;
}

.cta-quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #f4efe6;
}

/* Contato Section */
.contato {
    background: linear-gradient(135deg, #1c4b5e 0%, #0b0b0b 100%);
    color: #f4efe6;
}

.contato .section-title {
    color: #c6a14a;
}

.contato-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contato-item i {
    font-size: 2rem;
    color: #c6a14a;
}

.contato-item a {
    color: #f4efe6;
    text-decoration: none;
}

.contato-item a:hover {
    color: #c6a14a;
}

.redes-sociais h3 {
    color: #c6a14a;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #f4efe6;
    text-decoration: none;
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(198,161,74,0.2);
    transform: translateX(10px);
}

.social-link i {
    font-size: 1.5rem;
    color: #c6a14a;
}

.contato-form {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contato-form h3 {
    color: #c6a14a;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background: rgba(255,255,255,0.9);
    font-size: 1rem;
    color: #0b0b0b;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px #c6a14a;
}

/* Footer */
.footer {
    background-color: #0b0b0b;
    color: #f4efe6;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

/* Responsividade */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #0b0b0b;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .fundadora-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .servicos-content {
        grid-template-columns: 1fr;
    }
    
    .mentoria-info {
        grid-template-columns: 1fr;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .rose-cards {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .video-card iframe {
        height: 300px;
    }
}



.fundadora-quote-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.fundadora-quote-img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}



.fundadora-quote-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.fundadora-quote-img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.fundadora-quote-text {
    font-style: italic;
    text-align: center;
    font-size: 1.1rem;
    color: #4b2e83;
    line-height: 1.6;
}

.valores-grid-reorganized {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

@media (min-width: 769px) {
    .valores-grid-reorganized {
        grid-template-columns: 2fr 1fr; /* Ajuste para acomodar a nova seção */
        align-items: start;
    }

    .fundadora-quote-section {
        margin-top: 0;
    }
}

