 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     background: #f5f5f5;
 }

 :root {
     --color-primary: #17A2B8;
     /* Turquesa */
     --color-secondary: #E91E8C;
     /* Rosa/Magenta */
     --color-accent: #F39C12;
     /* Naranja */
     --color-dark: #1a1a1a;
     --color-light: #fff;
     --color-gray: #666;
 }





 /* ============= HERO SECTION ============= */
 .hero {
     position: relative;
     height: 100vh;
     min-height: 600px;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     color: #fff;
 }

 .hero-background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: url("../img/img-index.jpg");
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     animation: kenBurns 20s ease-in-out infinite alternate;
 }

 @keyframes kenBurns {
     0% {
         transform: scale(1);
     }

     100% {
         transform: scale(1.1);
     }
 }

 .hero-background::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg,
             rgba(26, 26, 26, 0.85) 0%,
             rgba(26, 26, 26, 0.6) 50%,
             rgba(26, 26, 26, 0.85) 100%);
 }

 .hero-background::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: radial-gradient(circle at center,
             transparent 0%,
             rgba(212, 175, 55, 0.1) 50%,
             rgba(0, 0, 0, 0.3) 100%);
     animation: pulse 8s ease-in-out infinite;
 }

 @keyframes gradientShift {

     0%,
     100% {
         background-position: 0% 50%;
     }

     50% {
         background-position: 100% 50%;
     }
 }

 @keyframes pulse {

     0%,
     100% {
         opacity: 0.5;
     }

     50% {
         opacity: 1;
     }
 }

 .hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to bottom,
             rgba(0, 0, 0, 0.3) 0%,
             transparent 50%,
             rgba(0, 0, 0, 0.5) 100%);
     z-index: 1;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     text-align: center;
     max-width: 900px;
     padding: 0 20px;
     animation: fadeInUp 1s ease-out;
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .hero-subtitle {
     display: inline-block;
     color: var(--color-primary);
     font-size: 14px;
     letter-spacing: 3px;
     text-transform: uppercase;
     margin-bottom: 20px;
     font-weight: 500;
     animation: fadeInUp 1s ease-out 0.2s both;
 }

 .hero-title {
     font-size: 64px;
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 25px;
     animation: fadeInUp 1s ease-out 0.4s both;
 }

 .hero-highlight {
     background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     display: inline-block;
     position: relative;
 }

 .hero-highlight::after {
     content: '';
     position: absolute;
     bottom: 10px;
     left: 0;
     width: 100%;
     height: 3px;
 }

 .hero-description {
     font-size: 18px;
     line-height: 1.8;
     margin-bottom: 40px;
     color: rgba(255, 255, 255, 0.9);
     animation: fadeInUp 1s ease-out 0.6s both;
 }

 .hero-buttons {
     display: flex;
     gap: 20px;
     justify-content: center;
     flex-wrap: wrap;
     margin-bottom: 60px;
     animation: fadeInUp 1s ease-out 0.8s both;
 }

 .btn {
     padding: 15px 35px;
     font-size: 16px;
     font-weight: 600;
     text-decoration: none;
     border-radius: 50px;
     transition: all 0.3s ease;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     cursor: pointer;
     border: 2px solid transparent;
 }

 .btn-primary {
     background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
     color: #fff;
     box-shadow: 0 8px 25px rgba(23, 162, 184, 0.3);
 }

 .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 12px 35px rgba(233, 30, 140, 0.5);
 }

 .btn-icon {
     transition: transform 0.3s ease;
 }

 .btn-primary:hover .btn-icon {
     transform: translateX(5px);
 }

 .btn-secondary {
     background: transparent;
     color: #fff;
     border: 2px solid var(--color-primary);
 }

 .btn-secondary:hover {
     background: var(--color-primary);
     transform: translateY(-3px);
 }

 .hero-features {
     display: flex;
     justify-content: center;
     gap: 40px;
     flex-wrap: wrap;
     animation: fadeInUp 1s ease-out 1s both;
 }

 .feature-item {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 15px;
     color: rgba(255, 255, 255, 0.9);
 }

 .feature-icon {
     font-size: 24px;
     filter: drop-shadow(0 0 10px rgba(23, 162, 184, 0.5));
 }

 .hero-scroll {
     position: absolute;
     bottom: 40px;
     left: 50%;
     transform: translateX(-50%);
     text-align: center;
     color: rgba(255, 255, 255, 0.7);
     font-size: 13px;
     letter-spacing: 2px;
     text-transform: uppercase;
     z-index: 2;
     animation: fadeIn 1s ease-out 1.5s both;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 .scroll-arrow {
     margin-top: 10px;
     font-size: 24px;
     animation: bounce 2s infinite;
 }

 @keyframes bounce {

     0%,
     20%,
     50%,
     80%,
     100% {
         transform: translateY(0);
     }

     40% {
         transform: translateY(-10px);
     }

     60% {
         transform: translateY(-5px);
     }
 }

 /* Responsive */
 @media (max-width: 968px) {
     .hero {
         min-height: 500px;
     }

     .hero-title {
         font-size: 42px;
     }

     .hero-description {
         font-size: 16px;
     }

     .hero-description br {
         display: none;
     }

     .hero-buttons {
         flex-direction: column;
         align-items: center;
     }

     .btn {
         width: 100%;
         max-width: 300px;
         justify-content: center;
     }

     .hero-features {
         gap: 20px;
     }

     .feature-item {
         font-size: 13px;
     }

     .feature-icon {
         font-size: 20px;
     }
 }

 /* ============= SECCIÓN: CON AMOR A LOS DETALLES ============= */
 .about-section {
     background: #fff;
     padding: 100px 20px;
     overflow: hidden;
 }

 .about-container {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
 }

 .about-image {
     position: relative;
     overflow: hidden;
     border-radius: 10px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
     animation: fadeInLeft 1s ease-out;
 }

 @keyframes fadeInLeft {
     from {
         opacity: 0;
         transform: translateX(-50px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 .about-image::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg,
             rgba(212, 175, 55, 0.2) 0%,
             transparent 100%);
     z-index: 1;
     transition: opacity 0.3s ease;
 }

 .about-image:hover::before {
     opacity: 0;
 }

 .about-image img {
     width: 100%;
     height: 600px;
     object-fit: cover;
     display: block;
     transition: transform 0.5s ease;
 }

 .about-image:hover img {
     transform: scale(1.05);
 }

 .about-content {
     animation: fadeInRight 1s ease-out;
 }

 @keyframes fadeInRight {
     from {
         opacity: 0;
         transform: translateX(50px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 .about-badge {
     display: inline-block;
     background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
     color: #fff;
     padding: 8px 20px;
     border-radius: 50px;
     font-size: 13px;
     font-weight: 600;
     letter-spacing: 2px;
     text-transform: uppercase;
     margin-bottom: 20px;
 }

 .about-title {
     font-size: 48px;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 25px;
     line-height: 1.2;
 }

 .about-title span {
     color: var(--color-primary);
     position: relative;
     display: inline-block;
 }

 .about-description {
     font-size: 18px;
     line-height: 1.8;
     color: #666;
     margin-bottom: 20px;
 }

 .about-description strong {
     color: #1a1a1a;
     font-weight: 600;
 }

 .about-highlights {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
     margin-top: 40px;
 }

 .highlight-item {
     text-align: center;
     padding: 20px;
     background: #f9f9f9;
     border-radius: 10px;
     transition: all 0.3s ease;
 }

 .highlight-item:hover {
     background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(23, 162, 184, 0.3);
 }

 .highlight-item:hover .highlight-icon {
     transform: scale(1.2);
 }

 .highlight-item:hover .highlight-text {
     color: #fff;
 }

 .highlight-icon {
     font-size: 32px;
     margin-bottom: 10px;
     transition: transform 0.3s ease;
 }

 .highlight-text {
     font-size: 14px;
     font-weight: 600;
     color: #666;
     transition: color 0.3s ease;
 }

 .about-btn {
     display: inline-block;
     margin-top: 30px;
     padding: 15px 40px;
     background: transparent;
     color: var(--color-primary);
     border: 2px solid var(--color-primary);
     border-radius: 50px;
     font-size: 16px;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .about-btn:hover {
     background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
     color: #fff;
     transform: translateY(-3px);
     box-shadow: 0 10px 30px rgba(23, 162, 184, 0.3);
 }

 /* Responsive About Section */
 @media (max-width: 968px) {
     .about-section {
         padding: 60px 20px;
     }

     .about-container {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .about-image {
         order: 2;
     }

     .about-content {
         order: 1;
     }

     .about-image img {
         height: 400px;
     }

     .about-title {
         font-size: 36px;
     }

     .about-description {
         font-size: 16px;
     }

     .about-highlights {
         grid-template-columns: 1fr;
         gap: 15px;
     }
 }

 /* ============= SECCIÓN: PRODUCTOS DESTACADOS ============= */
 .products-section {
     background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
     padding: 100px 20px;
     position: relative;
     overflow: hidden;
 }

 .products-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: radial-gradient(circle at 20% 80%, rgba(23, 162, 184, 0.05) 0%, transparent 50%);
     pointer-events: none;
 }

 .products-container {
     max-width: 1200px;
     margin: 0 auto;
     position: relative;
     z-index: 1;
 }

 .products-header {
     text-align: center;
     margin-bottom: 60px;
     animation: fadeInUp 0.8s ease-out;
 }

 .products-badge {
     display: inline-block;
     background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
     color: #fff;
     padding: 8px 20px;
     border-radius: 50px;
     font-size: 13px;
     font-weight: 600;
     letter-spacing: 2px;
     text-transform: uppercase;
     margin-bottom: 20px;
 }

 .products-title {
     font-size: 48px;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 15px;
 }

 .products-subtitle {
     font-size: 18px;
     color: #666;
     max-width: 600px;
     margin: 0 auto;
 }

 .products-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
     margin-bottom: 50px;
 }

 .product-card {
     background: #fff;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     cursor: pointer;
     animation: fadeInUp 0.8s ease-out backwards;
 }

 .product-card:nth-child(1) {
     animation-delay: 0.1s;
 }

 .product-card:nth-child(2) {
     animation-delay: 0.2s;
 }

 .product-card:nth-child(3) {
     animation-delay: 0.3s;
 }

 .product-card:nth-child(4) {
     animation-delay: 0.4s;
 }

 .product-card:nth-child(5) {
     animation-delay: 0.5s;
 }

 .product-card:nth-child(6) {
     animation-delay: 0.6s;
 }

 .product-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 40px rgba(23, 162, 184, 0.25);
 }

 .product-image-wrapper {
     position: relative;
     overflow: hidden;
     height: 320px;
     background: #f5f5f5;
 }

 .product-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .product-card:hover .product-image {
     transform: scale(1.1);
 }

 .product-badge {
     position: absolute;
     top: 15px;
     left: 15px;
     background: var(--color-secondary);
     color: #fff;
     padding: 6px 15px;
     border-radius: 50px;
     font-size: 12px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     z-index: 2;
 }

 .product-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .product-card:hover .product-overlay {
     opacity: 1;
 }

 .product-info {
     padding: 25px;
 }

 .product-category {
     font-size: 12px;
     color: var(--color-primary);
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1.5px;
     margin-bottom: 8px;
 }

 .product-name {
     font-size: 20px;
     font-weight: 600;
     color: #1a1a1a;
     margin-bottom: 10px;
     line-height: 1.3;
     min-height: 52px;
 }

 .product-description {
     font-size: 14px;
     color: #666;
     margin-bottom: 15px;
     line-height: 1.6;
 }

 .product-footer {
     display: flex;
     justify-content: center;
     align-items: center;
     padding-top: 15px;
     border-top: 1px solid #f0f0f0;
 }

 .product-price {
     font-size: 28px;
     font-weight: 700;
     color: #1a1a1a;
 }

 .product-price-currency {
     font-size: 20px;
     color: var(--color-secondary);
     margin-left: 2px;
 }

 .products-view-all {
     text-align: center;
     margin-top: 50px;
 }

 .btn-view-all {
     display: inline-block;
     padding: 18px 50px;
     background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
     color: #fff;
     font-size: 16px;
     font-weight: 700;
     text-decoration: none;
     border-radius: 50px;
     transition: all 0.3s ease;
     box-shadow: 0 8px 25px rgba(23, 162, 184, 0.3);
 }

 .btn-view-all:hover {
     transform: translateY(-3px);
     box-shadow: 0 12px 35px rgba(233, 30, 140, 0.5);
 }

 /* Responsive Products */
 @media (max-width: 968px) {
     .products-section {
         padding: 60px 20px;
     }

     .products-title {
         font-size: 36px;
     }

     .products-grid {
         grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
         gap: 20px;
     }

     .product-image-wrapper {
         height: 280px;
     }

     .product-name {
         font-size: 18px;
         min-height: auto;
     }
 }

 /* ============= SECCIÓN 6: PLATA DE LEY ============= */
 .quality-section {
     background: #1a1a1a;
     color: #fff;
     padding: 100px 20px;
     position: relative;
     overflow: hidden;
 }

 .quality-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: radial-gradient(circle at 80% 20%, rgba(233, 30, 140, 0.1) 0%, transparent 50%);
     pointer-events: none;
 }

 .quality-container {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
     position: relative;
     z-index: 1;
 }

 .quality-content {
     animation: fadeInLeft 1s ease-out;
 }

 .quality-badge {
     display: inline-block;
     background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
     color: #1a1a1a;
     padding: 8px 20px;
     border-radius: 50px;
     font-size: 13px;
     font-weight: 600;
     letter-spacing: 2px;
     text-transform: uppercase;
     margin-bottom: 20px;
 }

 .quality-title {
     font-size: 48px;
     font-weight: 700;
     margin-bottom: 25px;
     line-height: 1.2;
     color: #fff;
 }

 .quality-title span {
     color: #CBCBCB;
 }

 .quality-description {
     font-size: 18px;
     line-height: 1.8;
     color: rgba(255, 255, 255, 0.8);
     margin-bottom: 30px;
 }

 .quality-features {
     display: grid;
     gap: 20px;
 }

 .quality-feature {
     display: flex;
     gap: 20px;
     align-items: flex-start;
     padding: 20px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 10px;
     border-left: 3px solid var(--color-secondary);
     transition: all 0.3s ease;
 }

 .quality-feature:hover {
     background: rgba(23, 162, 184, 0.1);
     transform: translateX(10px);
 }

 .quality-icon {
     font-size: 32px;
     min-width: 40px;
 }

 .quality-feature-content h3 {
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 8px;
     color: var(--color-primary);
 }

 .quality-feature-content p {
     font-size: 15px;
     color: rgba(255, 255, 255, 0.7);
     line-height: 1.6;
 }

 .quality-image {
     position: relative;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
     animation: fadeInRight 1s ease-out;
 }

 .quality-image img {
     width: 100%;
     height: 600px;
     object-fit: cover;
     display: block;
 }

 .quality-stamp {
     position: absolute;
     bottom: 30px;
     right: 30px;
     background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
     color: #fff;
     width: 120px;
     height: 120px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     font-weight: 700;
     text-align: center;
     box-shadow: 0 10px 30px rgba(23, 162, 184, 0.5);
     animation: pulse-stamp 2s ease-in-out infinite;
 }

 @keyframes pulse-stamp {

     0%,
     100% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.05);
     }
 }

 .quality-stamp-number {
     font-size: 32px;
     line-height: 1;
 }

 .quality-stamp-text {
     font-size: 12px;
     letter-spacing: 1px;
 }

 /* ============= SECCIÓN 7: REPARACIÓN DE RELOJES ============= */
 .repair-section {
     background: #f9f9f9;
     padding: 100px 20px;
     position: relative;
 }

 .repair-container {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
 }

 .repair-image {
     position: relative;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
     animation: fadeInLeft 1s ease-out;
     order: 1;
 }

 .repair-image img {
     width: 100%;
     height: 600px;
     object-fit: cover;
     display: block;
 }

 .repair-content {
     animation: fadeInRight 1s ease-out;
     order: 2;
 }

 .repair-badge {
     display: inline-block;
     background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
     color: #1a1a1a;
     padding: 8px 20px;
     border-radius: 50px;
     font-size: 13px;
     font-weight: 600;
     letter-spacing: 2px;
     text-transform: uppercase;
     margin-bottom: 20px;
 }

 .repair-title {
     font-size: 48px;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 25px;
     line-height: 1.2;
 }

 .repair-title span {
     color: var(--color-secondary);
 }

 .repair-description {
     font-size: 18px;
     line-height: 1.8;
     color: #666;
     margin-bottom: 30px;
 }

 .repair-services {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
     margin-bottom: 30px;
 }

 .repair-service {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 15px;
     background: #fff;
     border-radius: 8px;
     transition: all 0.3s ease;
 }

 .repair-service:hover {
     background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
     color: #fff;
     transform: translateY(-3px);
     box-shadow: 0 5px 15px rgba(23, 162, 184, 0.3);
 }

 .repair-service-icon {
     font-size: 24px;
 }

 .repair-service-text {
     font-size: 15px;
     font-weight: 600;
     color: #1a1a1a;
 }

 .repair-service:hover .repair-service-text {
     color: #fff;
 }

 .repair-cta {
     display: flex;
     gap: 20px;
     align-items: center;
 }

 .repair-btn {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 15px 35px;
     background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
     color: #fff;
     font-size: 16px;
     font-weight: 600;
     text-decoration: none;
     border-radius: 50px;
     transition: all 0.3s ease;
     box-shadow: 0 8px 25px rgba(23, 162, 184, 0.3);
 }

 .repair-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 12px 35px rgba(233, 30, 140, 0.5);
 }

 .repair-phone {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 20px;
     font-weight: 700;
     color: var(--color-primary);
     text-decoration: none;
 }

 /* Responsive Quality & Repair */
 @media (max-width: 968px) {

     .quality-section,
     .repair-section {
         padding: 60px 20px;
     }

     .quality-container,
     .repair-container {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .quality-title,
     .repair-title {
         font-size: 36px;
     }

     .quality-description,
     .repair-description {
         font-size: 16px;
     }

     .quality-image,
     .repair-image {
         order: 1;
     }

     .quality-content,
     .repair-content {
         order: 2;
     }

     .quality-image img,
     .repair-image img {
         height: 400px;
     }

     .repair-services {
         grid-template-columns: 1fr;
     }

     .repair-cta {
         flex-direction: column;
         align-items: flex-start;
     }
 }

 /* ============= SECCIÓN 7: REPARACIÓN DE JOYERIA ============= */
 .jewelry-section {
     background: #fff;
     padding: 100px 20px;
     position: relative;
 }

 .jewelry-container {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
 }

 .jewelry-image {
     position: relative;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
     animation: fadeInLeft 1s ease-out;
     order: 2;
 }

 .jewelry-image img {
     width: 100%;
     height: 600px;
     object-fit: cover;
     display: block;
 }

 .jewelry-content {
     animation: fadeInRight 1s ease-out;
     order: 1;
 }

 .jewelry-badge {
     display: inline-block;
     background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
     color: #1a1a1a;
     padding: 8px 20px;
     border-radius: 50px;
     font-size: 13px;
     font-weight: 600;
     letter-spacing: 2px;
     text-transform: uppercase;
     margin-bottom: 20px;
 }

 .jewelry-title {
     font-size: 48px;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 25px;
     line-height: 1.2;
 }

 .jewelry-title span {
     color: var(--color-accent);
 }

 .jewelry-description {
     font-size: 18px;
     line-height: 1.8;
     color: #666;
     margin-bottom: 30px;
 }

 .jewelry-services {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
     margin-bottom: 30px;
 }

 .jewelry-service {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 15px;
     background: #f9f9f9;
     border-radius: 8px;
     transition: all 0.3s ease;
 }

 .jewelry-service:hover {
     background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
     color: #fff;
     transform: translateY(-3px);
     box-shadow: 0 5px 15px rgba(23, 162, 184, 0.3);
 }

 .jewelry-service-icon {
     font-size: 24px;
 }

 .jewelry-service-text {
     font-size: 15px;
     font-weight: 600;
     color: #1a1a1a;
 }

 .jewelry-service:hover .jewelry-service-text {
     color: #fff;
 }

 .jewelry-cta {
     display: flex;
     gap: 20px;
     align-items: center;
 }

 .jewelry-btn {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 15px 35px;
     background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
     color: #fff;
     font-size: 16px;
     font-weight: 600;
     text-decoration: none;
     border-radius: 50px;
     transition: all 0.3s ease;
     box-shadow: 0 8px 25px rgba(23, 162, 184, 0.3);
 }

 .jewelry-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 12px 35px rgba(233, 30, 140, 0.5);
 }

 .jewelry-phone {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 20px;
     font-weight: 700;
     color: var(--color-primary);
     text-decoration: none;
 }

 /* Responsive Quality & Repair */
 @media (max-width: 968px) {

     .quality-section,
     .jewelry-section {
         padding: 60px 20px;
     }

     .quality-container,
     .jewelry-container {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .quality-title,
     .jewelry-title {
         font-size: 36px;
     }

     .quality-description,
     .jewelry-description {
         font-size: 16px;
     }

     .quality-image,
     .jewelry-image {
         order: 1;
     }

     .quality-content,
     .jewelry-content {
         order: 2;
     }

     .quality-image img,
     .jewelry-image img {
         height: 400px;
     }

     .jewelry-services {
         grid-template-columns: 1fr;
     }

     .jewelry-cta {
         flex-direction: column;
         align-items: flex-start;
     }
 }

 /* ============= SECCIÓN: VEN A VISITARNOS ============= */
 .location-section {
     background: #f9f9f9;
     padding: 100px 20px;
 }

 .location-container {
     max-width: 1200px;
     margin: 0 auto;
 }

 .location-header {
     text-align: center;
     margin-bottom: 60px;
     animation: fadeInUp 0.8s ease-out;
 }

 .location-badge {
     display: inline-block;
     background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
     color: #fff;
     padding: 8px 20px;
     border-radius: 50px;
     font-size: 13px;
     font-weight: 600;
     letter-spacing: 2px;
     text-transform: uppercase;
     margin-bottom: 20px;
 }

 .location-title {
     font-size: 48px;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 15px;
 }

 .location-subtitle {
     font-size: 18px;
     color: #666;
 }

 .location-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     margin-bottom: 50px;
 }

 .location-info {
     background: #fff;
     padding: 30px;
     /* Reduced from 40px */
     border-radius: 15px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
     animation: fadeInLeft 0.8s ease-out;
 }

 .location-map {
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
     animation: fadeInRight 0.8s ease-out;
     position: relative;
 }

 .location-map img {
     width: 100%;
     height: 100%;
     min-height: 450px;
     object-fit: cover;
     display: block;
     transition: transform 0.5s ease;
 }

 .location-map:hover img {
     transform: scale(1.05);
 }

 .location-item {
     margin-bottom: 20px;
     padding-bottom: 20px;
     border-bottom: 1px solid #f0f0f0;
     display: flex;
     align-items: flex-start;
     gap: 30px;
 }

 .location-item:last-child {
     border-bottom: none;
     margin-bottom: 0;
     padding-bottom: 0;
 }

 .location-item-header {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 0;
     width: 180px;
     /* Fixed width for alignment */
     flex-shrink: 0;
 }

 .location-icon {
     width: 50px;
     height: 50px;
     background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     color: #fff;
 }

 .location-item-title {
     font-size: 20px;
     font-weight: 700;
     color: #1a1a1a;
 }

 .location-item-content {
     padding-left: 0;
     flex: 1;
 }

 .location-item-text {
     font-size: 16px;
     line-height: 1.8;
     color: #666;
     margin-bottom: 10px;
 }

 .location-item-link {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     color: var(--color-primary);
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s ease;
     font-size: 16px;
 }

 .location-item-link:hover {
     color: var(--color-secondary);
     gap: 12px;
 }

 .location-social {
     display: flex;
     gap: 15px;
     flex-wrap: wrap;
 }

 .location-social-link {
     width: 50px;
     height: 50px;
     background: #f9f9f9;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--color-primary);
     font-size: 24px;
     text-decoration: none;
     transition: all 0.3s ease;
     border: 2px solid transparent;
 }

 .location-social-link:hover {
     background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
     color: #fff;
     transform: translateY(-5px);
     box-shadow: 0 5px 15px rgba(23, 162, 184, 0.3);
 }

 .location-cta {
     text-align: center;
     margin-top: 50px;
 }

 .location-cta-text {
     font-size: 20px;
     color: #666;
     margin-bottom: 25px;
 }

 .location-cta-buttons {
     display: flex;
     gap: 20px;
     justify-content: center;
     flex-wrap: wrap;
 }

 .location-btn {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 15px 35px;
     font-size: 16px;
     font-weight: 600;
     text-decoration: none;
     border-radius: 50px;
     transition: all 0.3s ease;
 }

 .location-btn-primary {
     background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
     color: #fff;
     box-shadow: 0 8px 25px rgba(23, 162, 184, 0.3);
 }

 .location-btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 12px 35px rgba(233, 30, 140, 0.5);
 }

 .location-btn-secondary {
     background: transparent;
     color: var(--color-primary);
     border: 2px solid var(--color-primary);
 }

 .location-btn-secondary:hover {
     background: var(--color-primary);
     color: #fff;
     transform: translateY(-3px);
 }

 /* Responsive Location */
 @media (max-width: 968px) {
     .location-section {
         padding: 60px 20px;
     }

     .location-title {
         font-size: 36px;
     }

     .location-content {
         grid-template-columns: 1fr;
     }

     .location-map {
         order: 2;
         min-height: 350px;
     }

     .location-info {
         order: 1;
     }

     .location-cta-buttons {
         flex-direction: column;
         align-items: center;
     }

     .location-btn {
         width: 100%;
         max-width: 300px;
         justify-content: center;
     }

     .location-item {
         flex-direction: column;
         gap: 15px;
     }

     .location-item-header {
         width: auto;
         margin-bottom: 10px;
     }
 }

 /* ============= FOOTER ============= */
 .footer {
     background: #1a1a1a;
     color: #fff;
     padding-top: 80px;
 }

 .footer-main {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px 50px;
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 50px;
 }

 .footer-column h3 {
     font-size: 20px;
     font-weight: 700;
     margin-bottom: 20px;
     background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .footer-logo {
     font-size: 28px;
     font-weight: 700;
     background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     margin-bottom: 15px;
     display: block;
 }

 .footer-description {
     font-size: 15px;
     line-height: 1.8;
     color: rgba(255, 255, 255, 0.7);
     margin-bottom: 25px;
 }

 .footer-social {
     display: flex;
     gap: 15px;
 }

 .footer-social-link {
     width: 45px;
     height: 45px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--color-primary);
     font-size: 20px;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .footer-social-link:hover {
     background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
     color: #1a1a1a;
     transform: translateY(-5px);
 }

 .footer-links {
     list-style: none;
 }

 .footer-links li {
     margin-bottom: 12px;
 }

 .footer-links a {
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     font-size: 15px;
     transition: all 0.3s ease;
     display: inline-block;
 }

 .footer-links a:hover {
     color: var(--color-secondary);
     padding-left: 5px;
 }

 .footer-contact-item {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     margin-bottom: 15px;
     color: rgba(255, 255, 255, 0.7);
     font-size: 15px;
     line-height: 1.6;
 }

 .footer-contact-icon {
     color: var(--color-primary);
     font-size: 18px;
     margin-top: 3px;
 }

 .footer-contact-item a {
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-contact-item a:hover {
     color: var(--color-secondary);
 }

 .footer-shipping {
     background: rgba(255, 255, 255, 0.05);
     border-radius: 10px;
     padding: 30px;
     margin: 0 20px 40px;
     max-width: 1200px;
     margin-left: auto;
     margin-right: auto;
 }

 .footer-shipping h3 {
     font-size: 22px;
     font-weight: 700;
     background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     margin-bottom: 20px;
     text-align: center;
 }

 .footer-shipping-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
 }

 .footer-shipping-item {
     display: flex;
     gap: 15px;
 }

 .footer-shipping-icon {
     font-size: 32px;
     min-width: 40px;
 }

 .footer-shipping-content h4 {
     font-size: 16px;
     font-weight: 600;
     color: #fff;
     margin-bottom: 8px;
 }

 .footer-shipping-content p {
     font-size: 14px;
     color: rgba(255, 255, 255, 0.6);
     line-height: 1.6;
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding: 25px 20px;
     text-align: center;
 }

 .footer-bottom-content {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 20px;
 }

 .footer-copyright {
     font-size: 14px;
     color: rgba(255, 255, 255, 0.5);
 }

 .footer-bottom-links {
     display: flex;
     gap: 20px;
     flex-wrap: wrap;
 }

 .footer-bottom-links a {
     font-size: 13px;
     color: rgba(255, 255, 255, 0.5);
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-bottom-links a:hover {
     color: var(--color-secondary);
 }

 /* Responsive Footer */
 @media (max-width: 968px) {
     .footer-main {
         grid-template-columns: 1fr;
         gap: 40px;
         padding-bottom: 40px;
     }

     .footer-shipping {
         padding: 25px;
     }

     .footer-shipping-grid {
         grid-template-columns: 1fr;
         gap: 25px;
     }

     .footer-bottom-content {
         flex-direction: column;
         text-align: center;
     }

     .footer-bottom-links {
         justify-content: center;
     }
 }

 /* ============= BOTÓN ADMIN ============= */
 .footer-admin-btn {
     font-size: 12px;
     color: rgba(255, 255, 255, 0.3);
     text-decoration: none;
     padding: 5px 12px;
     border: 1px solid rgba(255, 255, 255, 0.15);
     border-radius: 20px;
     transition: all 0.3s ease;
     letter-spacing: 0.5px;
 }

 .footer-admin-btn:hover {
     color: var(--color-primary);
     border-color: var(--color-primary);
     background: rgba(23, 162, 184, 0.1);
 }