/* Root Variables */
:root {
    --primary-color: #fce4ec; /* Soft Blush */
    --secondary-color: #d4af37; /* Metallic Gold */
    --accent-color: #f8bbd0; /* Rose Pink */
    --dark-color: #263238; /* Charcoal Slate */
    --text-color: #455a64; /* Slate Gray */
    --body-bg: #fafafa;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--body-bg);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Navigation */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    flex-shrink: 0;
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.1;
}

.logo span {
    display: block;
    color: var(--secondary-color);
    font-weight: 300;
    font-style: italic;
    font-size: 1rem;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin-left: auto;
    margin-right: 2.5rem;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu li {
    margin-left: 0;
}

.nav-menu a {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    white-space: nowrap;
    color: var(--dark-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Authentication Section - Elegant & Subtle */
.auth-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 90px;
    flex-shrink: 0;
}

.auth-btn {
    padding: 4px 14px;
    border: 1px solid #c5a059;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #c5a059;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.auth-btn:hover {
    background: #c5a059;
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(197, 160, 89, 0.2);
}

.auth-link {
    font-size: 8px;
    color: #9e9e9e;
    font-style: italic;
    text-decoration: none;
    opacity: 0.8;
    transition: 0.3s;
}

.auth-link:hover {
    opacity: 1;
    color: #c5a059;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    background: #000;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.carousel-caption {
    position: absolute;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
    z-index: 5;
    transform: translateY(20px);
    transition: transform 0.8s ease;
}

.carousel-slide.active .carousel-caption {
    transform: translateY(0);
}

.carousel-caption h2 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: #c19b2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Welcome Section */
.welcome-section {
    padding: 100px 0;
    text-align: center;
}

.welcome-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.subtitle {
    color: var(--secondary-color);
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.featured-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.benefit {
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit:hover {
    transform: translateY(-10px);
}

.benefit .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

/* Footer Styles */
.main-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.footer-col h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

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

.footer-col ul li {
    font-size: 0.88rem !important;
    margin-bottom: 4px !important;
    line-height: 1.5 !important;
    opacity: 0.8;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: default;
}

.footer-col ul li:hover {
    color: var(--secondary-color) !important;
    padding-left: 5px !important;
    opacity: 1;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Dentro del footer, los enlaces de RRSS se muestran como texto elegante */
.social-links .btn-instagram,
.social-links .btn-facebook,
.social-links .btn-tiktok,
.social-links .btn-whatsapp {
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 3px 0 !important;
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.87rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.3px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    transition: color 0.3s ease, padding-left 0.3s ease !important;
    transform: none !important;
}

.social-links .btn-instagram:hover,
.social-links .btn-facebook:hover,
.social-links .btn-tiktok:hover,
.social-links .btn-whatsapp:hover {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    color: var(--secondary-color) !important;
    padding-left: 5px !important;
    transform: none !important;
}

.social-links a {
    font-size: 0.87rem;
    opacity: 0.75;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color) !important;
    padding-left: 5px !important;
    opacity: 1;
}

.footer-col p {
    font-size: 0.88rem !important;
    opacity: 0.8;
    margin-bottom: 4px !important;
    line-height: 1.5 !important;
    word-break: break-word;
    overflow-wrap: break-word;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        align-items: center;
    }

    .footer-col ul li, .social-links a, .footer-col p {
        white-space: normal !important;
    }
}
