/* Calculadora Mozzana - Layout Exato */
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

.mozzana-calculadora-pizza-wrapper {
    font-family: 'Rubik', sans-serif;
}

/* Reset básico para modal */
.mozzana-calculadora-pizza-wrapper * {
    box-sizing: border-box;
}

/* Botão Principal */
.mozzana-button-wrapper {
    display: inline-block;
}

.mozzana-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    outline: none;
    position: relative;
    overflow: hidden;
    background-color: #388FF8;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
}

.mozzana-button:hover {
    background-color: #2223BA;
}

.mozzana-button .icon-left,
.mozzana-button .icon-right {
    display: inline-flex;
    align-items: center;
}

.mozzana-button .icon-left {
    margin-right: 10px;
}

.mozzana-button .icon-right {
    margin-left: 10px;
}

/* Botão Calcular */
.calculate-button {
    background: linear-gradient(135deg, #EB9B20 0%, #F4A942 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calculate-button:hover {
    background: linear-gradient(135deg, #D88A1A 0%, #E39832 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(235, 155, 32, 0.3);
}

/* Resultados - Layout exato da imagem */
.calculator-results-section {
    background: #ffffff;
    padding: 30px;
    margin-top: 20px;
}

.calculator-results-section h2 {
    text-align: center;
    color: #1e3a8a;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Seção de Distribuidores (após resultados) */
.calculator-distribuidores-section {
    background: #ffffff;
    padding: 30px;
    margin-top: 20px;
    border-top: 2px solid #e5e7eb;
}

.calculator-distribuidores-section h2 {
    text-align: center;
    color: #1e3a8a;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.distribuidores-intro {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

#distribuidores-results-container .distribuidores-container {
    display: grid;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

#distribuidores-results-container .distribuidor-item {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Removido hover e active - distribuidores são apenas informativos */

#distribuidores-results-container .no-distribuidores {
    max-width: 600px;
    margin: 0 auto;
}

.results-grid {
    display: grid;
    grid-template-columns: calc(35% - 15px) 30px calc(65% - 15px);
    gap: 0;
    max-width: 60%;
    margin: 0 auto 20px auto;
    background: #f59e0b;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    padding: 30px 20px;
}

/* Divisor central - laranja/amarelo */
.results-grid::before {
    content: '';
    grid-column: 2;
    background: #f59e0b;
    box-shadow: -12px 0 5px 0px rgba(0, 0, 0, 0.2);
    width: 20px;
    height: 100%;
    position: absolute;
    z-index: 55;
    top: 0;
    left: 15px;
}

.result-card {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.result-card.result-without-mozzana {
    grid-column: 1;
}

.result-card.result-with-mozzana {
    grid-column: 3;
}

/* Headers dos resultados */
.result-header {
    background: #f59e0b;
    padding: 22px 15px;
    text-align: center;
    color: #ffffff;
    font-weight: 900;
    min-height: 85px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: relative;
}

.result-header h3 {
    font-size: 3.8rem;
    margin: 0;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* Botões de ajuste de porcentagem */
.percentage-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    padding: 0;
    flex-shrink: 0;
}

.percentage-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.percentage-btn:active {
    transform: scale(0.95);
}

.percentage-btn.disabled,
.percentage-btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
    opacity: 0.5;
    transform: none;
}

.percentage-btn.disabled:hover,
.percentage-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: none;
}

.percentage-btn.disabled svg,
.percentage-btn:disabled svg {
    fill: rgba(255, 255, 255, 0.5);
}

.percentage-btn svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.result-header p {
    margin: 0;
    font-size: 0;
    display: none;
}

/* Seções dos cards */
.result-card-section {
    padding: 20px 15px;
    text-align: center;
    font-weight: 700;
    min-height: 78px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 12px;
    margin: 3px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 60;
}

.result-card-section.total-gasto {
    background: #1e3a8a;
    color: #ffffff;
}

.result-card-section.economia-percent {
    background: #10b981;
    color: #ffffff;
}

.result-card-section.economia-ano {
    background: #ef4444;
    color: #ffffff;
}

.result-card-section.economia-mes {
    background: #1e3a8a;
    color: #ffffff;
}

.result-card-section.economia-semana {
    background: #3b82f6;
    color: #ffffff;
}

.result-card-section .currency {
    font-size: 13px;
    font-weight: 700;
    color: inherit;
    line-height: 1;
    margin-bottom: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.result-card-section .value {
    font-size: 2rem;
    font-weight: 900;
    color: inherit;
    line-height: 1;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.result-card-section .percentage {
    font-size: 2rem;
    font-weight: 900;
    color: inherit;
    line-height: 1;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.result-card-section p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: inherit;
    line-height: 1.2;
}

.result-card-section p strong {
    font-weight: 700;
}

/* Exemplos de economia */
.economy-examples {
    background: #f59e0b;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    color: #1f2937;
    margin-top: 0;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.economy-examples h3 {
    margin: 0 0 15px 0;
    font-size: 23px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(5, auto);
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.separator-ou {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    padding: 0 10px;
    letter-spacing: 1px;
}

.example-item {
    background: rgba(255, 255, 255, 0.25);
    padding: 15px 10px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 90px;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.example-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.example-icon svg {
    width: 4.125rem;
    height: 4.125rem;
    fill: #ffffff;
}

.example-content h4 {
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 0 4px 0;
    color: #fff;
    line-height: 1;
}

.example-content p {
    font-size: 14px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 0.3px;
}

/* Responsividade */
@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
    }

    .examples-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .separator-ou {
        display: none;
    }

    .result-header h3 {
        font-size: 2.5rem;
    }

    .percentage-btn {
        width: 35px;
        height: 35px;
    }

    .percentage-btn svg {
        width: 18px;
        height: 18px;
    }

    .value-item .currency,
    .value-item .value,
    .value-item .percentage {
        font-size: 1.5rem;
    }
}

/* Evitar scroll no body quando modal está aberta */
body.mozzana-modal-open {
    overflow: hidden !important;
}

/* Modal */
.mozzana-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mozzana-modal.active {
    opacity: 1;
    visibility: visible;
}

.mozzana-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.mozzana-modal-content {
    position: absolute;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80vw;
    background: #ffffff;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
    border-radius: 20px 0 0 20px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.mozzana-modal.active .mozzana-modal-content {
    right: 0;
}

.mozzana-modal-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    z-index: 10;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.mozzana-modal-close {
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #666;
    font-size: 18px;
    position: absolute;
    top: 35px;
    right: 15px;
    z-index: 20;
}

/* Font Awesome Icons - Compatibilidade com FA6 */
.fas,
.fa-solid {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome";
    font-weight: 900;
    font-style: normal;
}

.far,
.fa-regular {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome";
    font-weight: 400;
    font-style: normal;
}

.fab,
.fa-brands {
    font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands", "FontAwesome";
    font-weight: 400;
    font-style: normal;
}

.mozzana-modal-close:hover {
    background: #e0e0e0;
    color: #333;
}

.mozzana-modal-body {
    padding: 0;
    flex: 1;
    position: relative;
}

/* Layout da Calculadora - Seguindo layout exato */
.mozzana-calculator-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #EB9B20;
    background-image: url('https://avantimkt.com.br/alibra/wp-content/uploads/2025/08/Background-Header.webp');
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 30px 0px 50px 0px;
    background-attachment: fixed;
}

/* Header - Replicando o layout exato */
.calculator-header {
    padding: 10px 0 25px 0;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.calculator-title {
    font-family: "Rubrik", Sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin: 20px;
    text-decoration: none;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
    padding: 0 25px;
}

.logo-section {
    flex: 1;
    max-width: 300px;
}

.logo-container {
    max-width: 250px;
    margin: 0 auto;
}

.logo-mozzana {
    width: 100%;
    height: auto;
}

.pizza-image-section {
    flex: 1;
    text-align: right;
    max-width: 380px;
}

.pizza-image {
    max-width: 100%;
    height: auto;
}

/* Container Branco - Exatamente como o layout */
.calculator-form-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    margin: 0;
    flex: 1;
    min-height: calc(100vh - 200px);
    min-width: 65%;
    max-width: 800px;
    margin: 0 auto;
}

.calculator-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Campos do formulário - Seguindo layout exato */
.form-field {
    margin-bottom: 24px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.form-field-hidden {
    display: none !important;
}

.form-field.show {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
}

.form-field label {
    display: block;
    margin-bottom: 12px;
    font-weight: 800;
    color: #333;
    font-size: 18px;
}

.form-field input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
    box-sizing: border-box;
    background: #ffffff;
    color: #333;
}

.form-field input:focus {
    outline: none;
    border-color: #EB9B20;
    box-shadow: 0 0 0 3px rgba(235, 155, 32, 0.1);
}

/* Estados de Validação do CEP */
.form-field input.cep-valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2328a745'%3e%3cpath d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-field input.cep-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23dc3545'%3e%3cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3e%3cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

/* Texto informativo laranja */
.field-subtitle {
    margin: 15px 10px 10px 10px;
    color: #EB9B20;
    font-size: 14px;
    font-weight: normal;
    display: block;
}

/* Texto explicativo */
.field-description {
    margin: 15px 10px 10px 10px;
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}

/* Tabela de distribuidores - Layout exato */
.distribuidores-info-table {
    margin-top: 15px;
}

.distribuidores-info-table table {
    width: 100%;
    font-size: 14px;
    border-collapse: collapse;
}

.distribuidores-info-table table td {
    width: 50%;
    padding: 12px 8px;
    vertical-align: top;
}

.distribuidores-info-table table td:last-child {
    border-left: 1px solid #eee;
    padding-left: 16px;
}

.distribuidores-info-table table b {
    display: block;
    margin-bottom: 4px;
    color: #333;
    font-weight: 600;
}

.distribuidores-info-table table a {
    color: #1976d2;
    text-decoration: none;
    font-size: 14px;
}

.distribuidores-info-table table a:hover {
    text-decoration: underline;
}

/* Tabela de distribuidores - Layout exato */
.distribuidor-info {
    margin-top: 15px;
}

.distribuidor-info table {
    width: 100%;
    font-size: 14px;
    border-collapse: collapse;
}

.distribuidor-info table td {
    width: 50%;
    padding: 12px 8px;
    vertical-align: top;
}

.distribuidor-info table td:last-child {
    border-left: 1px solid #eee;
    padding-left: 16px;
}

.distribuidor-info table b {
    display: block;
    margin-bottom: 4px;
    color: #333;
    font-weight: 600;
}

.distribuidor-info table a {
    color: #1976d2;
    text-decoration: none;
    font-size: 14px;
}

.distribuidor-info table a:hover {
    text-decoration: underline;
}

/* Mensagens de validação */
.cep-invalid-msg {
    color: #dc3545;
    background-color: #f8d7da;
    border: 1px solid #f1aeb5;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 10px;
    font-size: 14px;
}

.cep-not-found {
    color: #856404;
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 10px;
    font-size: 14px;
}

/* Comparison Table */
.comparison-table {
    margin-top: 20px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 14px;
}

.comparison-table th,
.comparison-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.comparison-table td {
    color: #666;
}

/* Responsividade */
@media (max-width: 768px) {
    .mozzana-modal-content {
        width: 95vw !important;
        border-radius: 15px 0 0 15px;
    }

    .calculator-title {
        font-size: 24px;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .calculator-form-section {
        padding: 30px 20px;
    }

    .distribuidores-info-table table td {
        display: block;
        width: 100%;
        border: none;
        padding: 8px 0;
    }

    .distribuidores-info-table table td:last-child {
        border: none;
        padding-left: 0;
        border-top: 1px solid #eee;
        padding-top: 12px;
    }

    /* Responsividade dos resultados */
    .results-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .examples-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .result-header h3 {
        font-size: 2.5rem;
    }

    .result-card-section .currency,
    .result-card-section .value,
    .result-card-section .percentage {
        font-size: 1.5rem;
    }

    .example-content h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .mozzana-modal-content {
        width: 100vw !important;
        right: -100vw;
        border-radius: 0;
    }

    .calculator-title {
        font-size: 20px;
    }

    .calculator-form-section {
        padding: 20px 15px;
    }

    .form-field input {
        padding: 15px;
        font-size: 16px;
    }

    .economy-examples {
        padding: 15px;
    }

    .result-header h3 {
        font-size: 2rem;
    }

    .result-card-section .currency,
    .result-card-section .value,
    .result-card-section .percentage {
        font-size: 1.3rem;
    }
}

/* Calculadora Básica e Financeira Legacy - manter por compatibilidade */
.calculadora-container {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.calculadora-titulo {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.campo-input {
    margin-bottom: 15px;
}

.campo-input label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
}

.campo-input input,
.campo-input select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.campo-input input:focus,
.campo-input select:focus {
    outline: none;
    border-color: #388FF8;
    box-shadow: 0 0 0 3px rgba(56, 143, 248, 0.1);
}

.botao-calcular {
    background: linear-gradient(135deg, #388FF8 0%, #2223BA 100%);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.botao-calcular:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(56, 143, 248, 0.3);
}

.resultado {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #388FF8;
}

.resultado.hidden {
    display: none;
}

.resultado h3 {
    color: #333;
    margin: 0 0 15px 0;
    font-size: 1.2rem;
}

.resultado-valor {
    font-size: 1.8rem;
    font-weight: 700;
    color: #388FF8;
    margin: 10px 0;
}

.resultado-detalhe {
    color: #666;
    font-size: 0.9rem;
    margin: 5px 0;
}

/* Lista de Distribuidores */
.distribuidores-list {
    margin: 20px 0;
}

.distribuidores-container {
    margin-top: 15px;
}

.distribuidor-item {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Removido hover e active - distribuidores são apenas informativos */

.distribuidor-info {
    flex: 1;
    margin-top: 0;
}

.distribuidor-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.distribuidor-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.distribuidor-info p a {
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s ease;
    word-break: break-all;
}

.distribuidor-info p a:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* Estilo específico para links de distribuidores simplificados */
.distributor-link {
    color: #1e3a8a !important;
    text-decoration: none;
    transition: none;
    word-break: break-all;
}

.distributor-link:hover,
.distributor-link:visited,
.distributor-link:active,
.distributor-link:focus {
    color: #1e3a8a !important;
    text-decoration: none;
}

/* Ícone de seleção removido - não é mais necessário */

/* Mensagem quando não há distribuidores */
.no-distribuidores-message {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    margin: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.no-distribuidores-message i.fa-info-circle {
    font-size: 2.5rem;
    color: #EB9B20;
    margin-bottom: 15px;
    display: block;
}

.no-distribuidores-message h4 {
    color: #495057;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.no-distribuidores-message p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 10px 0;
}

.no-distribuidores-message p strong {
    color: #EB9B20;
    font-weight: 600;
}

.contact-info {
    background: rgba(235, 155, 32, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.contact-info p {
    margin: 8px 0;
    font-size: 14px;
    color: #495057;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-info i {
    color: #EB9B20;
    font-size: 1.1rem;
    width: 20px;
}

.contact-info strong {
    color: #333;
    font-weight: 600;
}

/* Responsividade - seguindo proporções exatas */
@media (max-width: 768px) {
    .calculator-results-section {
        padding: 20px 15px;
    }

    .calculator-results-section h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .results-grid {
        max-width: 100%;
        margin-bottom: 20px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.12);
    }

    .result-header {
        padding: 15px 12px;
        min-height: 70px;
    }

    .result-header h3 {
        font-size: 2.2rem;
    }

    .result-header p {
        font-size: 10px;
        letter-spacing: 0.6px;
    }

    .result-card-section {
        padding: 10px 12px;
        min-height: 55px;
    }

    .result-card-section .value,
    .result-card-section .percentage {
        font-size: 1.3rem;
    }

    .result-card-section .currency {
        font-size: 12px;
    }

    .result-card-section p {
        font-size: 8px;
    }

    .economy-examples {
        padding: 15px;
        margin-top: 15px;
    }

    .economy-examples h3 {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .examples-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .example-item {
        padding: 12px 8px;
        min-height: 70px;
        flex-direction: row;
        text-align: left;
    }

    .example-icon {
        font-size: 1.5rem;
        margin-bottom: 0;
        margin-right: 10px;
    }

    .example-content h4 {
        font-size: 1.2rem;
        margin-bottom: 2px;
    }

    .example-content p {
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .results-grid {
        grid-template-columns: 1fr;
        gap: 2px;
        border-radius: 6px;
    }

    .results-grid::before {
        display: none;
    }

    .result-card.result-without-mozzana,
    .result-card.result-with-mozzana {
        grid-column: 1;
    }

    .result-header h3 {
        font-size: 2rem;
    }

    .result-card-section .value,
    .result-card-section .percentage {
        font-size: 1.2rem;
    }
}