/* ===== VARIABLES & ESTILOS GLOBALES ===== */
:root {
    --primary-color: #d4af37;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f5;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --accent: #c9a961;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
    --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(--white);
    background: var(--dark-bg);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.header-top {
    background: var(--dark-bg);
    color: var(--white);
    padding: 14px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    letter-spacing: 0.3px;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--white);
}

.phone-icon,
.contact-info i {
    color: var(--primary-color);
}

.divider {
    color: rgba(212, 175, 55, 0.5);
    font-weight: 300;
}

.location {
    color: rgba(255, 255, 255, 0.9);
}

.location i {
    margin-right: 6px;
}

.promo-text {
    flex: 1;
    text-align: right;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.promo-text span {
    animation: shimmerText 2s ease-in-out infinite;
}

.header-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.social-link:hover {
    color: var(--white);
    transform: scale(1.15);
}

@keyframes shimmerText {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

/* NAVBAR */
.navbar {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    font-weight: 900;
}

.logo-subtitle {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-search {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-search:hover {
    transform: scale(1.1);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-bg);
    margin: 5px 0;
    transition: var(--transition);
}

/* ===== BOTONES ===== */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-bg);
    border: 2px solid var(--dark-bg);
}

.btn-secondary:hover {
    background: var(--dark-bg);
    color: var(--white);
}

.btn-large {
    padding: 15px 50px;
    font-size: 1.05rem;
}

.btn-product,
.btn-collection {
    width: 100%;
    padding: 12px 20px;
    background: var(--primary-color);
    color: var(--dark-bg);
    font-size: 0.95rem;
    margin-top: auto;
}

.btn-product:hover,
.btn-collection:hover {
    background: var(--accent);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.btn-instagram:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 130px;
    padding-top: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.5);
    z-index: 2;
}

.hero-center-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.hero-text-centered {
    text-align: center;
    max-width: 800px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 0.8s ease-out 0.2s both;
    letter-spacing: 1px;
    max-width: 600px;
    white-space: normal;
    text-align: center;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmerLine {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
}

.badge {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.98);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.badge-icon {
    font-size: 2rem;
}

.badge h4 {
    color: var(--dark-bg);
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.badge p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== SECCION PRODUCTOS DESTACADOS ===== */
.featured-products {
    padding: 100px 0;
    background: var(--dark-bg);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-placeholder {
    font-size: 3rem;
}

.new-badge,
.popular-badge,
.sale-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.new-badge {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.popular-badge {
    background: #ff6b6b;
    color: white;
}

.sale-badge {
    background: #51cf66;
    color: white;
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--white);
}

.product-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.rating {
    font-size: 0.9rem;
    color: var(--text-light);
}

.section-cta {
    text-align: center;
}

/* ===== SECCION VENTAJAS ===== */
.advantages {
    padding: 100px 0;
    background: var(--dark-bg);
    color: var(--white);
}

.advantages::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.3) 25%,
        rgba(212, 175, 55, 0.8) 50%,
        rgba(212, 175, 55, 0.3) 75%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmerLine 3s ease-in-out infinite;
    margin-bottom: 60px;
}

.advantages h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.advantages-intro {
    font-size: 1.15rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.advantage-card:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.advantage-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* ===== SECCION COLECCIONES ===== */
.collections {
    padding: 100px 0;
    background: var(--dark-bg);
    color: var(--white);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.collection-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.collection-header {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.collection-placeholder {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
}

.collection-card p {
    padding: 20px;
    color: rgba(255, 255, 255, 0.8);
    flex-grow: 1;
    text-align: center;
}

.btn-collection {
    margin: 0 20px 20px 20px;
}

/* ===== SECCION FAQ ===== */
.faq {
    padding: 100px 0;
    background: var(--dark-bg);
    color: var(--white);
}

.faq::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.3) 25%,
        rgba(212, 175, 55, 0.8) 50%,
        rgba(212, 175, 55, 0.3) 75%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmerLine 3s ease-in-out infinite;
    margin-bottom: 60px;
}

.faq h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-intro {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.05);
}

.faq-question {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
}

/* ===== SECCION INSTAGRAM ===== */
.instagram-feed {
    padding: 100px 0;
    background: var(--dark-bg);
    color: var(--white);
}

.instagram-header {
    text-align: center;
    margin-bottom: 60px;
}

.instagram-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.instagram-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    cursor: pointer;
    transition: var(--transition);
}

