.elementor-9 .elementor-element.elementor-element-2a1eaf59{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-9 .elementor-element.elementor-element-4112994e > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for text-editor, class: .elementor-element-4112994e *//* Cores do site:
   #131109 - Preto
   #F0EFE3 - Branco/Bege claro
   #72726F - Cinza
   #FD9B2F - Laranja
*/

/* Estilos críticos para o carregamento inicial */
@media screen {

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: #131109;
    background-color: #F0EFE3;
}

body.menu-open {
    overflow: hidden;
}

/* Container geral */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
/* Esconder elementos do menu mobile em desktop */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu {
    display: none;
}

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 20px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-nav a {
    color: #131109;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #FD9B2F;
}

.btn-contact {
    background-color: #131109;
    color: #F0EFE3;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-contact:hover {
    background-color: #2a2720;
    transform: translateY(-2px);
}

/* Seção Hero */
.hero {
    background-color: #F0EFE3;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Lado esquerdo - Texto */
.hero-text {
    flex: 1;
    max-width: 550px;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid #131109;
    margin-bottom: 24px;
    font-size: 14px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #4CAF50; /* Verde para "disponível" */
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
}

.hero-text h1 {
    font-family: 'Prata', serif;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: normal;
}

.subtitle {
    font-size: 24px;
    color: #72726F;
    margin-bottom: 32px;
}

.cta-container {
    margin-top: 32px;
}

.button-wrapper {
    display: inline-block;
    text-align: center;
}

.cta-button {
    background-color: #131109;
    color: #F0EFE3;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #2a2720;
    transform: translateY(-2px);
}

.cta-subtext {
    margin-top: 8px;
    font-size: 14px;
    color: #72726F;
}

/* Lado direito - Imagem */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    max-width: 75%;
    height: auto;
    position: relative;
    z-index: 1;
}

.dotted-element {
    position: absolute;
    width: 250px;
    height: 400px;
    right: 0;
    top: 0;
    background-image: radial-gradient(#131109 1px, transparent 2px);
    background-size: 15px 15px;
    z-index: 0;
    transform: translate(-10%, -10%);
    opacity: 0.3;
}

/* Responsividade */
@media (max-width: 992px) {
    /* Header responsivo */
    .main-nav, .contact-btn {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1000;
    }
    
    .hamburger {
        width: 30px;
        height: 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .hamburger span {
        display: block;
        height: 2px;
        width: 100%;
        background-color: #131109;
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #F0EFE3;
        padding: 80px 40px 40px;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-menu.active {
        right: 0;
        display: block;
    }
    
    .mobile-menu ul {
        list-style: none;
        padding: 0;
    }
    
    .mobile-menu li {
        margin-bottom: 20px;
    }
    
    .mobile-menu a {
        color: #131109;
        text-decoration: none;
        font-size: 18px;
        display: block;
        padding: 10px 0;
    }
    
    .mobile-contact-btn {
        display: inline-block;
        background-color: #131109;
        color: #F0EFE3 !important;
        padding: 12px 24px !important;
        border-radius: 50px;
        margin-top: 10px;
    }
    
    /* Esconder rolagem quando o menu estiver aberto */
    body.menu-open {
        overflow: hidden;
    }
    
    
    

    
    /* Hero responsivo */
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .hero-image {
        order: 2;
        margin-bottom: 40px;
    }
    
    .hero {
        padding-bottom: 60px;
    }
    
    .dotted-element {
        width: 180px;
        height: 300px;
        transform: translate(20%, -10%);
    }
    
    .availability-badge {
        margin: 0 auto 24px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .subtitle {
        font-size: 20px;
    }
    
    /* Ajuste para o padding-top do hero para compensar o header */
    .hero {
        padding-top: 80px;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 30px;
    }
    
    .btn-contact {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .dotted-element {
        width: 120px;
        height: 200px;
        transform: translate(10%, -5%);
    }
}

/* Seção de frase de apoio */
.quote-section {
    background-color: #FD9B2F;
    padding: 100px 0;
    text-align: center;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-section h2 {
    font-family: 'Prata', serif;
    font-size: 48px;
    color: #F0EFE3;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: normal;
}

.quote-section p {
    font-size: 20px;
    color: #F0EFE3;
    opacity: 0.9;
}

/* Responsividade para a seção de frase */
@media (max-width: 768px) {
    .quote-section {
        padding: 70px 0;
    }
    
    .quote-section h2 {
        font-size: 36px;
    }
    
    .quote-section p {
        font-size: 18px;
    }
}

/* Seção Sobre Mim */
.about-section {
    background-color: #F0EFE3;
    padding: 100px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 75%;
    height: auto;
    border-radius: 8px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: 'Prata', serif;
    font-size: 42px;
    color: #131109;
    margin-bottom: 8px;
    font-weight: normal;
}

.profession {
    font-size: 16px;
    color: #72726F;
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.about-description p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #72726F;
}

.about-description {
    position: relative;
}

.scrollable-text {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 15px;
    padding-bottom: 30px;
    margin-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: #FD9B2F #F0EFE3;
}

.about-description::after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, rgba(240, 239, 227, 0), rgba(240, 239, 227, 0.9));
    pointer-events: none;
    z-index: 1;
}

.scrollable-text::-webkit-scrollbar {
    width: 8px;
}

.scrollable-text::-webkit-scrollbar-track {
    background: #F0EFE3;
    border-radius: 10px;
}

.scrollable-text::-webkit-scrollbar-thumb {
    background-color: #FD9B2F;
    border-radius: 10px;
    border: 2px solid #F0EFE3;
}

.scrollable-text p:last-child {
    margin-bottom: 5px;
}

.about-cta {
    margin-top: 32px;
}

/* Responsividade para a seção Sobre */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto 40px;
    }
    
    .about-text h2 {
        font-size: 36px;
    }
}

/* Seção de frase de apoio (seção 2) */
.quote-section {
    background-color: #FD9B2F;
    padding: 100px 0;
    text-align: center;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-section h2 {
    font-family: 'Prata', serif;
    font-size: 48px;
    color: #F0EFE3;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: normal;
}

.quote-section p {
    font-size: 20px;
    color: #F0EFE3;
    opacity: 0.9;
}

/* Responsividade para a seção de frase */
@media (max-width: 768px) {
    .quote-section {
        padding: 70px 0;
    }
    
    .quote-section h2 {
        font-size: 36px;
    }
    
    .quote-section p {
        font-size: 18px;
    }
}

/* Seção de frase pequena */
.quote-small-section {
    background-color: #131109;
    padding: 60px 0;
    text-align: center;
}

.quote-small-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-text {
    font-family: 'Prata', serif;
    font-size: 28px;
    color: #F0EFE3;
    margin-bottom: 16px;
    line-height: 1.4;
    font-weight: normal;
    font-style: italic;
}

.quote-author {
    font-size: 16px;
    color: #FD9B2F;
    font-weight: 500;
}

/* Seção Quote */
.quote-section {
    background-color: #FD9B2F;
    padding: 80px 0;
}

.quote-section-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.quote-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.quote-content h2, .quote-content p {
    text-align: left;
    width: 100%;
    max-width: 450px;
}

.quote-content h2 {
    font-family: 'Prata', serif;
    font-size: 42px;
    color: #131109;
    margin-bottom: 20px;
    font-weight: normal;
    line-height: 1.2;
}

.quote-content p {
    font-size: 18px;
    color: #131109;
    line-height: 1.6;
}

.form-content {
    flex: 1;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-redirect-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
}

.form-redirect-container h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    color: #131109;
    margin-bottom: 16px;
    font-weight: 500;
}

.form-redirect-container p {
    font-size: 16px;
    color: #72726F;
    margin-bottom: 30px;
    max-width: 400px;
}

.form-redirect-button {
    padding: 16px 32px;
    font-size: 16px;
    margin-top: 10px;
    min-width: 200px;
}

/* Responsividade para a seção quote */
@media (max-width: 992px) {
    .quote-section-content {
        flex-direction: column;
    }
    
    .quote-content, .form-content {
        max-width: 100%;
    }
    
    .quote-content {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .quote-section {
        padding: 60px 0;
    }
    
    .quote-content h2 {
        font-size: 36px;
    }
    
    .quote-content p {
        font-size: 16px;
    }
}

/* Responsividade para a seção de frase pequena */
@media (max-width: 768px) {
    .quote-small-section {
        padding: 40px 0;
    }
    
    .quote-text {
        font-size: 22px;
    }
}

/* Seção FAQ */
.faq-section {
    background-color: #F0EFE3;
    padding: 100px 0;
}

.section-title {
    font-family: 'Prata', serif;
    font-size: 42px;
    color: #131109;
    text-align: center;
    margin-bottom: 60px;
    font-weight: normal;
}

.faq-container {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.faq-column {
    flex: 1;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.faq-question {
    padding: 20px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #131109;
    margin: 0;
}

.faq-icon {
    font-size: 24px;
    color: #131109;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: #72726F;
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

.faq-cta p {
    font-size: 18px;
    color: #131109;
    margin-bottom: 20px;
}

/* Responsividade para a seção FAQ */
@media (max-width: 768px) {
    .faq-container {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
}

/* Footer */
.main-footer {
    background-color: #131109;
    padding: 60px 0 30px;
    color: #F0EFE3;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.social-links {
    display: flex;
    gap: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    color: #F0EFE3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #FD9B2F;
}

.footer-button {
    background-color: #F0EFE3;
    color: #131109;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.footer-button:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
}

.credits {
    color: rgba(255, 255, 255, 0.7);
}

.credits a {
    color: #FD9B2F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.credits a:hover {
    color: #F0EFE3;
}

/* Fechamento da media query para estilos críticos */
}

/* Responsividade para o footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .footer-left {
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}/* End custom CSS */