:root {
    --primary: #9b6b7c;
    --primary-light: #b08898;
    --primary-dark: #6d4a58;
    --accent: #c9a87c;
    --accent-light: #dfc4a0;
    --cream: #faf8f5;
    --warm-gray: #f5f2ed;
    --text-dark: #2d2d2d;
    --text-muted: #6b6b6b;
    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: transparent;
    overflow-x: hidden;
}
/* Si tienes un header o nav específico */
header, nav {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

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

.text-accent {
    color: var(--accent);
}

/* Navbar */
.navbar-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 0.8rem 0;
    transition: var(--transition);
    background: white;
}

.navbar-top.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.6rem 0;
}

.navbar-top .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.navbar-top .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}

.navbar-top.scrolled .navbar-brand {
    color: var(--primary);
}

.brand-icon {
    color: var(--accent);
    font-size: 1.1rem;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.navbar-links .nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.4rem 0.8rem;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    border-radius: 50px;
}

.navbar-links .nav-link:hover,
.navbar-links .nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.navbar-top.scrolled .nav-link {
    color: var(--text-dark);
}

.navbar-top.scrolled .nav-link:hover,
.navbar-top.scrolled .nav-link.active {
    color: var(--primary);
    background: rgba(155, 107, 124, 0.08);
}

.btn-whatsapp-nav {
    background: var(--whatsapp);
    color: white !important;
    border: none;
    border-radius: 50px;
    padding: 0.45rem 1rem !important;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-whatsapp-nav:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    color: white !important;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-icon {
    color: var(--accent);
    font-size: 1.2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.btn-whatsapp-nav {
    background: var(--whatsapp);
    color: white !important;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.2rem !important;
    font-weight: 500;
    transition: var(--transition);
}

.btn-whatsapp-nav:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-nav::after {
    display: none !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #b08898 0%, #9b6b7c 50%, #6d4a58 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    min-height: calc(100vh - 200px);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.hero-text-col {
    flex: 1;
    position: relative;
    z-index: 3;
    max-width: 650px;
}

.hero-img-col {
    flex: 1;
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: right;
    max-width: 650px;
}

.hero-img-wrapper {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.15);
}

.hero-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: white;
    padding: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    max-width: 100%;
}

.hero-brand {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--accent-light);
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 0 2rem 0;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--accent);
    color: var(--text-dark);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 168, 83, 0.4);
    color: var(--text-dark);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

/* Section Styles */
.section {
    padding: 6rem 0;
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

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

.service-card-img {
    height: 220px;
    background: linear-gradient(135deg, var(--warm-gray), var(--cream));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-card-img i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.6;
    transition: var(--transition);
}

.service-card:hover .service-card-img i {
    transform: scale(1.1);
    opacity: 0.8;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-body {
    padding: 1.5rem;
}

.service-card-body h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.service-card-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--whatsapp);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    border: none;
}

.btn-service:hover {
    background: var(--whatsapp-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Category Sections */
.category-section {
    background: white;
    padding: 5rem 0;
}

.category-section:nth-child(even) {
    background: var(--warm-gray);
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.category-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--cream), var(--warm-gray));
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.gallery-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.gallery-placeholder span {
    font-size: 0.85rem;
    opacity: 0.7;
}

.category-cta {
    text-align: center;
    padding-top: 1rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.1);
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
}

@media (min-width: 992px) {
    .footer .row > .col-lg-4:first-child {
        text-align: left !important;
    }
    .footer .row > .col-lg-4:nth-child(2) {
        text-align: center !important;
    }
    .footer .row > .col-lg-4:last-child {
        text-align: right !important;
    }
    .footer .row > .col-lg-4:last-child .footer-contact-btn {
        justify-content: flex-end;
    }
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.footer-services {
    gap: 1.5rem;
}

.footer-service-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
}

.footer-service-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.footer-service-link i {
    font-size: 1.1rem;
}

.footer-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--whatsapp);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}

.footer-contact-btn:hover {
    background: var(--whatsapp-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.footer-contact-btn i {
    font-size: 1.3rem;
}

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

.footer-bottom {
    padding: 1rem 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-links {
        gap: 0.15rem;
    }
    
    .navbar-links .nav-link {
        font-size: 0.8rem;
        padding: 0.35rem 0.6rem;
    }
    
    .btn-whatsapp-nav {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem !important;
    }
    
    .navbar-top .navbar-brand {
        font-size: 1rem;
    }
    
    .brand-text {
        display: none;
    }
}

@media (max-width: 767px) {
    .footer-content .row > [class*="col-"] {
        text-align: center !important;
    }
    
    .footer-services {
        gap: 0.8rem;
    }
    
    .footer-service-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .footer-contact-btn {
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
    }
    
    .footer-brand {
        font-size: 1.5rem;
    }
    
    .navbar-links {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        flex-shrink: 1;
        min-width: 0;
    }
    
    .navbar-links::-webkit-scrollbar {
        display: none;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .category-section {
        padding: 3rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-img-wrapper {
        max-width: 280px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
