:root {
    --primary-color: #3a6351;
    --secondary-color: #4a7c62;
    --accent-color: #d4b483;
    --light-color: #f2f2f2;
    --dark-color: #333333;
    --text-color: #444444;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: var(--primary-color);
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo span {
    font-size: 1rem;
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 3px;
    margin-top: 0.3rem;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
    position: relative;
}

nav ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: var(--transition);
    padding: 0.5rem 0;
}

nav ul li a:hover {
    color: var(--accent-color);
}

nav ul li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

nav ul li:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Blended Banner */
.blended-banner {
    position: relative;
    display: grid;
    grid-template-columns: 40% 60%;
    height: 80vh;
    overflow: hidden;
    margin-top: 80px;
}

.text-content {
    position: relative;
    z-index: 10;
    padding: 30px;
    margin-left: 0%;
    margin-top: 40%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    max-width: 400px;
    transform: translateZ(30px);
    transition: all 0.4s ease;
}

.text-content h2 {
    color: #ffffff;
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
    margin: 0 0 5px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.text-content h2:nth-of-type(2) {
    color: #e6c786;
    font-size: 2rem;
    margin: 0 0 20px 0;
    font-weight: 500;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.text-content p {
    color: #f0f0f0;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.text-content .btn {
    display: inline-block;
    background: linear-gradient(to right, #8a6d3b, #d4af37);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.text-content .btn:hover {
    background: linear-gradient(to right, #d4af37, #8a6d3b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.blended-image {
    width: 60%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to right, black 0%, black 60%, transparent 95%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.blended-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to left, black 0%, black 85%, transparent 95%);
    position: absolute;
    top: 0%;
    left: 0;
    z-index: 1;
}

/* Alianza Section */
.alianza-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(to right, #f8f5f0 70%, #e8e1d1 30%);
    overflow: hidden;
}

.alianza-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alianza-logo {
    flex: 0 0 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-circle {
    width: 200px;
    height: 200px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 8px solid #e8e1d1;
    position: relative;
}

.logo-inner {
    width: 160px;
    height: 160px;
    background: #f8f5f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px dashed #d4af37;
}

.alianza-logo img {
    width: 100%;
}

.alianza-derecha img {
    width: 80%;
}

.alianza-contenido {
    flex: 0 0 45%;
    padding: 0 30px;
    text-align: center;
}

.alianza-contenido h2 {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    line-height: 1.3;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.divisor {
    height: 4px;
    width: 100px;
    background: linear-gradient(to right, #8a6d3b, #d4af37);
    margin: 30px auto;
}

.alianza-contenido p {
    font-size: 1.1rem;
    color: #5d6d7e;
    line-height: 1.6;
    margin-top: 25px;
}

.decoracion {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #d4af37;
    opacity: 0.3;
}

.decoracion.izquierda {
    left: 40px;
    top: 30%;
}

.decoracion.derecha {
    right: 40px;
    bottom: 40px;
}

.decoracion.rotada {
    transform: rotate(45deg);
}

.decoracion.derecha.rotada {
    transform: rotate(30deg);
    width: 25px;
    height: 25px;
    background: #8a6d3b;
    opacity: 0.2;
}

/* Prestige Gallery */
.tribute-prestige-gallery {
    padding: 4rem 2rem;
    background-color: #f9f9f7;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.prestige-carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.prestige-title {
    text-align: center;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.prestige-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-style: italic;
}

.prestige-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    padding: 1rem 0;
    margin: 0 3rem;
}

.prestige-item {
    flex: 0 0 300px;
    scroll-snap-align: start;
    transition: all 0.3s;
}

.prestige-media {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.prestige-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.prestige-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.prestige-item:hover .prestige-overlay {
    opacity: 1;
}

.prestige-item:hover .prestige-image {
    transform: scale(1.05);
}

.prestige-view-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.prestige-view-btn:hover {
    background: rgba(255,255,255,0.2);
}

.prestige-product-title {
    margin-top: 1.2rem;
    font-size: 1.3rem;
    color: #2c3e50;
}

.prestige-product-desc {
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.prestige-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.prestige-nav-btn:hover {
    background: #f1f1f1;
    transform: translateY(-50%) scale(1.1);
}

.prestige-prev {
    left: 20px;
}

.prestige-next {
    right: 20px;
}

/* Equipos Section */
.equipos-section {
    padding: 60px 0;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../img/lapida.png') center/contain no-repeat;
    color: white;
    text-align: center;
    height: 700px;
    background-color: #f0f0f0;
}

.equipos-section .container {
    margin-left: 50%;
    max-width: 1200px;
}

.equipos-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.equipos-section h3 {
    font-size: 16px;
    color: #eee;
    margin-bottom: 20px;
}

.show-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 3%;
    margin-bottom: 30px;
    transition: background-color 0.3s;
}

.show-btn:hover {
    background-color: #0056b3;
}

.equipos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.equipo-card {
    max-width: 300px;
    border: 1px solid #ddd;
    text-align: center;
    padding: 15px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background-color: rgba(255, 255, 255, 0.9);
}

.equipo-card h3 {
    margin-top: 0;
    color: #333;
}

.equipo-card img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    display: block;
    margin: 0 auto 15px auto;
}

.equipo-card .modelo {
    margin: 5px 0;
    color: #666;
}

.equipo-card .precio {
    margin: 10px 0;
    font-weight: bold;
    color: #2a6496;
}

/* Fusion Section */
.fusion-section-adv {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    padding: 0;
}

.fusion-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fusion-bg-adv {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fusion-video-adv-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    z-index: 2;
    mix-blend-mode: multiply;
}

.fusion-video-adv {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fusion-gradient-mask {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(255,255,255,0) 70%, rgba(255,255,255,1) 100%);
    pointer-events: none;
}

.fusion-content-adv {
    position: relative;
    z-index: 3;
    padding: 5%;
    width: 100%;
    background: rgba(255,255,255,0.6);
}

.fusion-title-adv {
    text-align: center;
}

.fusion-subtitle-adv {
    text-align: justify;
    margin: 20px 0;
}

.fusion-grid-adv {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.fusion-card-adv {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.fusion-card-adv img {
    max-height: 200px;
    object-fit: contain;
    width: 100%;
}

.fusion-modelo-adv {
    color: #666;
}

.fusion-precio-adv {
    color: #2a6496;
    font-weight: bold;
}

/* History Section */
.history-section {
    padding: 6rem 0;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1518895949257-7621c3c786d7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.history-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.history-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.history-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.history-content .btn {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    font-weight: 500;
    letter-spacing: 1px;
    border: 2px solid var(--accent-color);
}

.history-content .btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Mostrario Container */
.mostrario-container {
    display: grid;
    grid-template-columns: 70% 30%;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 80vh;
    max-height: 800px;
    overflow: hidden;
}

.mostrario-main {
    position: relative;
    background: #f5f5f5;
}

.mostrario-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.products-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.19);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
}

.embedded-products-section {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    color: #333;
    line-height: 1.5;
    padding: 30px 0;
    background-color: #ffffff24;
}

.embedded-products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.embedded-section-title {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.embedded-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.embedded-category {
    background-color: #f8f9fa;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #3498db;
    border: 1px solid #3498db;
    transition: all 0.2s ease;
}

.embedded-category:hover {
    background-color: #3498db;
    color: white;
}

.embedded-products-grid.three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}

.embedded-product {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.embedded-product:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.95);
}

.embedded-product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.embedded-product-name {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 500;
}

.embedded-product-price {
    font-size: 1.2rem;
    color: #e74c3c;
    font-weight: 600;
}

.mostrario-video-wrap {
    display: flex;
    flex-direction: column;
    background: #1a1a1a;
    border-left: 1px solid rgba(212, 175, 55, 0.3);
}

.mostrario-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.mostrario-video:hover {
    opacity: 1;
}

.mostrario-video-info {
    padding: 1.5rem;
    height: 30%;
    background: linear-gradient(to bottom, #2c3e50, #1a1a1a);
    color: white;
}

.mostrario-video-title {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.mostrario-video-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
}

.mostrario-main:hover .mostrario-img {
    transform: scale(1.03);
}

/* Artisan Parallax Section */
.artisan-parallax-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.8);
    will-change: transform;
    background-image: url('../img/mostrario.png');
}

.artisan-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

.artisan-showcase-container {
    width: 90%;
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
    color: white;
}

.artisan-showcase-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.artisan-showcase-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Playfair Display', serif;
}

.artisan-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.artisan-tag {
    padding: 0.6rem 1.2rem;
    background: rgba(255,255,255,0.15);
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.artisan-tag:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

.horizontal-products-container {
    width: 100%;
    overflow-x: auto;
    padding: 1.5rem 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.horizontal-products-container::-webkit-scrollbar {
    display: none;
}

.products-scroll-track {
    display: inline-flex;
    gap: 1.5rem;
    padding: 0 2rem;
}

.artisan-product-card {
    min-width: 250px;
    padding: 1.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.15);
    flex-shrink: 0;
}

.artisan-product-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.artisan-product-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.product-name {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    min-height: 3rem;
    color: white;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFD700;
}

.scroll-navigation {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.scroll-prev-btn,
.scroll-next-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.scroll-prev-btn:hover,
.scroll-next-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

.three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.value-card {
    background-color: var(--light-color);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-color);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.3rem;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 0.3rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom i {
    color: #d4b483;
}

/* Responsive Design */
@media (max-width: 992px) {
    .text-content h2 {
        font-size: 2.8rem;
    }
    
    .text-content h2:nth-of-type(2) {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease;
        box-shadow: var(--shadow);
    }
    
    nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    nav ul {
        flex-direction: column;
        padding: 1rem;
    }
    
    nav ul li {
        margin: 0;
        padding: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .blended-banner {
        height: 70vh;
        margin-top: 70px;
        grid-template-columns: 1fr;
    }
    
    .text-content {
        padding: 1.5rem;
        margin-top: 20%;
        max-width: 90%;
    }
    
    .text-content h2 {
        font-size: 2.2rem;
    }
    
    .text-content h2:nth-of-type(2) {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .text-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .alianza-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .alianza-logo {
        flex: 0 0 auto;
    }
    
    .alianza-contenido {
        flex: 0 0 auto;
        padding: 0;
    }
    
    .alianza-contenido h2 {
        font-size: 2rem;
    }
    
    .prestige-track {
        margin: 0 1rem;
    }
    
    .prestige-item {
        flex: 0 0 250px;
    }
    
    .prestige-media {
        height: 300px;
    }
    
    .prestige-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .equipos-section .container {
        margin-left: 0;
        padding: 0 20px;
    }
    
    .equipos-section {
        height: auto;
        padding: 40px 0;
    }
    
    .mostrario-container {
        grid-template-columns: 100%;
        height: auto;
        margin-left: 0;
        width: 100%;
    }
    
    .mostrario-video-wrap {
        border-left: none;
        border-top: 1px solid rgba(212, 175, 55, 0.3);
    }
    
    .mostrario-video {
        height: 300px;
    }
    
    .embedded-products-grid.three-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .artisan-parallax-section {
        height: auto;
        min-height: 100vh;
        padding: 4rem 0;
    }
    
    .parallax-bg {
        position: absolute;
        background-attachment: scroll;
    }
    
    .artisan-showcase-title {
        font-size: 2.2rem;
    }
    
    .artisan-showcase-subtitle {
        font-size: 1.1rem;
    }
    
    .products-scroll-track {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .artisan-product-card {
        min-width: 200px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .three-columns {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .blended-banner {
        height: 60vh;
    }
    
    .text-content h2 {
        font-size: 1.8rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo span {
        font-size: 0.8rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .embedded-products-grid.three-columns {
        grid-template-columns: 1fr;
    }
    
    .embedded-category {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}






