/* ==============================================================================
   SEÇÃO FORMULÁRIO E MARCAS - VERSÃO MELHORADA
   ============================================================================== */
.franquia-cadastro-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #f8f9fa;
}

/* Título com a Linha Laranja Inferior */
.franquia-title-box {
    margin-bottom: 30px;
    text-align: left;
}

.franquia-title-box h2 {
    font-size: clamp(24px, 3.2vw, 36px);
    font-weight: 800;
    color: #1d2d7d;
    line-height: 1.2;
    margin-bottom: 12px;
}

.title-decor-line {
    width: 60px;
    height: 4px;
    background-color: #ff7300;
    border-radius: 2px;
}

/* Grid de Conteúdo Principal */
.franquia-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.9fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
}

/* Caixa da Imagem da Fachada */
.fachada-loja-box {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.fachada-loja-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Caixa do Formulário - COMPLETAMENTE REFORMULADA */
.form-cadastro-box {
    background: linear-gradient(135deg, #003666 0%, #2d2d2d 100%);
    padding: 30px 25px;
    border-radius: 12px;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 115, 0, 0.1);
}

.form-cadastro-box h3 {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.form-cadastro-box form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Linhas com inputs duplos */
.form-row-twin {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* INPUTS, TEXTAREAS E SELECTS - VERSÃO CORRIGIDA */
.form-input-field {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 2px solid #3a3a3a;
    border-radius: 6px;
    background-color: #ffffff;
    color: #1a1a1a;
    outline: none;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    appearance: none;
}

.form-input-field::placeholder {
    color: #a0a0a0;
}

.form-input-field:hover {
    border-color: #ff7300;
    box-shadow: 0 0 0 1px rgba(255, 115, 0, 0.2);
}

.form-input-field:focus {
    border-color: #ff7300;
    box-shadow: 0 0 0 4px rgba(255, 115, 0, 0.2);
    background-color: #ffffff;
}

/* SELECTS - STYLING ESPECIAL */
select.form-input-field {
    padding-right: 38px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff7300' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-left: 14px;
    cursor: pointer;
}

select.form-input-field::-ms-expand {
    display: none;
}

select.form-input-field option {
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 8px;
}

select.form-input-field option:checked {
    background: linear-gradient(#ff7300, #ff7300);
    background-color: #ff7300;
    color: #ffffff;
}

/* TEXTAREA */
.textarea-field {
    resize: vertical;
    min-height: 65px;
    font-family: inherit;
}

/* Wrapper para Select - removido espaço extra */
.select-wrapper {
    width: 100%;
    position: relative;
}

/* Bloco Vermelho de Alerta do Rádio - MELHORADO */
.radio-box-container {
    background: linear-gradient(135deg, #ff7404 0%, #ff7504 100%);
    padding: 12px 14px;
    border-radius: 8px;
    margin: 4px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.2);
}

.radio-box-container p {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.radio-options-group {
    display: flex;
    gap: 20px;
    font-size: 14px;
    font-weight: 600;
    align-items: center;
}

.radio-options-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.2s ease;
}

.radio-options-group label:hover {
    transform: translateX(2px);
}

.radio-options-group input[type="radio"] {
    accent-color: #ff7300;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

/* Botão Submit - REDESENHADO */
.btn-submit-form {
    background: linear-gradient(135deg, #09d145 0%, #09d144 100%);
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(255, 115, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.btn-submit-form:hover {
    background: linear-gradient(135deg, #ff8f00 0%, #ff7300 100%);
    box-shadow: 0 8px 28px rgba(255, 115, 0, 0.4);
    transform: translateY(-2px);
}

.btn-submit-form:hover::before {
    left: 100%;
}

.btn-submit-form:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(255, 115, 0, 0.3);
}

/* ==============================================================================
   SEÇÃO DE MARCAS PARCEIRAS
   ============================================================================== */
.marcas-parceiras-container {
    border-top: 2px solid #e5e7eb;
    padding-top: 35px;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 25px;
}

.marcas-intro-text {
    min-width: 160px;
    max-width: 200px;
    font-size: 19px;
    font-weight: 800;
    color: #1d2d7d;
    line-height: 1.3;
}

.marcas-logos-grid {
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    align-items: center;
    justify-items: center;
}

.marca-item-logo {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.marca-item-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.marca-item-logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Texto de Termos Legais */
.form-legal-text {
    font-size: 12px;
    color: #555555;
    text-align: center;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    gap: 6px;
}

.form-legal-text i {
    color: #ff7300;
}

.form-legal-text a {
    color: #1d2d7d;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.form-legal-text a:hover {
    color: #ff7300;
}

/* ==============================================================================
   MEDIA QUERIES PARA RESPONSIVIDADE
   ============================================================================== */
@media (max-width: 1024px) {
    .franquia-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fachada-loja-box {
        aspect-ratio: 16 / 10;
    }

    .marcas-parceiras-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .marcas-intro-text {
        max-width: 100%;
    }

    .marcas-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }

    .form-cadastro-box {
        padding: 28px 22px;
    }
}

@media (max-width: 768px) {
    .form-row-twin {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .marcas-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .radio-options-group {
        gap: 20px;
    }

    .franquia-title-box {
        text-align: center;
    }

    .title-decor-line {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .franquia-cadastro-section {
        padding: 25px 12px;
    }

    .form-cadastro-box {
        padding: 20px 16px;
    }

    .form-cadastro-box h3 {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .form-input-field {
        padding: 9px 11px;
        font-size: 13px;
    }

    .btn-submit-form {
        padding: 11px 18px;
        font-size: 12px;
    }

    .radio-options-group {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .marcas-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .marca-item-logo {
        height: 45px;
    }
}

/*MODELO DE NEGÓCIO E CARDS*/

/* ==============================================================================
   SEÇÃO MODELO DE NEGÓCIO
   ============================================================================== */

.modelo-negocio-section {
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
    padding: 70px 20px;
    position: relative;
    overflow: hidden;
}

.modelo-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ==============================================================================
   CABEÇALHO
   ============================================================================== */

.modelo-header {
    text-align: center;
    margin-bottom: 60px;
}

.modelo-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: #1d2d7d;
    margin: 0 0 12px;
    line-height: 1.2;
}

.modelo-subtitle {
    font-size: 18px;
    color: #666666;
    margin: 0;
    font-weight: 500;
}

/* ==============================================================================
   GRID PRINCIPAL (Imagem + Informações)
   ============================================================================== */

.modelo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

/* IMAGEM */
.modelo-imagem-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(29, 45, 125, 0.15);
}

.modelo-imagem {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.modelo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff7300 0%, #ff8f00 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(255, 115, 0, 0.3);
}

/* INFORMAÇÕES */
.modelo-info-box {
    padding: 40px;
    background: white;
    border-radius: 16px;
    border-left: 5px solid #ff7300;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.modelo-info-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.modelo-info-titulo {
    font-size: 28px;
    font-weight: 800;
    color: #1d2d7d;
    margin: 0;
    line-height: 1.3;
}

.modelo-info-descricao {
    font-size: 16px;
    color: #555555;
    margin: 0;
    line-height: 1.6;
}

.modelo-info-descricao strong {
    color: #ff7300;
    font-weight: 700;
}

.modelo-info-subtitulo {
    font-size: 16px;
    font-weight: 700;
    color: #1d2d7d;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CARD DE PREÇO */
.modelo-preco-card {
    background: linear-gradient(135deg, #1d2d7d 0%, #1a2670 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(29, 45, 125, 0.2);
}

.modelo-preco-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modelo-preco-valor {
    font-size: 42px;
    font-weight: 900;
    color: #ff7300;
    line-height: 1;
}

/* INFORMAÇÕES DE VALORES */
.modelo-valores-info {
    background: #f5f7fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ff7300;
}

.modelo-valores-title {
    font-size: 13px;
    font-weight: 700;
    color: #1d2d7d;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modelo-valores-text {
    font-size: 13px;
    color: #666666;
    margin: 0 0 10px;
    line-height: 1.5;
}

.modelo-valores-obs {
    font-size: 12px;
    color: #ff7300;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.modelo-valores-obs i {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==============================================================================
   SEÇÃO DE DIFERENCIAIS (Cards)
   ============================================================================== */

.modelo-diferenciais {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.modelo-diferenciais-title {
    font-size: 32px;
    font-weight: 800;
    color: #1d2d7d;
    text-align: center;
    margin: 0 0 50px;
    line-height: 1.3;
}

.modelo-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD INDIVIDUAL */
.modelo-card {
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.modelo-card:hover {
    transform: translateY(-8px);
}

.modelo-card:hover .modelo-card-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 10px 25px rgba(0, 102, 204, 0.3));
}

/* ÍCONE */
.modelo-card-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modelo-card-icon svg {
    width: 100%;
    height: 100%;
}

/* TÍTULOS E TEXTOS DO CARD */
.modelo-card-titulo {
    font-size: 16px;
    font-weight: 700;
    color: #1d2d7d;
    margin: 0;
    line-height: 1.4;
}

.modelo-card-texto {
    font-size: 14px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

/* ==============================================================================
   RESPONSIVIDADE
   ============================================================================== */

@media (max-width: 1024px) {
    .modelo-negocio-section {
        padding: 50px 20px;
    }

    .modelo-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 60px;
    }

    .modelo-info-box {
        padding: 30px;
    }

    .modelo-info-titulo {
        font-size: 24px;
    }

    .modelo-diferenciais {
        padding: 40px 30px;
    }

    .modelo-diferenciais-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .modelo-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .modelo-preco-valor {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .modelo-negocio-section {
        padding: 40px 15px;
    }

    .modelo-header {
        margin-bottom: 40px;
    }

    .modelo-title {
        font-size: 28px;
    }

    .modelo-subtitle {
        font-size: 16px;
    }

    .modelo-info-box {
        padding: 25px;
        border-left-width: 4px;
    }

    .modelo-info-titulo {
        font-size: 22px;
    }

    .modelo-info-descricao {
        font-size: 15px;
    }

    .modelo-preco-card {
        padding: 25px;
    }

    .modelo-preco-valor {
        font-size: 32px;
    }

    .modelo-diferenciais {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .modelo-diferenciais-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .modelo-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .modelo-card {
        padding: 20px;
        background: #f5f7fa;
        border-radius: 12px;
    }

    .modelo-card-icon {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .modelo-negocio-section {
        padding: 30px 12px;
    }

    .modelo-header {
        margin-bottom: 30px;
    }

    .modelo-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .modelo-subtitle {
        font-size: 14px;
    }

    .modelo-grid {
        gap: 25px;
        margin-bottom: 40px;
    }

    .modelo-badge {
        font-size: 11px;
        padding: 8px 14px;
        top: 15px;
        left: 15px;
    }

    .modelo-info-box {
        padding: 20px;
    }

    .modelo-info-titulo {
        font-size: 20px;
    }

    .modelo-info-descricao {
        font-size: 14px;
    }

    .modelo-info-subtitulo {
        font-size: 13px;
    }

    .modelo-preco-card {
        padding: 20px;
    }

    .modelo-preco-valor {
        font-size: 28px;
    }

    .modelo-diferenciais {
        padding: 20px 15px;
    }

    .modelo-diferenciais-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .modelo-card {
        padding: 15px;
    }

    .modelo-card-icon {
        width: 70px;
        height: 70px;
    }

    .modelo-card-titulo {
        font-size: 14px;
    }

    .modelo-card-texto {
        font-size: 13px;
    }
}

/* ==============================================================================
   ANIMAÇÕES
   ============================================================================== */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modelo-card {
    animation: slideInUp 0.6s ease-out forwards;
}

.modelo-card:nth-child(1) {
    animation-delay: 0.1s;
}

.modelo-card:nth-child(2) {
    animation-delay: 0.2s;
}

.modelo-card:nth-child(3) {
    animation-delay: 0.3s;
}

.modelo-card:nth-child(4) {
    animation-delay: 0.4s;
}

/*DEPOIMENTOS*/

/* ==============================================================================
   SEÇÃO DEPOIMENTOS DE FRANQUEADOS
   ============================================================================== */

.depoimentos-section {
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    padding: 70px 20px;
    position: relative;
    overflow: hidden;
}

.depoimentos-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* ==============================================================================
   COLUNA ESQUERDA: MAPA E TEXTO
   ============================================================================== */

.depoimentos-mapa-box {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.depoimentos-mapa-content {
    width: 100%;
    max-width: 400px;
    position: relative;
}

.depoimentos-mapa-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.depoimentos-mapa-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 20px 50px rgba(29, 45, 125, 0.2));
}

/* CAIXA DE TEXTO */
.depoimentos-texto-box {
    text-align: center;
    background: linear-gradient(135deg, #ff7300 0%, #ff8f00 100%);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(255, 115, 0, 0.25);
    max-width: 400px;
    width: 100%;
}

.depoimentos-texto-principal {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.depoimentos-texto-destaque {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 20px;
    line-height: 1;
}

.depoimentos-texto-subtitulo {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 12px;
    letter-spacing: 0.5px;
}

.depoimentos-texto-subtitulo strong {
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
}

.depoimentos-texto-final {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.depoimentos-texto-final strong {
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
}

/* ==============================================================================
   COLUNA DIREITA: CABEÇALHO E VÍDEOS
   ============================================================================== */

.depoimentos-videos-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* CABEÇALHO */
.depoimentos-header {
    text-align: left;
    margin-bottom: 10px;
}

.depoimentos-titulo {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 900;
    color: #1d2d7d;
    margin: 0 0 12px;
    line-height: 1.3;
}

.depoimentos-subtitulo {
    font-size: 18px;
    color: #d32f2f;
    font-style: italic;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* GRID DE VÍDEOS */
.depoimentos-videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.depoimentos-video-item {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    background: #000;
    transition: all 0.3s ease;
}

.depoimentos-video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.depoimentos-video-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.depoimentos-video-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* NOTA SOBRE VÍDEOS */
.depoimentos-nota {
    background: #f5f7fa;
    padding: 16px 20px;
    border-radius: 10px;
    border-left: 4px solid #ff7300;
    margin-top: 10px;
}

.depoimentos-nota-texto {
    font-size: 13px;
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.5;
}

.depoimentos-nota-texto i {
    color: #ff7300;
    flex-shrink: 0;
    font-size: 16px;
}

/* ==============================================================================
   RESPONSIVIDADE
   ============================================================================== */

@media (max-width: 1200px) {
    .depoimentos-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .depoimentos-mapa-box {
        max-width: 100%;
    }

    .depoimentos-mapa-content {
        max-width: 350px;
        margin: 0 auto;
    }

    .depoimentos-texto-box {
        max-width: 350px;
        margin: 0 auto;
    }

    .depoimentos-titulo {
        font-size: 32px;
        text-align: center;
    }

    .depoimentos-header {
        text-align: center;
    }

    .depoimentos-subtitulo {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .depoimentos-section {
        padding: 50px 20px;
    }

    .depoimentos-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .depoimentos-mapa-content {
        max-width: 280px;
    }

    .depoimentos-texto-box {
        max-width: 280px;
        padding: 30px 25px;
    }

    .depoimentos-texto-destaque {
        font-size: 36px;
    }

    .depoimentos-videos-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .depoimentos-titulo {
        font-size: 26px;
    }

    .depoimentos-subtitulo {
        font-size: 16px;
    }

    .depoimentos-video-placeholder {
        padding-bottom: 56.25%;
    }
}

@media (max-width: 480px) {
    .depoimentos-section {
        padding: 40px 15px;
    }

    .depoimentos-container {
        gap: 20px;
    }

    .depoimentos-mapa-box {
        gap: 25px;
    }

    .depoimentos-mapa-content {
        max-width: 100%;
    }

    .depoimentos-mapa-img {
        max-width: 280px;
        margin: 0 auto;
    }

    .depoimentos-texto-box {
        max-width: 100%;
        padding: 25px 20px;
        border-radius: 12px;
    }

    .depoimentos-texto-principal {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .depoimentos-texto-destaque {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .depoimentos-texto-subtitulo {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .depoimentos-texto-final {
        font-size: 14px;
    }

    .depoimentos-titulo {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .depoimentos-subtitulo {
        font-size: 14px;
    }

    .depoimentos-header {
        margin-bottom: 8px;
    }

    .depoimentos-videos-grid {
        gap: 15px;
        margin-bottom: 15px;
    }

    .depoimentos-video-placeholder {
        padding-bottom: 56.25%;
        border-radius: 10px;
    }

    .depoimentos-nota {
        padding: 14px 16px;
        border-radius: 8px;
    }

    .depoimentos-nota-texto {
        font-size: 12px;
    }
}

/* ==============================================================================
   ANIMAÇÕES
   ============================================================================== */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.depoimentos-video-item {
    animation: slideInUp 0.6s ease-out;
}

.depoimentos-video-item:nth-child(1) {
    animation-delay: 0.1s;
}

.depoimentos-video-item:nth-child(2) {
    animation-delay: 0.2s;
}

/* ==============================================================================
   DARK MODE SUPPORT
   ============================================================================== */

@media (prefers-color-scheme: dark) {
    .depoimentos-section {
        background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
    }

    .depoimentos-header {
        color: #ffffff;
    }

    .depoimentos-nota {
        background: #2a2a2a;
    }

    .depoimentos-nota-texto {
        color: #ccc;
    }
}


/* ===== Benefícios Franqueados ===== */

.bf-section {
  padding: 3rem 1.5rem;
  background: #ffffff;
}

.bf-title {
  text-align: center;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 2.5rem;
}

.bf-title span {
  color: #1a52a0;
}

.bf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.bf-card {
  background: #f5f7fa;
  border: 1px solid #e2e6ed;
  border-radius: 12px;
  padding: 1.25rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  text-align: center;
  transition: transform .18s ease, border-color .18s ease;
}

.bf-card:hover {
  transform: translateY(-4px);
  border-color: #1a52a0;
}

/* Container da imagem — tamanho fixo, centraliza qualquer imagem */
.bf-img-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bf-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* mantém proporção, sem cortar */
  display: block;
}

.bf-label {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
}

/* Responsivo — mobile: 2 colunas */
@media (max-width: 480px) {
  .bf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== FAQ — Pinta Mundi Tintas ===== */

.faq-wrap {
  padding: 3rem 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Cabeçalho */
.faq-top {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.faq-top-text p {
  margin: 0 0 .3rem;
  font-size: 13px;
  color: #888;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.faq-top-text h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.15;
}

.faq-top-text h2 em {
  font-style: normal;
  color: #e87722;
}

.faq-top-video {
  flex-shrink: 0;
}

.faq-top-video img {
  width: 100%;
  border-radius: 10px;
  border: 3px solid #e87722;
  display: block;
}

.faq-top-video p {
  font-size: 11px;
  color: #999;
  margin: 5px 0 0;
  line-height: 1.4;
  text-align: center;
}

/* Divisor decorativo azul → laranja */
.faq-divider {
  height: 3px;
  background: linear-gradient(90deg, #1a52a0 60%, #e87722 100%);
  border-radius: 2px;
  margin-bottom: 1.75rem;
}

/* Lista */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

details.fi {
  border-radius: 10px;
  border: 1.5px solid #e8ecf2;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}

details.fi[open] {
  border-color: #1a52a0;
  box-shadow: 0 2px 12px rgba(26, 82, 160, .08);
}

details.fi summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: .85rem 1.1rem;
  cursor: pointer;
  background: #fafbfd;
  user-select: none;
}

details.fi summary::-webkit-details-marker {
  display: none;
}

details.fi[open] summary {
  background: #f0f5fd;
}

.fi-num {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: #1a52a0;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

details.fi[open] .fi-num {
  background: #e87722;
}

.fi-q {
  flex: 1;
  font-size: 14.5px;
  font-weight: 600;
  color: #1a1a1a;
}

.fi-arrow {
  font-size: 16px;
  color: #aaa;
  transition: transform .25s;
  margin-left: auto;
}

details.fi[open] .fi-arrow {
  transform: rotate(180deg);
  color: #1a52a0;
}

.fi-body {
  padding: .9rem 1.1rem .9rem 3rem;
  font-size: 14px;
  color: #444;
  line-height: 1.75;
  border-top: 1.5px solid #e8ecf2;
}

/* Responsivo */
@media (max-width: 680px) {
  .faq-top {
    grid-template-columns: 1fr;
  }

  .fi-body {
    padding: .9rem 1rem;
  }
}

/* ===== Footer — Pinta Mundi Tintas ===== */

.ft {
  background: #1a1a1a;
  color: #ccc;
  padding: 2.5rem 2.5rem 1.5rem;
  box-sizing: border-box;
}

.ft-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid #333;
}

/* Logo */
.ft-logo img {
  width: 160px;
  display: block;
}

.ft-logo p {
  font-size: 11px;
  color: #888;
  margin: 8px 0 0;
}

/* Títulos das colunas */
.ft h4 {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

/* Links do mapa do site */
.ft ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.ft ul li a {
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}

.ft ul li a:hover {
  color: #e87722;
}

/* Contatos */
.ft-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #aaa;
  margin-bottom: .65rem;
}

.ft-contact-item i {
  color: #e87722;
  font-size: 17px;
  flex-shrink: 0;
}

.ft-contact-item a {
  color: #aaa;
  text-decoration: none;
  transition: color .2s;
}

.ft-contact-item a:hover {
  color: #e87722;
}

/* Endereço */
.ft-addr {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #aaa;
  line-height: 1.6;
}

.ft-addr i {
  color: #e87722;
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Redes Sociais */
.ft-social {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.ft-social a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #aaa;
  text-decoration: none;
  transition: color .2s;
}

.ft-social a:hover {
  color: #e87722;
}

.ft-social a i {
  font-size: 18px;
}

.ft-social a .fb { color: #1877f2; }
.ft-social a .ig { color: #e1306c; }
.ft-social a .yt { color: #ff0000; }

/* Rodapé inferior */
.ft-bottom {
  padding-top: 1.2rem;
  font-size: 11px;
  color: #555;
  text-align: center;
}

/* Responsivo — tablet: 2 colunas */
@media (max-width: 900px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 2rem;
  }
}

/* Responsivo — mobile: 1 coluna */
@media (max-width: 500px) {
  .ft-grid {
    grid-template-columns: 1fr;
  }

  .ft {
    padding: 2rem 1.25rem 1.25rem;
  }
}