body.page-contato {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.hero-section {
    background: linear-gradient(to right, rgba(0, 74, 153, 0.1), transparent);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 74, 153, 0.1);
}

.breadcrumb {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a:hover {
    text-decoration: underline;
    color: var(--primary);
}

.breadcrumb-current {
    color: var(--primary);
    font-weight: 600;
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

@media (max-width: 320px) {
    .hero-title { font-size: 1.75rem; }
}

@media (min-width: 768px) {
    .hero-title { font-size: 2.5rem; }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    font-weight: 500;
}

.main-wrapper {
    padding: 2rem 0;
    flex-grow: 1;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .content-grid {
        grid-template-columns: 5fr 7fr;
    }
}

.info-card {
    background: var(--bg-white);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 74, 153, 0.1), 0 2px 4px -1px rgba(0, 74, 153, 0.06);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.info-card .section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon-box {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(0, 74, 153, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.info-text p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.whatsapp-link {
    color: var(--accent);
    font-weight: 600;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
}

.whatsapp-link a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.b2b-block {
    background-color: rgba(0, 74, 153, 0.05);
    border: 1px solid rgba(0, 74, 153, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.b2b-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.b2b-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 578px) {
    /* Grid de colunas removida pois agora há apenas um card B2B */
}

.b2b-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.b2b-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.b2b-card.b2b:hover { border-color: rgba(0, 74, 153, 0.5); }
.b2b-card.b2c:hover { border-color: rgba(227, 29, 26, 0.5); }

.b2b-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.b2b-icon.primary { color: var(--primary); }
.b2b-icon.secondary { color: var(--accent); }

.b2b-card-title {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.form-card {
    background: var(--bg-white);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 74, 153, 0.1), 0 2px 4px -1px rgba(0, 74, 153, 0.06);
    border: 1px solid var(--border-color);
    height: 100%;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-card .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

.form-card .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1.5rem;
}

.form-card .form-group.mb-0 { margin-bottom: 0; }

.form-card .form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
}

.form-card .form-input,
.form-card .form-select,
.form-card .form-textarea {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.select-wrapper {
    position: relative;
}

.select-wrapper .material-icons-outlined,
.select-wrapper .material-symbols-outlined {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #64748b;
}

.form-card .form-select {
    appearance: none;
    cursor: pointer;
}

.radio-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    cursor: pointer;
}

.radio-label:hover {
    color: var(--primary);
}

.form-card .form-textarea {
    resize: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input {
    margin-top: 0.25rem;
    accent-color: var(--primary);
}

.checkbox-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.checkbox-label a {
    color: var(--primary);
}

.checkbox-label a:hover { text-decoration: underline; }

.submit-btn {
    width: 100%;
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(227, 29, 26, 0.2);
    transition: all 0.2s ease;
}

.submit-btn:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.reps-section {
    background: var(--bg-white);
    padding: 2.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.reps-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.reps-text {
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reps-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    border-radius: 9999px;
    transition: all 0.2s ease;
}

.reps-btn:hover {
    background-color: var(--primary);
    color: white;
}

.map-section {
    width: 100%;
    height: 400px;
    position: relative;
    background-color: #f1f5f9;
    overflow: hidden;
}

.map-pattern {
    position: absolute;
    inset: 0;
    background-color: #e5e9f0;
    background-image: radial-gradient(#004a99 0.5px, transparent 0.5px), radial-gradient(#004a99 0.5px, #e5e9f0 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.3;
    z-index: 1;
}

.map-iframe-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.map-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 300px;
    width: 90%;
    border-top: 4px solid var(--primary);
    z-index: 2;
}

.map-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.map-card p {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.route-btn {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin: 0 auto;
}

.route-btn:hover {
    text-decoration: underline;
}

.faq-section {
    background: var(--bg-light);
    padding: 2.5rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-input {
    display: none;
}

.faq-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    cursor: pointer;
    font-weight: 700;
    color: #1e293b;
    transition: background 0.2s;
}

.faq-label:hover {
    background-color: #f8fafc;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: #f8fafc;
    padding: 0 1.25rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    border-top: 1px solid transparent;
}

.faq-input:checked ~ .faq-content {
    max-height: 200px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-top-color: #f1f5f9;
}

.faq-input:checked ~ .faq-label .icon-expand {
    transform: rotate(180deg);
}

.icon-expand {
    transition: transform 0.3s ease;
    color: #94a3b8;
}

.page-contato .cta-banner {
    background: linear-gradient(135deg, var(--primary), #1e293b);
    color: white;
    padding: 30px 0;
    border-top: 4px solid var(--accent);
}

.page-contato .cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 992px) {
    .page-contato .cta-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.page-contato .cta-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 50%;
    display: flex;
}

.cta-support-icon {
    color: var(--accent);
    font-size: 32px;
}

.page-contato .cta-text h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: white;
}

.page-contato .cta-text p {
    color: #ccc;
    font-size: 14px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-contato .btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, background-color 0.2s;
    text-decoration: none;
}

.page-contato .btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
}

.page-contato .btn-email {
    background-color: white;
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    text-decoration: none;
}

.page-contato .btn-email:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
}

.hidden-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hidden-mobile {
        display: block;
    }
}

.flex { display: flex; }

.breadcrumb .material-icons-outlined.icon-breadcrumb {
    font-size: 12px;
}

.whatsapp-link .material-icons-outlined {
    font-size: 16px;
}

.route-btn .material-icons-outlined {
    font-size: 14px;
}
