:root {
    --primary-color: #FF1B39;
    --primary-color-rgb: 255, 27, 57;
    --secondary-color: #FFFFFF;
    --accent-color: #27ae60;
    --text-color: #333;
    --light-bg-color: #f7f7f7;
    --medium-bg-color: #ffffff;
    --white-color: #fff;
    --black-color: #000;
    --whatsapp-green: #25d399;
    --whatsapp-green-dark: #219971;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; }
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
}
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
a { color: var(--text-color); text-decoration: none; transition: color 0.3s ease; }
a:hover { text-decoration: underline; }

/* Utilities */
.bg-white { background-color: var(--white-color); }
.bg-light { background-color: var(--light-bg-color); }
.padding-0 { padding: 0 !important; }

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1440px; margin: auto; padding: 0 10px; overflow: hidden; }
.full-width-grid { display: grid; grid-template-columns: 1fr 1fr; width: 100%; margin: 0; padding: 0; }

.btn {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
    border: 1px solid var(--primary-color);
}
.btn:hover { background: var(--primary-color); color: var(--white-color); text-decoration: none; }

h2.section-title {
    font-size: clamp(1.8em, 4vw, 2.5em);
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.fade-in-element { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in-element.is-visible { opacity: 1; transform: translateY(0); }

/* Configuração da Seta */
.arrow-down-icon {
    display: inline-block;
    color: var(--primary-color);
    margin-top: 10px;
    animation: moveArrow 2s infinite ease-in-out;
}

.arrow-down-icon .material-symbols-outlined {
    font-size: 3rem;
}

@keyframes moveArrow {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* --- HEADER --- */
header {
    background: var(--secondary-color);
    color: var(--text-color);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
header .header-content { display: flex; justify-content: space-between; align-items: center; }
.logo-link { display: block; margin-right: auto; }
.site-logo { max-height: 35px; width: auto; }

/* Desktop Navigation */
.desktop-nav { 
    display: flex; 
    align-items: center; 
    gap: 30px;
}

.desktop-nav a { 
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    font-size: 1rem; 
    text-decoration: none;
    transition: color 0.3s ease;
    border: none;
    background: transparent;
    padding: 0;
}

.desktop-nav a:hover { 
    color: var(--black-color);
    text-decoration: none;
}
/* MENU MOBILE */
.hamburger-menu {
    display: none; /* Escondido por padrão no Desktop */
    flex-direction: column; justify-content: space-around;
    width: 30px; height: 25px; background: transparent; border: none; cursor: pointer; padding: 0; z-index: 1100;
}
.hamburger-menu .material-symbols-outlined { font-size: 28px; color: var(--primary-color); font-variation-settings: 'wght' 300; }
.mobile-menu {
    display: none; position: fixed; top: 0; right: -100%; width: 100%; height: 100%;
    background-color: rgba(var(--primary-color-rgb), 0.98); z-index: 1050;
    transition: right 0.3s ease-in-out; flex-direction: column; align-items: center; justify-content: center; padding: 20px; box-sizing: border-box;
}
.mobile-menu.is-open { right: 0; display: flex; }
.close-menu {
    position: absolute; top: 20px; right: 20px; background: transparent; border: none; cursor: pointer; z-index: 1150;
    display: flex; align-items: center; justify-content: center; padding: 5px;
}
.close-menu .material-symbols-outlined { color: var(--white-color); font-size: 36px; font-variation-settings: 'wght' 400; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 20px; text-align: center; }
.mobile-btn-link {
    color: var(--white-color); font-size: 1.8em; font-weight: 700; padding: 10px 0; width: 100%;
    transition: color 0.3s ease; text-transform: uppercase;
}

main { padding-top: 83px; }
section { padding: 80px 0; text-align: center; color: var(--text-color); }

/* --- HERO SLIDER --- */
#hero-fade-slider { padding: 0; }
.fade-slider-container { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background-color: #000; }
.fade-slider-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; transition: opacity 1.5s ease-in-out; }
.fade-slider-image.is-active { opacity: 1; }

/* --- HIGHLIGHT PHRASE --- */
#highlight-phrase { background-color: var(--secondary-color); }
.highlight-phrase-section {
    padding: 100px 0;
    font-weight: 700;
    font-size: clamp(2.25em, 6vw, 3.3em);
    line-height: 1.1;
    min-height: calc(100vh - 83px);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
}
.highlight-phrase-section h2 {
    color: var(--primary-color);
    line-height: 1.0;
    margin: 0;
}
.highlight-phrase-section p {
    opacity: 0;
    animation: fadeIn 3s ease-out forwards;
    font-weight: 400;
    font-style: normal;
    font-size: 1.2rem; 
    max-width: 700px;
    line-height: 1.2;
}
.highlight-phrase-section .btn-cta {
    background-color: var(--primary-color);
    color: var(--white-color);
    margin-top: 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 28px;
    border: none;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* --- SPLIT SECTIONS --- */
.split-section-wrapper { padding: 0; overflow: hidden; }
.split-image-col { position: relative; height: 100%; min-height: 500px; }
.split-image-col img { width: 100%; height: 100%; object-fit: cover; display: block; }

.split-text-col {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    padding: 80px 60px; text-align: left;
}
.bg-primary { background-color: var(--primary-color); color: var(--white-color); }
.split-content { max-width: 550px; width: 100%; }
.split-title { font-size: clamp(1.8em, 4vw, 2.5em); line-height: 1.2; font-weight: 700; margin-bottom: 25px; color: inherit; text-align: left; }
.split-subtitle { font-size: 1.1rem; line-height: 1.6; font-weight: 400; margin-bottom: 30px; opacity: 0.95; }
.list-style-x { list-style: none; padding-left: 0; margin-top: 30px; }
.list-style-x li { position: relative; padding-left: 35px; margin-bottom: 12px; font-size: 1.1rem; }
.list-style-x li::before {
    content: 'report_problem'; font-family: 'Material Symbols Outlined'; position: absolute; left: 0; top: 0;
    font-weight: normal; color: var(--white-color); font-size: 1.4rem; line-height: 1.2;
}

#falha-percepcao { padding-bottom: 0; }
#inteligencia-comercial { padding: 0; }

/* --- INTELIGÊNCIA COMERCIAL --- */
.inteligencia-text-col {
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 60px 50px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: left; min-height: 400px;
}
.inteligencia-content { max-width: 500px; width: 100%; }
.inteligencia-content h2 { font-size: clamp(1.7em, 4vw, 2.2em); line-height: 1.2; font-weight: 700; margin-bottom: 0; color: var(--white-color); }
.inteligencia-content p { font-size: 1.1rem; line-height: 1.6; margin-top: 30px; color: var(--white-color); }
.inteligencia-content .bold-p { font-weight: 700; margin-top: 30px; margin-bottom: 10px; }
.inteligencia-content .bold-p-simple { font-weight: 700; margin-top: 0; }

.list-style-check { list-style: none; padding-left: 0; margin-top: 20px; }
.list-style-check li { position: relative; padding-left: 35px; margin-bottom: 15px; font-size: 1.05rem; line-height: 1.5; color: var(--white-color); }
.list-style-check li::before {
    content: 'check_circle'; position: absolute; left: 0; top: 2px; font-weight: 400;
    color: var(--white-color); font-size: 1.3rem; font-family: 'Material Symbols Outlined';
}

.percepcao-image-col img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; display: block; }

/* --- JORNADA --- */
#jornada { padding: 40px 0; }
.jornada-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 40px; align-items: stretch; }
.jornada-item .icon-wrapper { margin-bottom: 20px; display: flex; align-items: center; justify-content: center; width: 100%; }
.jornada-icon { max-height: 180px !important; width: auto; max-width: 100%; object-fit: contain; display: block; }
.jornada-item h3 { font-size: 1.1rem; color: var(--primary-color); margin: 0; line-height: 1.3; font-weight: 700; }
.jornada-item p { font-size: 0.95rem; line-height: 1.5; color: var(--text-color); margin: 0; }

/* --- VISUAL PROOF (MARQUEE) --- */
#visual-proof { padding: 60px 0 0 0; overflow: hidden; background-color: var(--white-color); }
.visual-proof-section { display: flex; flex-direction: column; gap: 0px; }
.marquee-wrapper { overflow: hidden; width: 100%; position: relative; }
.marquee-track { display: flex; gap: 0px; width: max-content; will-change: transform; }
.marquee-track img { height: 240px; width: auto; object-fit: cover; display: block; }
.move-left { animation: scroll-left 40s linear infinite; }
.move-right { animation: scroll-right 40s linear infinite; }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scroll-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* --- DEPOIMENTOS --- */
.depoimentos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.depoimento-item {
    background-color: var(--white-color); border: 1px solid var(--primary-color); border-radius: 8px;
    padding: 40px 30px; text-align: center; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; align-items: center;
}
.depoimento-img-wrapper {
    width: 100px; height: 100px; margin-bottom: 25px; border-radius: 50%; overflow: hidden;
    border: 3px solid var(--primary-color); padding: 2px; background-color: var(--white-color);
}
.depoimento-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.depoimento-texto { font-style: italic; font-size: 1rem; line-height: 1.6; margin-bottom: 25px; color: var(--text-color); flex-grow: 1; }
.depoimento-info { border-top: 1px solid var(--medium-bg-color); padding-top: 15px; width: 100%; }
.depoimento-nome { font-size: 1.1rem; color: var(--primary-color); font-weight: 700; margin-bottom: 5px; }
.depoimento-cargo { font-size: 0.9rem; color: #666; display: block; font-weight: 500; }

/* --- ANÁLISE --- */
.analise-text-col-full {
    background-color: var(--primary-color); color: var(--white-color); padding: 80px 60px;
    display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: left; min-height: 450px;
}
.analise-content-wrapper { max-width: 550px; width: 100%; }
.analise-content-wrapper h2 { font-size: clamp(2em, 5vw, 2.8em); color: var(--white-color); margin-bottom: 30px; line-height: 1.1; text-align: left; }
.lista-analise-full { list-style: none; padding-left: 0; margin-bottom: 35px; }
.lista-analise-full li { position: relative; padding-left: 35px; margin-bottom: 15px; font-size: 1.1rem; color: var(--white-color); }
.lista-analise-full li::before {
    content: 'check_circle'; position: absolute; left: 0; top: 2px; font-family: 'Material Symbols Outlined';
    font-variation-settings: 'wght' 400; color: var(--white-color); font-size: 1.3rem;
}
.analise-image-col-full { height: 100%; width: 100%; min-height: 400px; }
.analise-image-col-full img { width: 100%; height: 100%; object-fit: cover; display: block; }
.btn-whatsapp-cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px; background-color: var(--whatsapp-green);
    color: var(--white-color); padding: 16px 32px; border-radius: 50px; font-size: 1rem; font-weight: 700; text-transform: uppercase;
    text-decoration: none; border: none; transition: all 0.3s ease; box-shadow: none; cursor: pointer;
}
.btn-whatsapp-cta:hover { background-color: var(--whatsapp-green-dark); transform: translateY(-3px); color: var(--white-color); text-decoration: none; }
.btn-whatsapp-cta svg { height: 24px; width: auto; fill: currentColor; }

/* --- FAQ --- */
#faq { background-color: var(--light-bg-color); }
.faq-container { max-width: 800px; margin: 0 auto; text-align: left; }
.faq-item { border-bottom: 1px solid var(--medium-bg-color); }
.faq-question {
    width: 100%; background: transparent; border: none; padding: 20px 0; display: flex; justify-content: flex-start;
    align-items: center; cursor: pointer; text-align: left; font-family: 'Montserrat', sans-serif; gap: 15px;
}
.faq-question span { font-size: 1.1rem; font-weight: 700; color: var(--text-color); transition: color 0.3s ease; }
.faq-question:hover span { color: var(--primary-color); }
.faq-question.active .material-symbols-outlined { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out, padding 0.4s ease-out; }
.faq-answer p { padding: 0 0 20px 43px; font-size: 1rem; line-height: 1.6; }

/* --- CONTATO --- */
#contato { background: var(--primary-color); padding: 0 !important; margin-bottom: 0 !important; border-bottom: none; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; max-width: 1440px; margin: 0 auto; margin-bottom: 0 !important; }
.contact-info {
    background: var(--secondary-color); padding: 80px 60px; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
}
.contact-info h3 { font-size: clamp(1.7em, 4vw, 2em); color: var(--primary-color); margin-bottom: 20px; line-height: 1.2; }
.contact-form-container { background: transparent; padding: 80px 60px; }
.contact-form-container h3 { font-size: 1.5em; color: var(--white-color); margin-bottom: 25px; text-align: center; }
.contact-form input[type="text"], .contact-form input[type="tel"], .contact-form textarea {
    width: 100%; padding: 12px; border: 1px solid var(--medium-bg-color); border-radius: 8px;
    font-family: 'Montserrat', sans-serif; font-size: 1em; color: var(--text-color); background-color: var(--light-bg-color); margin-bottom: 20px;
}
.contact-form button[type="submit"] {
    display: block; width: 33%; margin: 0 auto; padding: 15px; background: var(--black-color);
    color: var(--white-color); border: none; border-radius: 8px; font-size: 1.1em; cursor: pointer; transition: background 0.3s ease;
}
.contact-form button[type="submit"]:hover { background: var(--text-color); }

/* --- FOOTER --- */
footer { background: var(--black-color); color: var(--white-color); text-align: center; padding: 20px 0; font-size: 0.9em; }
footer .container { display: flex; flex-direction: row; justify-content: space-between; align-items: center; flex-wrap: wrap; text-align: left; }
.footer-left { display: flex; align-items: center; justify-content: flex-start; gap: 20px; }
.social-icon svg { height: 24px; width: auto; transition: transform 0.3s ease, color 0.3s ease; color: var(--white-color); }
.social-icon:hover svg { color: var(--primary-color); }
.whatsapp-button {
    position: fixed; width: 60px; height: 60px; bottom: 25px; right: 25px; background-color: var(--whatsapp-green);
    color: var(--white-color); border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); z-index: 1000; transition: transform 0.3s ease;
}
.whatsapp-button:hover { transform: scale(1.1); }
.whatsapp-button svg { width: 32px; height: 32px; }

/* --- PÁGINAS PROJETOS (Estilos Compatibilidade) --- */
.project-hero-banner { width: 100%; max-width: 100vw; margin-top: 0; padding: 0; line-height: 0; overflow: hidden; }
.hero-full-img { width: 100%; height: auto; display: block; object-fit: contain; }
.project-description { padding: 80px 0; background-color: var(--secondary-color); }
.description-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.description-title-column h1 { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 10px; line-height: 1.2; }
.description-title-column h2 { font-size: 1.2rem; font-weight: 400; color: var(--text-color); margin: 0; }
.description-text-column p { margin-bottom: 20px; font-size: 1.1rem; line-height: 1.6; color: var(--text-color); }
.project-image-stack { display: flex; flex-direction: column; width: 100%; max-width: 100%; margin: 0; padding: 0; overflow: hidden; }
.project-image-stack img { width: 100%; max-width: 100%; height: auto; display: block; margin: 0; }
.more-portfolio { padding-top: 80px; padding-bottom: 0; background-color: var(--light-bg-color); }
.more-portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; width: 100%; margin-bottom: 0; }
.more-portfolio-item { display: block; position: relative; overflow: hidden; aspect-ratio: 4/3; margin: 0; padding: 0; line-height: 0; }
.more-portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.more-portfolio-item:hover img { transform: scale(1.1); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-bottom: 30px; }
.portfolio-item { display: block; position: relative; border-radius: 0; overflow: hidden; }
.portfolio-item img { width: 100%; height: 100%; display: block; object-fit: cover; border-radius: 0; transition: transform 0.5s ease; }
.portfolio-item:hover img { transform: scale(1.1); }
.item-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(255, 27, 57, 0.85);
    display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.3s ease; z-index: 2; padding: 20px;
}
.project-name {
    color: #fff; font-size: 1.2rem; font-weight: 700; text-transform: uppercase; text-align: center; margin: 0; transform: translateY(20px); transition: transform 0.3s ease;
}
.portfolio-item:hover .item-overlay { opacity: 1; }
.portfolio-item:hover .project-name { transform: translateY(0); }
.portfolio-item.hidden-project { display: none; }
.portfolio-item.fade-in-visible { animation: fadeInProject 0.5s ease-in forwards; }
@keyframes fadeInProject { from { opacity: 0; } to { opacity: 1; } }
.portfolio-actions { text-align: center; margin-top: 30px; }
#load-more-btn {
    background-color: var(--primary-color); color: var(--white-color); border: 2px solid var(--primary-color);
    border-radius: 50px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase;
    padding: 12px 35px; cursor: pointer; transition: all 0.3s ease; display: inline-block; margin-top: 20px;
}
#load-more-btn:hover {
    background-color: #cc001b; border-color: #cc001b; transform: translateY(-3px); box-shadow: 0 4px 10px rgba(255, 27, 57, 0.3);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVIDADE)
   ========================================================================== */

