/* DMR Contábil - Apresentação Institucional */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #111827;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Apresentação principal */
.dmr-presentation {
    width: 100%;
    height: 100%;
}

/* Slides */
.presentation-slide {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    page-break-after: always;
}

.slide-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.slide-brand {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 0.875rem;
    color: #4b5563;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.slide-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Slide 1 - Capa */
.slide-1 {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #f9fafb 100%);
}

.hero-section {
    text-align: center;
    space: 2rem 0;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 1rem;
    color: white;
    margin-bottom: 1.5rem;
}

.company-name {
    font-size: 3.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1;
    letter-spacing: -0.025em;
}

.company-name .highlight {
    color: #2563eb;
}

.divider {
    width: 8rem;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #fbbf24);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.hero-text {
    margin: 2rem 0;
}

.main-headline {
    font-size: 1.875rem;
    font-weight: 300;
    color: #374151;
    max-width: 64rem;
    margin: 0 auto 1.5rem;
    line-height: 1.625;
}

.highlight-word {
    font-weight: 600;
    color: #2563eb;
}

.sub-headline {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.75;
}

.badges-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.badge {
    padding: 0.5rem 1.5rem;
    font-size: 1.125rem;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
    border-radius: 0.5rem;
    background: rgba(191, 219, 254, 0.1);
}

/* Slide 2 - Sobre Nós */
.slide-2 {
    background: linear-gradient(135deg, #f9fafb 0%, #eff6ff 100%);
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text .section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 2.5rem;
}

.about-text .section-description {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.625;
}

.values-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #2563eb;
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.value-card.gold {
    border-left-color: #f59e0b;
}

.value-icon {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.value-card.gold .value-icon {
    color: #f59e0b;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.75rem;
}

.value-card p {
    color: #4b5563;
    line-height: 1.625;
}

/* Slide 3 - Serviços */
.slide-3 {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.services-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 2.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.75rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(1.05);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 0.75rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.75rem;
}

.service-card > p {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 1rem;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.5rem;
}

.benefit {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #4b5563;
    text-align: left;
}

/* Slide 4 - Por que escolher DMR */
.slide-4 {
    background: linear-gradient(135deg, #f9fafb 0%, #eff6ff 100%);
}

.why-choose-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.differential-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: none;
}

.differential-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.differential-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 0.75rem;
    color: #2563eb;
    flex-shrink: 0;
}

.differential-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.75rem;
}

.differential-card p {
    color: #4b5563;
    line-height: 1.625;
}

.guarantee-card {
    background: linear-gradient(90deg, #2563eb, #1e40af);
    color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
}

.guarantee-icon {
    color: #fcd34d;
    margin: 0 auto 1rem;
}

.guarantee-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 2rem;
}

.guarantee-card p {
    font-size: 1.125rem;
    color: #dbeafe;
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.75rem;
}

/* Slide 5 - Cases e Benefícios */
.slide-5 {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

.results-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.metric-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: none;
}

.metric-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.metric-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
    line-height: 2.5rem;
}

.metric-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.75rem;
}

.metric-card p {
    color: #4b5563;
    line-height: 1.625;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.case-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-left: 4px solid;
}

.case-card.success {
    border-left-color: #10b981;
}

.case-card.info {
    border-left-color: #2563eb;
}

.case-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.75rem;
}

.case-card p {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.625;
}

.case-result {
    font-size: 0.875rem;
    font-weight: 500;
}

.case-card.success .case-result {
    color: #059669;
}

.case-card.info .case-result {
    color: #2563eb;
}

/* Slide 6 - Call to Action */
.slide-6 {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    color: white;
}

.cta-section {
    text-align: center;
}

.cta-header {
    margin-bottom: 3rem;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: #dbeafe;
    max-width: 64rem;
    margin: 0 auto;
    line-height: 1.625;
}

.highlight-white {
    font-weight: 600;
    color: white;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.cta-benefit {
    text-align: center;
}

.cta-benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    margin: 0 auto 0.75rem;
}

.cta-benefit h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.75rem;
}

.cta-benefit p {
    color: #dbeafe;
    line-height: 1.625;
}

