/* ============================================
   BELLA SEÑORA - BOUTIQUE STYLESHEET
   Diseño elegante y femenino para moda mexicana
   ============================================ */

/* ========== VARIABLES DE COLOR ========== */
:root {
    --primary-pink: #f8bbd0;
    --primary-rose: #f48fb1;
    --primary-beige: #f5e6d3;
    --primary-gold: #d4a373;
    --dark-brown: #5d4037;
    --light-cream: #fafafa;
    --white: #ffffff;
    --text-dark: #3e2723;
    --text-muted: #6d6d6d;
    --shadow-elegant: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* ========== TIPOGRAFÍA ========== */
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-brown);
    letter-spacing: -0.5px;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
}

/* ========== NAVBAR ========== */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-brown) !important;
    letter-spacing: 0.5px;
}

.navbar-brand i {
    color: var(--primary-rose);
    margin-right: 8px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--primary-rose) !important;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-beige), var(--primary-pink));
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(248, 187, 208, 0.2), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-rose);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
    margin-right: 8px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-pink));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(244, 143, 177, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(244, 143, 177, 0.4);
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-rose));
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--dark-brown);
    padding: 1rem 2.5rem;
    border: 2px solid var(--dark-brown);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--dark-brown);
    color: white;
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--primary-rose);
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 6rem 0;
    background-color: var(--light-cream);
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: 20px;
    box-shadow: var(--shadow-elegant);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-elegant);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark-brown);
}

.image-badge i {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.rounded-custom {
    border-radius: 20px;
}

.shadow-elegant {
    box-shadow: var(--shadow-elegant);
}

.feature-box {
    padding: 1.5rem;
    background-color: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 163, 115, 0.1);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.feature-box h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
}

.feature-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ========== SERVICES SECTION ========== */
.services-section {
    padding: 6rem 0;
    background-color: white;
}

.service-card {
    padding: 3rem 2rem;
    background-color: var(--light-cream);
    border-radius: 20px;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background-color: white;
    border-color: var(--primary-pink);
}

.service-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-rose));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.service-icon {
    font-size: 2.5rem;
    color: white;
}

.service-card h4 {
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
    padding: 6rem 0;
    background-color: var(--light-cream);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-elegant);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(62, 39, 35, 0.95), transparent);
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.95rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* ========== SIZES SECTION ========== */
.sizes-section {
    padding: 6rem 0;
    background-color: white;
}

.highlight-box {
    background-color: var(--primary-beige);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-rose);
    display: flex;
    align-items: center;
}

.highlight-box i {
    font-size: 1.2rem;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 6rem 0;
    background-color: var(--light-cream);
}

.contact-card {
    background-color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-elegant);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--primary-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-rose);
}

.contact-card h5 {
    font-weight: 600;
    color: var(--dark-brown);
}

/* ========== MAP SECTION ========== */
.map-section {
    background-color: white;
}

.map-info {
    background-color: var(--light-cream);
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--primary-rose);
    margin-top: 5px;
}

.info-item h6 {
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
}

.alert-info-custom {
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
    color: #0d47a1;
    padding: 1rem;
    border-radius: 10px;
}

/* ========== CTA FINAL ========== */
.cta-final {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-rose));
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,90.7C672,85,768,107,864,117.3C960,128,1056,128,1152,106.7C1248,85,1344,43,1392,21.3L1440,0L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom/cover no-repeat;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background-color: white;
    color: var(--primary-rose);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    color: var(--primary-rose);
}

.btn-cta-outline {
    background-color: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background-color: white;
    color: var(--primary-rose);
    transform: translateY(-3px);
}

.trust-badge {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(10px);
}

.trust-badge i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

/* ========== FOOTER ========== */
.footer {
    background-color: var(--dark-brown);
    color: rgba(255, 255, 255, 0.8);
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand i {
    color: var(--primary-pink);
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: start;
}

.footer-list li i {
    color: var(--primary-pink);
    margin-top: 2px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--primary-pink);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--primary-pink);
    transform: translateY(-3px);
    color: white;
}

.btn-footer-cta {
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-pink));
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 143, 177, 0.4);
    color: white;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .map-info {
        min-height: auto;
        padding: 3rem 2rem !important;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 0 0 1rem 0 !important;
    }
    
    .btn-primary-custom,
    .btn-outline-custom,
    .btn-cta-primary,
    .btn-cta-outline {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
    
    .service-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0 0 1rem 0 !important;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .section-label {
        font-size: 0.8rem;
    }
    
    .about-section,
    .services-section,
    .gallery-section,
    .sizes-section,
    .contact-section,
    .cta-final {
        padding: 4rem 0;
    }
}

/* ========== UTILITIES ========== */
.text-primary-custom {
    color: var(--primary-rose) !important;
}

.bg-primary-custom {
    background-color: var(--primary-rose) !important;
}

.text-gold {
    color: var(--primary-gold) !important;
}

.bg-beige {
    background-color: var(--primary-beige) !important;
}