@media (max-width: 992px) {
    .desktop-nav { 
        display: none !important; 
    }
    
    .hamburger-menu { 
        display: flex !important; 
    }

    .jornada-grid, 
    .depoimentos-grid, 
    .portfolio-grid, 
    .more-portfolio-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .contact-grid { 
        grid-template-columns: 1fr; 
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    /* Estrutura Geral */
    .full-width-grid { display: block !important; width: 100% !important; }
    .split-image-col, .percepcao-image-col { display: none !important; }
    main { padding-top: 83px; }
    section { padding: 30px 0; }

    /* Highlight Phrase */
    .highlight-phrase-section {
        padding-top: 150px !important; padding-bottom: 60px !important; min-height: auto; gap: 20px;
    }
    .highlight-phrase-section h2 { font-size: 1.8rem !important; line-height: 1.2 !important; margin-bottom: 15px !important; }
    .highlight-phrase-section p { font-size: 1.2rem !important; line-height: 1.2 !important; padding: 0 15px !important; }
    .highlight-phrase-section .btn-cta { width: auto !important; max-width: 90%; font-size: 0.9rem !important; padding: 12px 25px !important; }

    /* Inteligência Comercial */
    .inteligencia-text-col { padding: 40px 20px !important; min-height: auto !important; }
    .inteligencia-content h2 { font-size: 1.8rem !important; }

    /* Split Text */
    .split-text-col { width: 100% !important; padding: 60px 20px !important; min-height: auto !important; }
    .split-title { font-size: 1.8rem !important; margin-bottom: 20px; text-align: center !important; }
    .split-subtitle { font-size: 1.2rem !important; text-align: center !important; }
    
    /* Slider */
    .fade-slider-container { aspect-ratio: unset !important; height: 55vh !important; min-height: 400px; }
    .fade-slider-image { object-fit: cover !important; }

    /* Marquee / Depoimentos / Jornada */
    .jornada-grid, .depoimentos-grid, .portfolio-grid, .more-portfolio-grid { grid-template-columns: 1fr; }
    .depoimentos-grid { gap: 30px; }
    
    /* Header e Footer */
    .footer-content { display: flex; flex-direction: column; align-items: center !important; gap: 20px; }
    footer .footer-column, footer p, footer a, footer span { text-align: center !important; width: 100%; justify-content: center; }
    footer { padding-bottom: 100px !important; }
    
    /* Páginas de Projetos */
    .project-hero-banner { padding: 0 !important; margin: 0 !important; }
    .description-grid { grid-template-columns: 1fr; gap: 30px; }
    .description-title-column h1 { font-size: 2rem; }
    .project-description { padding: 40px 0; }
    .more-portfolio { padding-top: 40px; padding-bottom: 0 !important; }
    .more-portfolio-grid { gap: 0 !important; margin-bottom: 0 !important; }
    
    /* Visual Proof */
    #visual-proof { padding: 40px 0; }
    .marquee-track img { height: 150px; }

    .contact-form button[type="submit"] {
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px 10px !important;
        font-size: 1rem !important;
        white-space: normal !important;
    }
    
    .contact-form-container { padding: 40px 20px !important; }

    .btn-whatsapp-cta {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        padding: 14px 15px !important;
    }

    .btn-whatsapp-cta svg {
        margin-right: 10px !important;
        flex-shrink: 0 !important;
    }
}

@media (max-width: 480px) {
    .marquee-item { flex-basis: 50%; } 
    .marquee-content { width: 300%; }
}

#highlight-phrase p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem; 
    font-weight: 300;
    line-height: 1.2; 
    color: var(--text-color);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.texto-destaque-home {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 3rem !important; 
    font-style: italic !important;
    font-weight: 500 !important; 
    line-height: 1.2 !important;
    color: var(--text-color);
    text-align: center;
    max-width: 950px;
    margin: 0 auto 15px auto;
}

@media (max-width: 768px) {
    .texto-destaque-home {
        font-size: 1.25rem !important;
        padding: 0 20px;
        line-height: 1.4 !important;
    }
}