.cta-action {
    margin-top: 1.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    font-weight: 600;
    background: white;
    color: #1d4ed8;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.cta-button:hover {
    background: #f3f4f6;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.cta-disclaimer {
    font-size: 1.125rem;
    color: #bfdbfe;
    margin-top: 1.5rem;
    line-height: 1.75rem;
}

/* Slide 7 - Contato */
.slide-7 {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-text .section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 2.5rem;
}

.contact-text .section-description {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.625;
    margin-bottom: 2rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #2563eb;
}

.contact-card.whatsapp {
    border-left-color: #10b981;
}

.contact-card.email {
    border-left-color: #3b82f6;
}

.contact-card.location {
    border-left-color: #6b7280;
}

.contact-icon {
    color: #2563eb;
}

.contact-card.whatsapp .contact-icon {
    color: #10b981;
}

.contact-card.email .contact-icon {
    color: #3b82f6;
}

.contact-card.location .contact-icon {
    color: #6b7280;
}

.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #10b981;
    color: white;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
}

.contact-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
    line-height: 1.75rem;
}

.contact-card p {
    color: #4b5563;
    line-height: 1.625;
}

.contact-info {
    text-align: center;
}

.company-card {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.company-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 1rem;
    color: white;
    margin-bottom: 1.5rem;
}

.company-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 2rem;
}

.company-card p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.625;
}

.company-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.company-badge {
    padding: 0.5rem 1rem;
    background: #dbeafe;
    color: #1e40af;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.company-badge.gold {
    background: #fef3c7;
    color: #92400e;
}

.schedule-info {
    text-align: center;
}

.schedule-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
    line-height: 1.75rem;
}

.schedule-info p {
    color: #4b5563;
    line-height: 1.625;
}

