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

:root {
    --orange-500: #ff8c42;
    --orange-600: #ff6b35;
    --orange-700: #ff5722;
    --zinc-800: #27272a;
    --zinc-900: #18181b;
    --black: #000000;
    --white: #ffffff;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: #1a1a1a;
    color: #f5f5f5;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(24, 24, 27, 0.95), rgba(24, 24, 27, 0.9));
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 140, 66, 0.2);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(to bottom right, var(--orange-500), var(--orange-600));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(255, 140, 66, 0.3);
    color: white;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    background: none;
    border: none;
    color: var(--gray-200);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--orange-500);
}

.btn-primary {
    background: linear-gradient(to bottom right, var(--orange-500), var(--orange-600));
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(255, 140, 66, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: linear-gradient(to bottom right, var(--orange-600), var(--orange-700));
    box-shadow: 0 6px 12px rgba(255, 140, 66, 0.5);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    background: rgba(24, 24, 27, 0.95);
    border-top: 1px solid rgba(255, 140, 66, 0.2);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
}

.nav-link-mobile {
    background: none;
    border: none;
    color: var(--gray-200);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.nav-link-mobile:hover {
    color: var(--orange-500);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--gray-200);
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: white;
    border: 1px solid rgba(255, 140, 66, 0.5);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    border-color: var(--orange-500);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 12px;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, var(--zinc-900), var(--zinc-800), var(--zinc-900));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.text-xl {
    font-size: 1.25rem;
    color: var(--gray-300);
}

.text-lg {
    font-size: 1.125rem;
    color: var(--gray-400);
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.about-image-container {
    position: relative;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px rgba(255, 140, 66, 0.2);
    border: 2px solid rgba(255, 140, 66, 0.3);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: linear-gradient(to bottom right, var(--orange-500), var(--orange-600));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(255, 140, 66, 0.4);
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.badge-text {
    font-size: 0.875rem;
}

.values-section {
    margin-top: 4rem;
}

.values-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    text-align: center;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(to bottom right, rgba(255, 140, 66, 0.2), rgba(255, 107, 53, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 2px solid rgba(255, 140, 66, 0.3);
    color: var(--orange-500);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.value-description {
    color: var(--gray-400);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, var(--zinc-800), var(--zinc-900), var(--zinc-800));
}

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

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    max-width: 42rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: linear-gradient(to bottom right, var(--zinc-900), var(--zinc-800));
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 140, 66, 0.2);
    transition: all 0.3s;
}

.service-card:hover {
    border-color: rgba(255, 140, 66, 0.4);
    box-shadow: 0 20px 25px rgba(255, 140, 66, 0.2);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(to bottom right, var(--orange-500), var(--orange-600));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(255, 140, 66, 0.3);
    color: white;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.service-description {
    color: var(--gray-400);
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, var(--zinc-900), var(--zinc-800), var(--zinc-900));
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-card {
    position: relative;
    background: linear-gradient(to bottom right, var(--zinc-800), var(--zinc-900));
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 140, 66, 0.3);
    transition: all 0.3s;
}

.process-card:hover {
    border-color: rgba(255, 140, 66, 0.5);
    box-shadow: 0 20px 25px rgba(255, 140, 66, 0.2);
    transform: translateY(-4px);
}

.process-number {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(to bottom right, var(--orange-500), var(--orange-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(255, 140, 66, 0.4);
}

.process-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(to bottom right, var(--orange-500), var(--orange-600));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(255, 140, 66, 0.3);
    color: white;
}

.process-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.process-description {
    color: var(--gray-400);
}

.process-cta {
    display: flex;
    justify-content: center;
}

.btn-full {
    width: 100%;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, var(--zinc-800), var(--zinc-900), var(--zinc-800));
}

.carousel-container {
    position: relative;
    margin: 0 3rem;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .carousel-slide {
        min-width: 50%;
    }
}

@media (min-width: 1024px) {
    .carousel-slide {
        min-width: 33.333%;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(255, 140, 66, 0.2);
    border: 2px solid rgba(255, 140, 66, 0.2);
    transition: all 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    box-shadow: 0 20px 25px rgba(255, 140, 66, 0.3);
    border-color: rgba(255, 140, 66, 0.4);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-category {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--orange-500);
    margin-bottom: 0.25rem;
}

.gallery-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: linear-gradient(to bottom right, var(--orange-500), var(--orange-600));
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 15px rgba(255, 140, 66, 0.4);
    color: white;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: linear-gradient(to bottom right, var(--orange-600), var(--orange-700));
    box-shadow: 0 15px 20px rgba(255, 140, 66, 0.6);
}

.carousel-prev {
    left: -1.5rem;
}

.carousel-next {
    right: -1.5rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 140, 66, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--orange-500);
    width: 32px;
    border-radius: 6px;
}

/* Materials Section */
.materials-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, var(--zinc-900), var(--zinc-800), var(--zinc-900));
}

.materials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.materials-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .materials-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.material-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.material-check {
    width: 24px;
    height: 24px;
    background: linear-gradient(to bottom right, var(--orange-500), var(--orange-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(255, 140, 66, 0.3);
    color: white;
}

.material-item span {
    color: var(--gray-200);
}
/* Custom Materials Layout */
.materials-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .materials-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.materials-box-custom {
    background: linear-gradient(to bottom right, var(--zinc-800), var(--zinc-900));
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 140, 66, 0.2);
}

.materials-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
}

/* IMPORTANTE: Esto hace que Materials for Engraving tenga 2 columnas */
.materials-columns {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.materials-list-custom {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.materials-list-custom li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.materials-list-custom li span {
    color: var(--gray-200);
}

.materials-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 140, 66, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 140, 66, 0.2);
    color: var(--gray-300);
    font-size: 0.9rem;
}

/* Responsive para materials */
@media (max-width: 768px) {
    .materials-columns {
        flex-direction: column;
        gap: 1rem;
    }
    
    .materials-grid-container {
        grid-template-columns: 1fr;
    }
}

.text-center {
    text-align: center;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-12 {
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    background: linear-gradient(to bottom right, var(--zinc-800), var(--zinc-900));
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 140, 66, 0.2);
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: rgba(255, 140, 66, 0.4);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange-500);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-400);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, var(--zinc-800), var(--zinc-900), var(--zinc-800));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(to bottom right, var(--orange-500), var(--orange-600));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(255, 140, 66, 0.3);
    color: white;
}

.contact-info-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.contact-info-item p {
    color: var(--gray-400);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    background: var(--zinc-800);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange-500);
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, var(--zinc-900), var(--black));
    color: white;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 140, 66, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--gray-400);
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--orange-500);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--orange-500);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--zinc-800);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    background: linear-gradient(to bottom right, var(--orange-500), var(--orange-600));
    box-shadow: 0 6px 12px rgba(255, 140, 66, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 140, 66, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-400);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}