/* CSS Custom Properties / Design Tokens */
:root {
    --primary: #8C6239;          /* Deep bronze brown */
    --primary-dark: #5C3D21;     /* Dark bronze */
    --primary-light: #A87C54;    /* Light bronze */
    --accent: #D4AF37;           /* Metallic gold */
    --accent-dark: #AA8417;      /* Dark gold */
    --accent-light: #F3E5AB;     /* Brass/Vanilla cream */
    --copper: #C86432;           /* Copper orange */
    --copper-dark: #A04A20;      /* Dark copper */
    --text-dark: #1F1915;        /* Near black warm */
    --text-light: #5A524A;       /* Warm gray-brown */
    --text-muted: #8E847A;       /* Muted gray-brown */
    --bg-light: #FAF8F5;         /* Cream / Alabaster */
    --bg-white: #FFFFFF;
    --bg-dark: #120E0B;          /* Midnight charcoal-bronze */
    --bg-dark-card: #1C1612;     /* Dark card background */
    --shadow: 0 15px 35px rgba(140, 98, 57, 0.08);
    --shadow-hover: 0 25px 50px rgba(140, 98, 57, 0.16);
    --border-color: rgba(140, 98, 57, 0.12);
    --border-gold: rgba(212, 175, 55, 0.3);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 16px;
    --border-radius-lg: 24px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
    border: 2px solid var(--bg-light);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Grid & Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-warm {
    background-color: var(--bg-light);
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2-cols {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3-cols {
    grid-template-columns: repeat(3, 1fr);
}

.grid-12-cols {
    grid-template-columns: repeat(12, 1fr);
}

.col-span-5 {
    grid-column: span 5;
}

.col-span-7 {
    grid-column: span 7;
}

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

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

.max-w-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mt-20 { margin-top: 20px; }
.text-muted { color: var(--text-muted); }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.paragraph-highlight {
    font-size: 1.25rem;
    color: var(--primary-dark);
    font-weight: 500;
    line-height: 1.5;
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    margin-bottom: 25px;
}

/* Headings and Badges */
.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.section-badge.badge-light {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--accent-light);
    border-color: rgba(255, 255, 255, 0.2);
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Header & Nav */
.header {
    background: rgba(18, 14, 11, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.logo-text {
    display: none;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--accent-light);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
    background-color: rgba(212, 175, 55, 0.1);
}

.nav-link.nav-btn {
    background-color: var(--accent);
    color: var(--bg-dark);
    font-weight: 600;
    margin-left: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.nav-link.nav-btn:hover {
    background-color: var(--accent-light);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--bg-dark);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--white, #ffffff);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

.w-full {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(18, 14, 11, 0.9) 0%, rgba(18, 14, 11, 0.65) 50%, rgba(18, 14, 11, 0.3) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
}

.hero-tagline {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    animation: fadeIn 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    color: var(--bg-light);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
    animation: slideUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    animation: slideUp 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-actions {
    display: flex;
    gap: 20px;
    animation: slideUp 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 12px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0; }
    100% { top: 6px; opacity: 1; }
}

/* Antecedentes Section */
.antecedentes-section {
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.antecedentes-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(140, 98, 57, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.history-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 35px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

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

.image-frame-gold {
    position: relative;
    padding: 12px;
    border: 2px solid var(--accent);
    border-radius: var(--border-radius-lg);
    background-color: var(--bg-white);
}

.image-frame-gold::after {
    content: '';
    position: absolute;
    top: 30px;
    left: -30px;
    width: calc(100% + 15px);
    height: 100%;
    border: 2px dashed rgba(140, 98, 57, 0.2);
    border-radius: var(--border-radius-lg);
    z-index: -1;
}

.img-responsive {
    width: 100%;
    height: auto;
    display: block;
}

.img-rounded {
    border-radius: calc(var(--border-radius-lg) - 10px);
}

.img-shadow {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ¿A qué nos dedicamos? Section */
.dedicacion-section {
    position: relative;
}

.gallery-title-wrapper {
    margin: 60px 0 35px;
    text-align: center;
    position: relative;
}

.gallery-title-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    z-index: 1;
}

.gallery-main-title {
    display: inline-block;
    padding: 0 30px;
    background-color: var(--bg-light);
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    color: var(--primary-dark);
}

.gallery-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.gallery-grid {
    position: relative;
    z-index: 2;
}

.craft-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.craft-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.craft-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.craft-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.craft-card:hover .craft-img {
    transform: scale(1.1);
}

.craft-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary);
    color: var(--bg-light);
    padding: 6px 14px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.craft-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.craft-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.craft-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Envíos Section */
.envios-section {
    background-color: var(--bg-dark);
    color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.envios-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.delivery-container-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.delivery-image-box {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.delivery-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.delivery-image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.delivery-status-pill {
    background-color: var(--copper);
    color: var(--bg-light);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.delivery-content-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.delivery-main-title {
    font-size: 2.5rem;
    color: var(--bg-light);
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.quote-card-delivery {
    background: rgba(212, 175, 55, 0.07);
    border-left: 4px solid var(--accent);
    padding: 25px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin-bottom: 30px;
}

.quote-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-light);
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

.delivery-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 35px;
}

.delivery-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.step-item {
    display: flex;
    gap: 20px;
}

.step-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.step-item h4 {
    color: var(--accent);
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.step-item p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* Contacto Section */
.contact-grid {
    align-items: stretch;
}

.contact-info-panel {
    display: flex;
}

.info-card {
    background: linear-gradient(145deg, var(--bg-dark-card) 0%, var(--bg-dark) 100%);
    border: 1.5px solid rgba(140, 98, 57, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    color: var(--bg-light);
    width: 100%;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.info-card h3 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.info-card-intro {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 35px;
}

.contact-detailed-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detailed-list li {
    display: flex;
    gap: 20px;
}

.contact-item-icon {
    flex-shrink: 0;
}

.icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
}

.contact-item-content {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 1.15rem;
    color: var(--bg-light);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-value:hover {
    color: var(--accent);
}

.contact-value.highlight-link {
    color: var(--accent);
    text-decoration: underline;
}

.contact-value.highlight-link:hover {
    color: var(--accent-light);
}

.quick-links {
    margin-top: 8px;
}

.whatsapp-btn-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    transition: var(--transition);
}

.whatsapp-btn-small:hover {
    background-color: #20ba59;
    transform: translateY(-2px);
}

.wa-icon {
    fill: currentColor;
}

/* Contact Form Panel */
.form-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-subtitle-text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.styled-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    font-family: inherit;
    padding: 12px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    background-color: var(--bg-light);
    color: var(--text-dark);
    transition: var(--transition);
}

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

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(140, 98, 57, 0.15);
}

.form-status-message {
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 10px;
    display: none;
}

.form-status-message.info {
    background-color: rgba(140, 98, 57, 0.1);
    color: var(--primary-dark);
    border: 1px solid rgba(140, 98, 57, 0.2);
}

.form-status-message.success {
    background-color: rgba(37, 211, 102, 0.1);
    color: #1e7e38;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.form-status-message.warning {
    background-color: rgba(212, 175, 55, 0.1);
    color: #856404;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Footer styling */
.footer {
    background-color: var(--bg-dark);
    color: var(--bg-light);
    padding: 80px 0 30px;
    border-top: 2px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer h4 {
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
    display: block;
}

.footer-about-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links-list, 
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links-list a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links-list a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-contact-list a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-list a:hover {
    color: var(--accent);
}

.footer-icon {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 30px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* Gallery Filter and Transparent Background */
.gallery-filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 50px;
    border: 1.5px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-color: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.craft-image-wrapper.transparent-bg {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(140, 98, 57, 0.02) 100%), var(--bg-white);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.craft-image-wrapper.transparent-bg img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.craft-card:hover .craft-image-wrapper.transparent-bg img {
    transform: scale(1.1) translateY(-5px);
}

.craft-card {
    transition: opacity 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive styles */
@media (max-width: 1024px) {
    .grid-3-cols {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-about {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .grid-2-cols {
        grid-template-columns: 1fr;
    }
    .col-span-5, .col-span-7 {
        grid-column: span 12;
    }
    .antecedentes-image-container {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    .image-frame-gold::after {
        display: none;
    }
    .delivery-container-box {
        padding: 40px;
    }
    .section-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }
    
    .mobile-nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-dark);
        border-bottom: 1.5px solid var(--accent);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
    }

    .nav.active {
        max-height: 350px;
    }

    .nav-list {
        flex-direction: column;
        padding: 20px 24px;
        align-items: stretch;
    }

    .nav-link {
        display: block;
        padding: 12px 16px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-link.nav-btn {
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-padding {
        padding: 70px 0;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .info-card, .form-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .grid-3-cols {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-about {
        grid-column: span 1;
    }
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    .stat-number {
        font-size: 2.3rem;
    }
    .history-stats {
        gap: 20px;
    }
    .delivery-container-box {
        padding: 24px 16px;
    }
    .delivery-main-title {
        font-size: 1.8rem;
    }
}