/* Print styles for PDF generation */
@media print {
    @page {
        size: A4;
        margin: 0;
    }
    
    * {
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
    
    body {
        margin: 0;
        padding: 0;
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .presentation-slide {
        page-break-after: always;
        min-height: 100vh;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1rem;
    }
    
    .presentation-slide:last-child {
        page-break-after: avoid;
    }
    
    .no-print {
        display: none !important;
    }
    
    .print-break-before {
        page-break-before: always;
    }
    
    .print-break-after {
        page-break-after: always;
    }
    
    .print-break-inside-avoid {
        page-break-inside: avoid;
    }
}

/* Responsive design */
@media (max-width: 1024px) {
    .about-section,
    .contact-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .differentials-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .metrics-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .presentation-slide {
        padding: 1rem;
    }
    
    .company-name {
        font-size: 2.5rem;
    }
    
    .main-headline {
        font-size: 1.5rem;
    }
    
    .sub-headline {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .section-description {
        font-size: 1.125rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.25rem;
    }
    
    .badges-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .services-grid,
    .differentials-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling and enhanced user experience */
html {
    scroll-behavior: smooth;
}

/* Custom selection colors */
::selection {
    background-color: #2563eb;
    color: white;
}

::-moz-selection {
    background-color: #2563eb;
    color: white;
}

/* Enhanced focus states for accessibility */
:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Transitions for smooth interactions */
.transition-all {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }


/* Botão Flutuante do WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 20px; /* Distância do rodapé */
    right: 20px; /* Distância da direita */
    background-color: #25D366; /* Cor verde do WhatsApp */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Garante que fique acima de outros elementos */
    transition: transform 0.3s ease;
    text-decoration: none; /* Remove sublinhado do link */
}

    .whatsapp-button:hover {
        transform: scale(1.1); /* Efeito de crescimento ao passar o mouse */
        background-color: #1DA851; /* Tom um pouco mais escuro no hover */
    }

    .whatsapp-button svg {
        width: 32px; /* Tamanho do ícone SVG */
        height: 32px;
    }

/* Responsividade para o botão do WhatsApp em telas menores */
@media (max-width: 768px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

        .whatsapp-button svg {
            width: 28px;
            height: 28px;
        }
}

/* Estilos básicos para Desktop (como seu site já está) */
/* ... seu CSS atual ... */

/* --- Media Queries para Telas Menores --- */

/* Para tablets e telas menores (ex: até 768px) */
@media (max-width: 768px) {
    /* Exemplo: Fazer o menu de navegação ocupar a largura toda */
    .menu {
        width: 100%;
        text-align: center;
    }

    /* Exemplo: Aumentar o tamanho da fonte para melhor legibilidade */
    body {
        font-size: 16px;
    }

    /* Exemplo: Fazer colunas que ficam lado a lado no desktop, ficarem uma sobre a outra */
    .coluna-esquerda, .coluna-direita {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* Para celulares (ex: até 480px) */
@media (max-width: 480px) {
    /* Exemplo: Reduzir margens e preenchimentos para economizar espaço */
    .container {
        padding: 10px;
    }

    /* Exemplo: Esconder elementos que não são essenciais no celular */
    .imagem-grande-decorativa {
        display: none;
    }

    /* Exemplo: Garantir que as imagens não ultrapassem a largura da tela */
    img {
        max-width: 100%;
        height: auto;
    }
}

/* ==========================================================================
   INÍCIO DO CÓDIGO RESPONSIVO - Cole este bloco no final do seu CSS
   ========================================================================== */

/* --- Para Tablets e telas menores (a partir de 1024px para baixo) --- */
@media (max-width: 1024px) {
    /* Ajusta layouts de 2 colunas para 1 coluna */
    .about-section,
    .contact-section,
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem; /* Aumenta o espaço vertical entre as seções */
    }

    .contact-section {
        /* Inverte a ordem no mobile para mostrar as informações de contato antes do mapa */
        grid-auto-flow: dense; /* Permite a reordenação */
    }

        .contact-section .contact-text {
            order: 2;
        }

        .contact-section .contact-info {
            order: 1;
        }

    /* Ajusta grid de 3 colunas */
    .metrics-grid,
    .cta-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}


/* --- Para Celulares em modo paisagem e tablets menores (a partir de 768px para baixo) --- */
@media (max-width: 768px) {
    body {
        font-size: 16px; /* Define um tamanho de fonte base confortável */
        -webkit-text-size-adjust: 100%; /* Previne o zoom automático de fontes no iOS */
    }

    .presentation-slide {
        padding: 2.5rem 1.5rem; /* Mais espaço vertical, menos horizontal */
        min-height: auto; /* Permite que o slide tenha o tamanho do seu conteúdo */
    }

    /* Ajusta todos os grids restantes para 1 coluna */
    .services-grid,
    .differentials-grid {
        grid-template-columns: 1fr;
    }

    /* Tipografia - Reduz tamanhos para caber melhor na tela */
    .company-name {
        font-size: 2.75rem;
    }

    .main-headline {
        font-size: 1.5rem;
    }

    .sub-headline {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1.125rem;
    }

    .cta-title {
        font-size: 2.25rem;
    }

    .cta-subtitle {
        font-size: 1.25rem;
    }

    /* Hero Section - Empilha os badges */
    .badges-container {
        flex-direction: column;
        gap: 1rem;
    }

    /* Botão de Ação (CTA) - Menor e mais proporcional */
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }

    .cta-disclaimer {
        font-size: 1rem;
    }

    /* Ajusta o tamanho do botão flutuante do WhatsApp */
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

        .whatsapp-button svg {
            width: 28px;
            height: 28px;
        }
}


/* --- Para a maioria dos celulares em modo retrato (a partir de 480px para baixo) --- */
@media (max-width: 480px) {
    .presentation-slide {
        padding: 2rem 1rem; /* Reduz ainda mais o padding lateral */
    }

    /* Ajustes finos na tipografia para telas pequenas */
    .company-name {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .main-headline {
        font-size: 1.25rem;
    }

    /* Garante que imagens e iframes nunca estourem a tela */
    img,
    iframe {
        max-width: 100%;
        height: auto;
    }

    /* Ajusta o tamanho da logo no primeiro slide, caso exista uma tag img com a classe .main-logo */
    .main-logo {
        width: 80px;
        height: auto;
    }

    /* Cards - Reduz o padding interno para ganhar espaço */
    .value-card,
    .service-card,
    .differential-card,
    .metric-card,
    .case-card,
    .contact-card {
        padding: 1.25rem;
    }
}

/* ==========================================================================
   FIM DO CÓDIGO RESPONSIVO
   ========================================================================== */