/* ============================================
   ESTILOS ESPECÍFICOS DEL INDEX
   ============================================ */

:root {
    --gold: #C9A96E;
    --gold-light: #E8D5A3;
    --gold-dark: #A8894A;
    --white: #FFFFFF;
    --dark: #1A1A1A;
    --gray: #6C6C6C;
    --light-gray: #F5F3F0;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-custom {
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    border-bottom: 3px solid var(--gold);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.navbar-custom .navbar-toggler {
    border-color: var(--gold);
    padding: 8px 12px;
}

.navbar-custom .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.3);
}

.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23C9A96E' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-custom .navbar-collapse {
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
}

.navbar-custom .navbar-nav {
    gap: 5px;
}

.navbar-custom .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold) !important;
    letter-spacing: 2px;
}

.navbar-custom .navbar-brand i {
    color: var(--gold);
    margin-right: 10px;
}

.navbar-custom .navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 600;
    transition: color 0.3s;
    padding: 8px 20px;
    letter-spacing: 1px;
    font-size: 0.95rem;
    border-radius: 8px;
}

.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-nav .nav-link.active {
    color: var(--gold) !important;
    background: rgba(201, 169, 110, 0.1);
}

.navbar-custom .navbar-nav .nav-link i {
    margin-right: 8px;
    color: var(--gold);
}

.navbar-custom .btn-whatsapp-nav {
    background: #25D366;
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.navbar-custom .btn-whatsapp-nav:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    color: white !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 50%, #1A1A1A 100%);
    color: white;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.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="%23C9A96E" opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,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>') no-repeat bottom;
    background-size: cover;
}

.hero-section .logo-container {
    margin-bottom: 30px;
}

.hero-section .logo-container img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(201, 169, 110, 0.3));
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-section h1 span {
    color: var(--gold);
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    color: var(--light-gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section .btn-gold {
    background: var(--gold);
    color: var(--dark);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
}

.hero-section .btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.6);
    color: white;
}

.hero-section .btn-outline-gold {
    background: transparent;
    color: var(--gold);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-section .btn-outline-gold:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
}

/* ============================================
   TÍTULOS DE SECCIÓN
   ============================================ */
.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 50px;
    position: relative;
    font-size: 2.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.section-title .gold-text {
    color: var(--gold);
}

/* ============================================
   TARJETAS DE SERVICIOS
   ============================================ */
.service-card {
    background: white;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-bottom-color: var(--gold);
}

.service-card .carousel {
    height: 220px;
}

.service-card .carousel-inner,
.service-card .carousel-item {
    height: 100%;
}

.service-card .carousel-item img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.service-card .carousel-control-prev,
.service-card .carousel-control-next {
    width: 30px;
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    margin: 0 5px;
}

.service-card .carousel-control-prev {
    left: 5px;
}

.service-card .carousel-control-next {
    right: 5px;
}

.service-card .carousel-control-prev-icon,
.service-card .carousel-control-next-icon {
    width: 15px;
    height: 15px;
}

.service-card .card-body {
    padding: 25px;
}

.service-card .card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark);
    font-size: 1.3rem;
}

.service-card .price {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.3rem;
}

.service-card .btn-gold-sm {
    background: var(--gold);
    color: var(--dark);
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    font-size: 0.9rem;
}

.service-card .btn-gold-sm:hover {
    background: var(--gold-dark);
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   TARJETAS DE ESTILISTAS
   ============================================ */
.estilista-card {
    background: white;
    border: none;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
    border: 2px solid transparent;
}

.estilista-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--gold);
}

.estilista-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--gold);
    padding: 3px;
}

.estilista-card h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark);
}

.estilista-card .especialidad {
    color: var(--gray);
    font-size: 0.9rem;
}

.estilista-card .btn-gold-sm {
    background: var(--gold);
    color: var(--dark);
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    font-size: 0.85rem;
    margin-top: 10px;
}

.estilista-card .btn-gold-sm:hover {
    background: var(--gold-dark);
    color: white;
}

/* ============================================
   PRODUCTOS
   ============================================ */
.product-card {
    background: white;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.product-card .discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 1;
}

.product-card .price-original {
    text-decoration: line-through;
    color: #95a5a6;
    font-size: 0.9rem;
}

