/**
 * Responsive Breakpoints - Lumevié
 * Otimizações para resoluções intermediárias (tablets e telas médias)
 * 
 * Breakpoints:
 * - 1200px: Desktop pequeno
 * - 1024px: Tablets landscape (iPad Pro, Surface)
 * - 768px: Tablets portrait (iPad)
 * - 600px: Tablets pequenos
 * - 480px: Smartphones grandes landscape
 */

/* ========================================
   DESKTOP PEQUENO (max-width: 1200px)
   ======================================== */
@media (max-width: 1200px) {
    /* Container ajustado */
    .container {
        max-width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
    
    /* Hero title - reduzir espaçamento */
    .header .caption .hero-title {
        font-size: 48px;
        letter-spacing: 12px;
    }
    
    /* Seções - reduzir padding */
    .section-padding {
        padding: 80px 0;
    }
}

/* ========================================
   TABLET LANDSCAPE (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
    /* Hero Banner */
    .header .caption .hero-title {
        font-size: 42px;
        letter-spacing: 10px;
        margin-bottom: 15px;
    }
    
    .header .caption .subtitle {
        font-size: 26px;
    }
    
    /* Section titles */
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    /* Procedimentos - Cards em 2 colunas */
    .services .menu-info {
        margin-bottom: 25px;
    }
    
    /* Shape 360 - Cards */
    .experience-card {
        margin-bottom: 30px;
    }
    
    /* Experiências - Cards */
    .experience .item {
        margin-bottom: 30px;
    }
    
    /* Galeria - Ajustar espaçamento */
    .gallery-item {
        margin-bottom: 20px;
    }
    
    /* Formulário - Ajustar largura */
    .booking-inner {
        padding: 40px 30px;
    }
    
    /* Footer - Ajustar colunas */
    .footer-about {
        margin-bottom: 30px;
    }
}

/* ========================================
   TABLET PORTRAIT (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    /* Hero Banner */
    .header .caption .hero-title {
        font-size: 36px;
        letter-spacing: 8px;
    }
    
    .header .caption .subtitle {
        font-size: 22px;
    }
    
    /* Section titles */
    .section-title {
        font-size: 32px;
    }
    
    /* Procedimentos - Tabs scroll horizontal */
    .tabs-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tabs-icon .item {
        min-width: 150px;
    }
    
    /* Procedimentos - Cards em 1 coluna */
    .services .col-md-5 {
        width: 100%;
        max-width: 100%;
    }
    
    /* Shape 360 - Cards em 1 coluna */
    .experience-card img {
        max-height: 400px;
        object-fit: cover;
    }
    
    /* Experiências - Cards em 1 coluna */
    .experience .item {
        max-width: 500px;
        margin: 0 auto 30px;
    }
    
    /* Simetria - Imagens em 1 coluna */
    .simetria .col-md-4 {
        margin-bottom: 30px;
    }
    
    /* Galeria - 2 colunas */
    .gallery-item.col-md-4,
    .gallery-item.col-md-3 {
        width: 50%;
        flex: 0 0 50%;
    }
    
    .gallery-item.col-md-6 {
        width: 100%;
        flex: 0 0 100%;
    }
    
    /* Mapa - Altura reduzida */
    .map iframe {
        height: 400px !important;
    }
    
    /* Formulário - Full width */
    .booking-inner {
        padding: 30px 20px;
    }
    
    .booking-inner input,
    .booking-inner textarea {
        font-size: 15px;
    }
    
    /* Footer - 1 coluna */
    .footer-about,
    .footer-column {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-about-social-list {
        justify-content: center;
    }
}

/* ========================================
   TABLET PEQUENO (max-width: 600px)
   ======================================== */
@media (max-width: 600px) {
    /* Container - Padding reduzido */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* Hero Banner */
    .header .caption .hero-title {
        font-size: 32px;
        letter-spacing: 6px;
    }
    
    .header .caption .subtitle {
        font-size: 20px;
    }
    
    /* Botões - Full width */
    .butn-dark a,
    .butn-light a {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }
    
    /* Section titles */
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    /* Seções - Padding reduzido */
    .section-padding {
        padding: 60px 0;
    }
    
    /* Procedimentos - Tabs */
    .tabs-icon .item {
        min-width: 120px;
        padding: 10px 15px;
    }
    
    .tabs-icon .item h6 {
        font-size: 13px;
    }
    
    /* Galeria - 1 coluna */
    .gallery-item {
        width: 100% !important;
        flex: 0 0 100% !important;
    }
    
    /* Mapa - Altura reduzida */
    .map iframe {
        height: 300px !important;
    }
}

/* ========================================
   SMARTPHONE LANDSCAPE (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    /* Hero Banner */
    .header .caption .hero-title {
        font-size: 28px;
        letter-spacing: 4px;
    }
    
    .header .caption .subtitle {
        font-size: 18px;
    }
    
    /* Section titles */
    .section-title {
        font-size: 24px;
    }
    
    /* Procedimentos - Cards */
    .menu-info h5 {
        font-size: 16px;
    }
    
    .menu-info p {
        font-size: 14px;
    }
    
    /* Experiências - Cards */
    .experience .item .cont h5 {
        font-size: 18px;
    }
    
    /* Formulário - Inputs */
    .booking-inner input,
    .booking-inner textarea {
        font-size: 14px;
        padding: 12px 15px;
    }
    
    /* Footer - Texto menor */
    .footer-about p,
    .footer-column p {
        font-size: 14px;
    }
}

/* ========================================
   CORREÇÕES ESPECÍFICAS POR SEÇÃO
   ======================================== */

/* Procedimentos - Background claro em todas as resoluções */
.services .menu-info {
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0px;
    margin-bottom: 20px;
}

/* Procedimentos - Reduzir espaçamento entre colunas em resoluções intermediárias */
@media (min-width: 769px) and (max-width: 1200px) {
    .services .col-md-5 {
        padding-left: 5px;
        padding-right: 5px;
    }
}

/* Procedimentos - Reduzir espaçamento entre colunas em mobile/tablet */
@media (max-width: 768px) {
    .services .col-md-5 {
        padding-left: 5px;
        padding-right: 5px;
    }
}

/* A Clínica - Imagens lado a lado em tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    .about .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Procedimentos - Melhorar legibilidade em tablets */
@media (min-width: 600px) and (max-width: 1024px) {
    .services .menu-info {
        padding: 20px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 0px;
        margin-bottom: 20px;
    }
}

/* Avaliações - Ajustar carrossel em tablets */
@media (min-width: 600px) and (max-width: 1024px) {
    .testimonials .item {
        padding: 40px 30px;
    }
    
    .testimonials .item p {
        font-size: 16px;
        line-height: 1.6;
    }
}

/* Simetria - Melhorar legibilidade em resoluções intermediárias */
@media (min-width: 769px) and (max-width: 1200px) {
    .experience-card .desc {
        padding: 25px;
    }
    
    .experience-card .amount {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .experience-card .list li {
        font-size: 14px;
        padding-left: 25px;
        line-height: 1.5;
    }
    
    .experience-card .list li+li {
        margin-top: 8px;
    }
    
    .experience-card .list li i {
        font-size: 14px;
    }
}

/* Simetria - Cards em 1 coluna em tablets portrait */
@media (min-width: 768px) and (max-width: 1024px) {
    #simetria .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .experience-card .desc {
        padding: 30px;
    }
    
    .experience-card .amount {
        font-size: 36px;
    }
    
    .experience-card .list li {
        font-size: 16px;
    }
}

/* Formulário - Melhorar em tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    .booking-inner .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
}
