/* ============= MODELO PAGE STYLES ============= */
/* CSS especifico para paginas de modelo (profissionais) */

.modelo-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e4070 100%);
    padding: 20px 20px;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modelo-header h1 {
    color: white;
    font-size: 36px;
    margin: 0;
    font-weight: 700;
    
}

.modelo-section {
    background-color: white;
    padding: 25px; /* muda a margem interna mobile */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.modelo-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

/* ============= MODELO LEFT ============= */
.modelo-left {
    display: flex;
    flex-direction: column;
    gap: 12px !important;
    flex: 0 0 300px;
    min-width: 300px;
    align-items: center;
}

.modelo-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #2c5aa0;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.25);
    margin-bottom: 10px !important;
}

.modelo-info {
    display: flex;
    flex-direction: column;
    gap: 1px !important; /* distância entre os itens */    
}

.modelo-info-item {
    display: flex;
    flex-direction: row;
    gap: 0px !important;
    padding: 1px 0 !important; /* distância entre os itens */
    align-items: baseline;
}

.modelo-info-label {
    font-weight: 700;
    color: #2c5aa0;
    font-size: 14px;
    min-width: 55px;
    flex-shrink: 0;
}

.modelo-info-value {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
    flex: 1;
}

.modelo-public-attended {
    background-color: #f9f9f9;
    padding: 18px;
    border-left: 4px solid #2c5aa0;
    margin: 10px 0;
    border-radius: 4px;
}

.modelo-public-attended p {
    color: #555;
    font-size: 15px;
    margin: 8px 0;
    font-weight: 500;
}

.modelo-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.modelo-btn {
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid #2c5aa0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    display: block;
}

.modelo-btn-primary {
    background-color: #2c5aa0;
    color: white;
}

.modelo-btn-primary:hover {
    background-color: #1e4070;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.modelo-btn-secondary {
    background-color: #2c5aa0;
    color: white;
}

.modelo-btn-secondary:hover {
    background-color: #1e4070;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

/* ============= MODELO RIGHT (AGENDA) ============= */
.modelo-right {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.modelo-presentation-container {
    background-color: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.modelo-presentation-container h2 {
    color: #2c5aa0;
    font-size: 20px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.modelo-presentation-container p {
    color: #555;
    line-height: 1.6;
    margin: 0 0 10px 0;
    font-size: 15px;
}

.modelo-tagline {
    color: #2c5aa0;
    font-weight: 700;
    font-style: italic;
    display: inline-block;
    margin-top: 6px;
}

.modelo-agenda-container {
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.modelo-agenda-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-bottom: 2px solid #e0e0e0;
}

.modelo-agenda-btn {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
}

.modelo-agenda-month {
    font-size: 24px;
    color: #333;
    margin: 0;
    font-weight: 700;
}

.modelo-agenda-subtitle {
    background-color: #2c5aa0;
    color: white;
    padding: 15px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.modelo-agenda-placeholder {
    padding: 40px 20px;
    text-align: center;
    color: #999;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modelo-agenda-iframe {
    width: 100%;
    min-height: 100px;
    border: none;
    display: block;
    overflow: hidden;
    transition: height 0.3s ease;
}

@media (max-width: 1000px) {
    .modelo-agenda-placeholder {
        min-height: 150px;
    }
    
    .modelo-agenda-iframe {
        min-height: 100px;
    }
}

/* ============= MODELO TESTIMONIALS SECTION ============= */
.modelo-testimonials-section {
    background-color: white;
    padding: 25px 15px 25px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.modelo-section-title {
    font-size: 28px;
    color: #2c5aa0;
    margin-bottom: 30px;
    text-align: center;
}

.modelo-demandas-container .modelo-section-title,
.modelo-agendar-container .modelo-section-title {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: left;
}

.modelo-testimonials-placeholder {
    min-height: 200px;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

/* ============= MODELO DEMANDAS ============= */
.modelo-demandas-text {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.modelo-demandas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
}

.modelo-tag {
    display: inline-block;
    padding: 8px 16px;
    border: 2px solid #2c5aa0;
    border-radius: 20px;
    color: #2c5aa0;
    font-size: 13px;
    font-weight: 600;
    background-color: transparent;
    transition: all 0.3s ease;
    cursor: default;
}

.modelo-tag:hover {
    background-color: #2c5aa0;
    color: white;
}

/* ============= MODELO AGENDAR CONSULTA ============= */
.modelo-agendar-text {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.modelo-agendar-buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============= MODELO MOBILE (@media max-width: 1000px) ============= */
/* ============= MODELO MOBILE (@media max-width: 1000px) ============= */

@media (max-width: 1000px) {
    .modelo-container {
        display: block;
    }

    .modelo-left {
        width: 100%;
        min-width: auto;
        margin-bottom: 30px;
    }

    .modelo-right {
        width: 100%;
    }

    .modelo-header {
        margin-top: 1px;
    }

    .modelo-header h1 {
        font-size: 26px;
    }

    .modelo-section {
        padding: 25px 8px 9px 8px; /* top | right | bottom | left */
    }

    .modelo-action-buttons {
        flex-direction: column;
    }

    .modelo-agenda-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .modelo-agenda-month {
        font-size: 20px;
    }
}