.product-card .price-discount {
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.2rem;
}

.product-card .price-normal {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ============================================
   FILTROS DE PRODUCTOS
   ============================================ */
.filtros-productos {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.filtros-productos .form-control,
.filtros-productos .form-select {
    border-radius: 25px;
    border: 2px solid #e0e0e0;
    padding: 10px 20px;
    transition: all 0.3s;
}

.filtros-productos .form-control:focus,
.filtros-productos .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 110, 0.25);
}

.filtros-productos .btn-gold-sm {
    background: var(--gold);
    color: var(--dark);
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
}

.filtros-productos .btn-gold-sm:hover {
    background: var(--gold-dark);
    color: white;
}

.filtros-productos .btn-outline-gold-sm {
    background: transparent;
    color: var(--gold);
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--gold);
}

.filtros-productos .btn-outline-gold-sm:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ============================================
   CONTACTO
   ============================================ */
#contacto {
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    padding: 80px 0;
    color: white;
    margin-top: 50px;
}

#contacto .section-title {
    color: white;
}

#contacto .section-title::after {
    background: var(--gold);
}

#contacto .gold-text {
    color: var(--gold);
}

#contacto .info-item {
    margin-bottom: 25px;
}

#contacto .info-item i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-right: 15px;
    width: 40px;
}

#contacto .info-item h5 {
    font-weight: 700;
    color: var(--gold);
}

#contacto .info-item p {
    color: var(--light-gray);
    margin-left: 55px;
}

#contacto .info-item a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

#contacto .info-item a:hover {
    color: var(--gold-light);
}

#contacto .form-control {
    border-color: var(--gold) !important;
}

#contacto .form-control:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 110, 0.25);
}

#contacto .btn-gold {
    color: var(--dark) !important;
}

#contacto .btn-gold:hover {
    color: white !important;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-custom {
    background: #0D0D0D;
    color: var(--gray);
    padding: 40px 0;
    border-top: 2px solid var(--gold);
}

.footer-custom .gold-text {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.footer-custom .social-icons a {
    color: var(--gray);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-custom .social-icons a:hover {
    color: var(--gold);
}

/* ============================================
   ANIMACIONES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .navbar-custom .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 15px;
        right: 15px;
        background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
        padding: 20px;
        border-radius: 15px;
        border: 1px solid var(--gold);
        box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    }

    .navbar-custom .navbar-nav {
        flex-direction: column;
        width: 100%;
    }

    .navbar-custom .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-custom .navbar-nav .nav-link {
        padding: 10px 15px;
        border-radius: 8px;
        text-align: center;
    }

    .navbar-custom .btn-whatsapp-nav {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 140px 0 60px;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .hero-section .logo-container img {
        max-width: 150px;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card .carousel {
        height: 180px;
    }

    .estilista-card img {
        width: 120px;
        height: 120px;
    }

    .product-card img {
        height: 160px;
    }

    .filtros-productos .row {
        gap: 10px;
    }

    .navbar-custom .navbar-brand {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section .btn-gold,
    .hero-section .btn-outline-gold {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 10px;
    }

    .service-card .carousel {
        height: 150px;
    }

    .product-card img {
        height: 140px;
    }

    .navbar-custom .navbar-brand {
        font-size: 1.1rem;
    }

    .estilista-card img {
        width: 100px;
        height: 100px;
    }
    
    /* ============================================
   PAGINACIÓN
   ============================================ */
.pagination {
    gap: 5px;
}

.pagination .page-item .page-link {
    color: var(--dark);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 16px;
    transition: all 0.3s;
    font-weight: 600;
    background: white;
}

.pagination .page-item .page-link:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
}

.pagination .page-item.active .page-link {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    font-weight: 700;
}

.pagination .page-item.disabled .page-link {
    color: #b0b0b0;
    cursor: not-allowed;
    background: #f5f5f5;
}

.pagination .page-item .page-link i {
    font-size: 14px;
}

/* Información de productos */
.text-muted.small {
    font-size: 0.85rem;
    color: var(--gray) !important;
}

/* Responsive paginación */
@media (max-width: 576px) {
    .pagination .page-item .page-link {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .pagination .page-item .page-link i {
        font-size: 10px;
    }
    
    .text-muted.small {
        font-size: 0.75rem;
    }
}
    
}