/* Seção de Localização - Maria Flor */
.location-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.location-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'cormorant-garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--primary-color);
}

.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.location-map-container {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
}

.location-map-container iframe {
    width: 100%;
    height: 450px;
    display: block;
    border: none;
    margin: 0 auto;
}

.location-info-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.info-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.info-title {
    font-family: 'cormorant-garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 25px;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
    line-height: 1.2;
    text-align: left;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: var(--primary-color);
}

.info-content {
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(81, 175, 160, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    border: 1px solid rgba(81, 175, 160, 0.15);
    color: var(--primary-color);
}

.info-icon i {
    font-size: 18px;
}

.info-details {
    flex: 1;
}

.info-label {
    font-family: 'santral', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.info-text {
    font-family: 'santral', sans-serif;
    font-size: 14px;
    margin: 0;
    color: var(--dark-gray);
    line-height: 1.6;
}

.info-text a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.info-text a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    width: 100%;
    flex-wrap: wrap;
}

.btn-shop {
    background-color: transparent;
    color: var(--primary-color);
    padding: 10px 20px;
    border: 1px solid var(--primary-color);
    font-family: 'santral', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex: 1;
    min-width: 140px;
}

.btn-shop i {
    margin-right: 8px;
    font-size: 0.95rem;
}

.btn-shop:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: transparent;
    color: #25D366;
    padding: 10px 20px;
    border: 1px solid #25D366;
    font-family: 'santral', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex: 1;
    min-width: 140px;
}

.btn-whatsapp i {
    margin-right: 8px;
    font-size: 0.95rem;
}

.btn-whatsapp:hover {
    background-color: #25D366;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 991px) {
    .location-content {
        flex-direction: column;
        align-items: center;
    }
    
    .location-map-container, .location-info-container {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .info-title {
        font-size: 1.8rem;
    }
    
    .info-card {
        padding: 30px;
    }
    
    .info-icon {
        width: 36px;
        height: 36px;
    }
    
    .info-icon i {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .info-title {
        font-size: 1.6rem;
    }
    
    .info-card {
        padding: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .btn-shop, .btn-whatsapp {
        width: 100%;
    }
}
