:root {
    --primary: #e84393;
    --primary-dark: #c2316f;
    --secondary: #2d3436;
    --accent: #fd79a8;
    --light: #fff5f7;
    --dark: #1a1a2e;
    --gradient: linear-gradient(135deg, #e84393, #fd79a8);
    --gradient-dark: linear-gradient(135deg, #c2316f, #e84393);
    --shadow: 0 10px 30px rgba(232, 67, 147, 0.15);
    --shadow-sm: 0 4px 15px rgba(0,0,0,0.08);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--secondary);
    overflow-x: hidden;
    padding-top: 76px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* NAVBAR */
.navbar {
    background: rgba(26, 26, 46, 0.95) !important;
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-icon {
    color: var(--primary);
    margin-right: 8px;
}

.brand-highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    background: rgba(232, 67, 147, 0.1);
    color: var(--primary) !important;
}

.cart-icon {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.cart-icon:hover { color: var(--primary); }

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* HERO */
.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-actions .btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.btn-primary {
    background: var(--gradient);
    border: none;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--gradient-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 67, 147, 0.3);
}

.btn-outline-light:hover {
    background: white;
    color: var(--dark);
}

/* SECTIONS */
.section-padding {
    padding: 100px 0;
}

.section-badge {
    display: inline-block;
    background: var(--light);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-text {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

/* HISTORY */
.history-image {
    position: relative;
}

.history-image img {
    width: 100%;
}

.history-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: white;
    padding: 30px 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.history-experience span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.history-experience p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.stat-item { text-align: center; }

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* SERVICE CARDS */
.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient);
    color: white;
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

/* TESTIMONIALS */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.testimonial-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.rating-value {
    font-weight: 700;
    color: #e67e22;
    margin-right: 6px;
    font-size: 0.85rem;
    background: #fff8e1;
    padding: 2px 8px;
    border-radius: 4px;
}

.star-container {
    position: relative;
    display: inline-block;
    line-height: 1;
    color: #e0e0e0;
}

.star-filled {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #ffc107;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin: 0;
}

.testimonial-date {
    font-size: 0.8rem;
    color: #aaa;
}

/* CLIENTS CAROUSEL */
.client-photo {
    text-align: center;
}

.client-photo img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.client-photo img:hover {
    transform: scale(1.1);
    border-color: var(--primary);
}

/* SCHEDULE */
.schedule-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.schedule-item:last-child { border-bottom: none; }

.schedule-item span {
    font-size: 1rem;
    font-weight: 500;
}

.schedule-time {
    color: var(--primary);
    font-weight: 600 !important;
}

.schedule-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* CONTACT */
.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.contact-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.map-container iframe {
    width: 100%;
    height: 400px;
}

/* FOOTER */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 20px;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.footer h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    border-radius: var(--radius-sm);
    padding: 12px 15px;
}

.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.4); }

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 40px 0 20px;
}

.footer-bottom {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 9999;
    overflow: hidden;
    white-space: nowrap;
}

.whatsapp-btn span {
    display: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 5px;
}

.whatsapp-btn:hover {
    width: auto;
    padding: 0 25px;
    border-radius: 50px;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn:hover span { display: inline; }

/* CATALOG PAGE */
.catalog-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(26,26,46,0.95), rgba(26,26,46,0.8)), url('https://images.unsplash.com/photo-1483985988355-763728e1935b?w=1600') center/cover;
}

.catalog-header-content {
    max-width: 600px;
}

.catalog-header-content h1 {
    font-size: 3.5rem;
    color: white;
    line-height: 1.1;
    margin-bottom: 15px;
}

.catalog-header-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
}

/* FILTERS */
.filter-btn {
    border-radius: 50px !important;
    padding: 8px 25px !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    border-width: 2px !important;
}

.filter-btn.active {
    background: var(--gradient) !important;
    border-color: var(--primary) !important;
    color: white !important;
}

/* PRODUCT CARDS */
.product-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient);
    color: white;
    padding: 4px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    opacity: 0;
    transition: var(--transition);
    transform: translateY(20px);
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: translateY(0);
}

.product-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.product-actions .btn {
    border-radius: 50px;
    font-size: 0.8rem;
    padding: 8px 20px;
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 8px 0;
}

.product-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 10px;
    font-size: 0.8rem;
}

.product-stars .star-container {
    font-size: 0.8rem;
}

.product-rating-value {
    font-weight: 700;
    color: #e67e22;
    margin-right: 4px;
    font-size: 0.75rem;
    background: #fff8e1;
    padding: 1px 6px;
    border-radius: 3px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

/* CART OFF CANVAS */
.offcanvas {
    background: white !important;
}

.offcanvas-header {
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 25px;
}

.offcanvas-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.offcanvas-body { padding: 20px 25px; }

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--light);
    border-color: var(--primary);
    color: var(--primary);
}

.cart-item-remove {
    color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-remove:hover { color: #e74c3c; }

.cart-summary {
    position: sticky;
    bottom: 0;
    background: white;
    padding-top: 10px;
}

/* TOAST */
.toast {
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
    .catalog-header-content h1 { font-size: 2.5rem; }
    .history-experience {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions .btn {
        padding: 12px 25px;
        font-size: 0.8rem;
    }
    .section-padding { padding: 60px 0; }
    .section-title { font-size: 1.8rem; }
    .catalog-header { padding: 120px 0 50px; }
    .catalog-header-content h1 { font-size: 2rem; }
    .product-image { height: 250px; }
    .stat-number { font-size: 1.5rem; }
    .schedule-image img { height: 250px; }
    .whatsapp-btn { width: 50px; height: 50px; font-size: 1.5rem; }
}
