/* ========================================
   Ubicación con Mapa
   ======================================== */
.ubicacion-section {
    padding: var(--spacing-xl) 0;
    background: #A68B6A;
}

.ubicacion-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.ubicacion-section .section-title {
    text-align: center;
    color: white;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-xl);
}

.ubicacion-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.ubicacion-info {
    color: white;
}

.address-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.address-box i {
    font-size: 1.5rem;
    color: white;
    margin-top: 0.2rem;
}

.address-box p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.reference-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.reference-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reference-list li:last-child {
    border-bottom: none;
}

.reference-list i {
    color: white;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-phone,
.btn-whatsapp {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-phone {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-phone:hover {
    background: white;
    color: #A68B6A;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
}

.ubicacion-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.ubicacion-map iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsive */
@media (max-width: 968px) {
    .ubicacion-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ubicacion-map iframe {
        height: 350px;
    }
}

/* ========================================
   CTA Final - Agendar
   ======================================== */
.cta-final-section {
    padding: var(--spacing-xl) 0;
    background: #f5f0eb;
}

.cta-final-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-final-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-final-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-cta,
.btn-whatsapp-cta {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-cta {
    background: #A68B6A;
    color: white;
    border: 2px solid #A68B6A;
}

.btn-primary-cta:hover {
    background: transparent;
    color: #A68B6A;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(166, 139, 106, 0.3);
}

.btn-whatsapp-cta {
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
}

.btn-whatsapp-cta:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

/* Responsive */
@media (max-width: 600px) {
    .cta-final-content h2 {
        font-size: 1.4rem;
    }

    .cta-final-content p {
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary-cta,
    .btn-whatsapp-cta {
        width: 100%;
        justify-content: center;
    }
}