.instagram-item:hover {
    transform: scale(1.05);
}

.image-placeholder-ig {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.instagram-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .overlay {
    opacity: 1;
}

.instagram-item .overlay p {
    color: var(--white);
    font-weight: 600;
    text-align: center;
    font-size: 1.1rem;
}

/* ===== SECCION FINANCIAMIENTO ===== */
.financing {
    padding: 100px 0;
    background: var(--dark-bg);
    color: var(--white);
}

.financing::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.3) 25%,
        rgba(212, 175, 55, 0.8) 50%,
        rgba(212, 175, 55, 0.3) 75%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmerLine 3s ease-in-out infinite;
    margin-bottom: 60px;
}

.financing h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.financing-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 50px;
}

.financing-partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.partner-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.partner-card:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.partner-logo {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.partner-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.partner-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Promo debajo de tarjetas de financiamiento */
.financing-promo {
    text-align: center;
    margin-top: 20px;
}

/* ===== SECCION TESTIMONIOS ===== */
.testimonials {
    padding: 100px 0;
    background: var(--dark-bg);
    color: var(--white);
}

.testimonials h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.stars {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 700;
}

/* ===== SECCION CONTACTO ===== */
.contact {
    padding: 100px 0;
    background: var(--dark-bg);
    color: var(--white);
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-box h3 {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 1.8rem;
}

.contact-item h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.location-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
}

.location-link:hover {
    color: var(--primary-color);
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.social-btn {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--accent);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn-primary {
    align-self: flex-start;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 20px 0;
}

.footer::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.3) 25%,
        rgba(212, 175, 55, 0.8) 50%,
        rgba(212, 175, 55, 0.3) 75%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmerLine 3s ease-in-out infinite;
    margin-bottom: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary-color);
}

.social-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-footer a {
    display: inline-block;
    margin-bottom: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin: 5px 0;
}
/* ICONOS FONT AWESOME */
.advantage-icon i,
.badge-icon i,
.collection-placeholder i,
.contact-icon i,
.partner-logo i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.advantage-card:hover .advantage-icon i {
    transform: scale(1.2) rotate(5deg);
}

.badge-icon i {
    font-size: 2rem;
}

.product-card .image-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
}

.instagram-item .image-placeholder-ig i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.contact-icon i {
    margin-right: 10px;
}

.partner-logo i {
    font-size: 2.5rem;
}

.stars i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 4px;
}

.btn-search i {
    font-size: 1.2rem;
}

/* ===== DIVISORES ENTRE SECCIONES ===== */
.section-divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.3) 25%,
        rgba(212, 175, 55, 0.8) 50%,
        rgba(212, 175, 55, 0.3) 75%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmerLine 3s ease-in-out infinite;
}

/* Aplicar divisores a las secciones principales */
.featured-products::before,
.collections::before,
.instagram-feed::before,
.contact::before,
.testimonials::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.3) 25%,
        rgba(212, 175, 55, 0.8) 50%,
        rgba(212, 175, 55, 0.3) 75%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmerLine 3s ease-in-out infinite;
    margin-bottom: 60px;
}

/* ===== BOTONES FLOTANTES DE REDES SOCIALES ===== */
.floating-social-buttons {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: floatingEntry 0.5s ease-out backwards;
}

.floating-btn:nth-child(1) { animation-delay: 0.1s; }
.floating-btn:nth-child(2) { animation-delay: 0.2s; }
.floating-btn:nth-child(3) { animation-delay: 0.3s; }
.floating-btn:nth-child(4) { animation-delay: 0.4s; }

@keyframes floatingEntry {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.floating-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.floating-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    filter: brightness(1.1);
}

.floating-btn.tiktok {
    background: #000000;
}

.floating-btn.tiktok:hover {
    background: #1a1a1a;
}

.floating-btn.facebook {
    background: #1877f2;
}

.floating-btn.facebook:hover {
    background: #165ec7;
}

.floating-btn.whatsapp {
    background: #25d366;
}

.floating-btn.whatsapp:hover {
    background: #20ba5a;
}

@media (max-width: 768px) {
    .floating-social-buttons {
        right: 15px;
        bottom: 15px;
        gap: 8px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}
