/* ========================================
   MELHORIAS DE DESIGN - D'BARBER
   Design Minimalista e Exclusivo
   ======================================== */

/* CENTRALIZAÇÃO E ESPAÇAMENTO DAS SECTIONS */
.section-header,
.amenities-header,
.profile-header {
    text-align: center !important;
    margin-bottom: 60px !important;
    padding: 0 20px !important;
}

.section-title,
.gallery-title,
.amenities-title,
.profile-title {
    text-align: center !important;
    margin-bottom: 20px !important;
}

.section-subtitle,
.gallery-subtitle,
.amenities-subtitle,
.profile-subtitle {
    text-align: center !important;
    margin-top: 15px !important;
}

/* Espaçamento vertical das sections */
section {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

section.min-h-screen {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

/* REDUÇÃO DE TAMANHO DOS CARDS */

/* Gallery Cards - Tamanho Elegante */
.gallery-item {
    padding: 25px !important;
    max-width: 380px !important;
}

.gallery-item-title {
    font-size: 1.6rem !important;
}

.gallery-item-desc {
    font-size: 0.95rem !important;
}

.gallery-image-wrapper {
    height: 280px !important;
}

/* Plan Cards - Reduzidos */
.plan-card {
    padding: 30px 25px !important;
    max-width: 350px !important;
}

.plan-title {
    font-size: 2rem !important;
}

.price {
    font-size: 2.5rem !important;
}

.plan-card .icon {
    font-size: 2.5rem !important;
    margin-bottom: 15px !important;
}

.plan-card ul {
    margin: 20px 0 !important;
}

.plan-card li {
    font-size: 0.9rem !important;
    padding: 8px 0 !important;
}

/* Benefit Cards - Reduzidos */
.benefit-card {
    padding: 25px 20px !important;
    max-width: 300px !important;
}

.benefit-card h3 {
    font-size: 1.3rem !important;
}

.benefit-card p {
    font-size: 0.9rem !important;
}

.benefit-icon {
    font-size: 2.5rem !important;
    margin-bottom: 15px !important;
}

/* Amenity Cards - Reduzidos */
.amenity-card {
    padding: 25px 20px !important;
}

.amenity-card h3 {
    font-size: 1.2rem !important;
}

/* FORMULÁRIO DE AGENDAMENTO RECOLHÍVEL */

.appointment-form-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.appointment-toggle-btn {
    width: 100%;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    color: #d4af37;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    backdrop-filter: blur(10px);
}

.appointment-toggle-btn:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.appointment-toggle-btn .icon-left {
    font-size: 1.5rem;
}

.appointment-toggle-btn .icon-right {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.appointment-toggle-btn.active .icon-right {
    transform: rotate(180deg);
}

.appointment-form-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

.appointment-form-wrapper.active {
    max-height: 2000px;
    margin-top: 20px;
}

.appointment-form {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(20px);
}

/* FOOTER MINIMALISTA E PROFISSIONAL */

.footer {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, #000 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px 0 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: block !important;
    grid-template-columns: none !important;
}

.footer-main {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 60px !important;
    margin-bottom: 40px !important;
}

.footer-left {
    flex: 1 !important;
    max-width: 500px !important;
}

.footer-right {
    flex-shrink: 0 !important;
    min-width: 250px !important;
}

.footer-schedule,
.footer-social-section {
    text-align: left;
}

.footer-section h3 {
    color: #d4af37;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.footer-section p,
.footer-section a {
    color: rgba(212, 175, 55, 0.7);
    font-size: 0.9rem;
    line-height: 1.8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #d4af37;
    padding-left: 5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 50%, transparent 100%);
    margin: 40px 0 30px 0;
}

.footer-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    padding-top: 20px !important;
    text-align: center !important;
    border-top: none !important;
}

.footer-copyright {
    color: rgba(212, 175, 55, 0.5) !important;
    font-size: 0.85rem !important;
}

.footer-credits {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    color: rgba(212, 175, 55, 0.6) !important;
    font-size: 0.85rem !important;
}

.footer-credits a {
    color: #d4af37;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    position: relative;
}

.footer-credits a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.footer-credits a:hover::after {
    width: 100%;
}

.footer-credits a:hover {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-right {
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .appointment-toggle-btn {
        padding: 18px 25px;
        font-size: 1rem;
    }
    
    .plan-card {
        max-width: 100% !important;
    }
    
    .gallery-item {
        max-width: 100% !important;
    }
}

/* Animações suaves */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.appointment-form-wrapper.active .appointment-form {
    animation: slideDown 0.4s ease;
}
