/* Custom Fonts */
@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins.light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins.medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MDPEN';
    src: url('fonts/MD Pen Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --color-cream: #E8E4D9;
    --color-dark-green: #3D4F42;
    --color-dark: #2C2C2C;
    --color-white: #FFFFFF;
    --color-light-cream: #F5F3ED;
    --color-beige: #D4CFC0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Motion system */
:root {
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
    --duration-fast: 180ms;
    --duration-medium: 420ms;
    --duration-slow: 700ms;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
        scroll-behavior: auto !important;
    }
}

/* Scroll reveal helpers (JS toggles .is-visible) */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--duration-medium) var(--ease-out),
        transform var(--duration-medium) var(--ease-out);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal.reveal-scale {
    transform: translateY(18px) scale(0.985);
}

.reveal.reveal-scale.is-visible {
    transform: translateY(0) scale(1);
}

.reveal-delay-1 {
    transition-delay: 80ms;
}

.reveal-delay-2 {
    transition-delay: 160ms;
}

.reveal-delay-3 {
    transition-delay: 240ms;
}

.reveal-delay-4 {
    transition-delay: 320ms;
}

/* Microinteractions */
.btn-hero,
.btn-product,
.btn-contact {
    transition: transform var(--duration-fast) var(--ease-out),
        box-shadow var(--duration-fast) var(--ease-out),
        background-color var(--duration-fast) var(--ease-out),
        color var(--duration-fast) var(--ease-out),
        opacity var(--duration-fast) var(--ease-out);
    will-change: transform;
}

.btn-hero:hover,
.btn-product:hover,
.btn-contact:hover {
    transform: translateY(-2px);
}

.testimonial-card,
.event-card {
    transition: transform var(--duration-medium) var(--ease-out),
        box-shadow var(--duration-medium) var(--ease-out);
    will-change: transform;
}

.testimonial-card:hover,
.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.nav-menu a,
.nav-menu-right a,
.footer-column a {
    transition: opacity var(--duration-fast) var(--ease-out),
        transform var(--duration-fast) var(--ease-out),
        color var(--duration-fast) var(--ease-out);
}

.nav-menu a:hover,
.nav-menu-right a:hover {
    transform: translateY(-1px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1300px;
    background: rgba(255, 255, 255, 0.254);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    z-index: 1000;
    padding: 15px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-menu,
.nav-menu-right {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a,
.nav-menu-right a {
    color: #EEEEDA;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu-right a:hover {
    color: #ffffff;
}

.navbar.scrolled .nav-menu a,
.navbar.scrolled .nav-menu-right a {
    color: #2d3c33;
}

.navbar.scrolled .nav-menu a:hover,
.navbar.scrolled .nav-menu-right a:hover {
    color: #1a2620;
}

.logo {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-default {
    opacity: 1;
}

.logo-scroll {
    opacity: 0;
    position: absolute;
}

.navbar.scrolled .logo-default {
    opacity: 0;
}

.navbar.scrolled .logo-scroll {
    opacity: 1;
}

.logo-text {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--color-dark);
    display: none;
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-toggle span {
    background: var(--color-dark-green);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                url('imagenes/herobg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    position: relative;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 600;
    letter-spacing: 8px;
    margin-bottom: 40px;
    line-height: 1.2;
    color: #EEEEDA;
    position: relative;
    display: inline-block;
    min-height: 80px;
}

.hero-title::after {
    content: '|';
    animation: blink 0.8s infinite;
    margin-left: 5px;
}

.hero-title.typing-complete::after {
    display: none;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.hero-text {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 50px;
    opacity: 0;
    color: #EEEEDA;
    animation: fadeInText 1s ease-out forwards;
    animation-delay: 1.5s;
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.95;
        transform: translateY(0);
    }
}

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

.btn-hero {
    display: inline-block;
    background: var(--color-cream);
    color: var(--color-dark);
    padding: 15px 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 2s;
}

.btn-hero:hover {
    background: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    align-items: center;
}

.about-img-placeholder {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 0;
}

.section-label {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.about-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.2;
    font-family: 'MDPEN', 'Poppins', sans-serif;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    font-family: 'Poppins', sans-serif;
}

.about-italic {
    font-style: italic;
    margin: 30px 0;
    font-family: 'Poppins', sans-serif;
}

.about-italic em {
    display: block;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

/* Values Section */
.values {
    padding: 100px 0;
    background: var(--color-cream);
}

.values-title {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 80px;
    line-height: 1.3;
    letter-spacing: 2px;
    font-family: 'MDPEN', 'Poppins', sans-serif;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    /* Removemos la animación inicial, el observer la controlará */
}

.value-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    color: var(--color-dark);
    transition: transform 0.3s ease, color 0.3s ease;
}

.value-icon:hover {
    transform: scale(1.1) translateY(-5px);
}

.value-icon svg {
    width: 100%;
    height: 100%;
    transition: filter 0.3s ease;
}

.value-icon:hover svg {
    filter: drop-shadow(0 4px 8px rgba(45, 60, 51, 0.2));
}

.value-label {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 500;
    color: var(--color-dark);
}

/* Product Section */
.product {
    padding: 100px 0;
    background: var(--color-dark-green);
    color: var(--color-white);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.product-carousel {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: all;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--color-dark-green);
}

.carousel-btn:hover {
    background: var(--color-white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-white);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

.indicator.active {
    background: var(--color-white);
    transform: scale(1.2);
}

.product-img-placeholder {
    width: 100%;
    height: 650px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
}

.product-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 0;
}

.product-title {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.product-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.product-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin: 30px 0;
}

.btn-product {
    display: inline-block;
    background: var(--color-cream);
    color: var(--color-dark);
    padding: 15px 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.btn-product:hover {
    background: var(--color-white);
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--color-white);
}

.testimonials-label {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 15px;
}

.testimonials-title {
    font-family: 'MDPEN', sans-serif;
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 80px;
    line-height: 1.2;
}

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

.testimonial-card {
    border: 1px solid #E0E0E0;
    padding: 40px;
    background: var(--color-white);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--color-beige);
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 50px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 3px;
}

.testimonial-location {
    font-size: 13px;
    color: #888;
}

/* Events Section */
.events {
    padding: 100px 0;
    background: var(--color-cream);
}

.events-label {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 15px;
}

.events-title {
    font-family: 'MDPEN', sans-serif;
    font-size: 64px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 2px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.event-card {
    background: var(--color-white);
}

.event-image {
    width: 100%;
    height: 400px;
    background: var(--color-beige);
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform var(--duration-slow) var(--ease-out);
}

.event-card:hover .event-image img {
    transform: scale(1.04);
}

.event-info {
    padding: 30px;
}

.event-date {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}

.event-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-dark);
}

/* Points of Sale Section */
.points-sale {
    padding: 100px 0;
    background: var(--color-white);
}

.points-label {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 15px;
}

.points-title {
    font-family: 'MDPEN', sans-serif;
    font-size: 56px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 2px;
}

.coming-soon-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 40px;
}

.coming-soon-content {
    position: relative;
    padding: 20px;
}

.coming-soon-text {
    font-family: 'MDPEN', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--color-dark-green);
    letter-spacing: 3px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.coming-soon-subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #555;
    letter-spacing: 1px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

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

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--color-dark-green);
    color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-form-wrapper {
    background: var(--color-cream);
    padding: 60px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: none;
    background: var(--color-white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--color-dark);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-contact {
    background: var(--color-dark-green);
    color: var(--color-white);
    padding: 15px 40px;
    border: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--color-dark);
    transform: translateY(-2px);
}

.contact-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 15px;
}

.contact-title {
    font-family: 'MDPEN', sans-serif;
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.contact-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 50px;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    color: var(--color-white);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: var(--color-cream);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #C0BBB0;
}

.footer-logo img {
    display: block;
    max-width: 220px;
    width: 100%;
    height: auto;
}

.footer-est {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-brand {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 5px;
}

.footer-tagline {
    font-size: 13px;
    letter-spacing: 6px;
    margin-bottom: 5px;
}

.footer-subtitle {
    font-size: 11px;
    letter-spacing: 3px;
    border: 1px solid var(--color-dark);
    display: inline-block;
    padding: 5px 20px;
    border-radius: 20px;
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column a {
    color: var(--color-dark);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 0.7;
}

.footer-social-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--color-dark-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--color-dark);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-complaints {
    margin-top: 0;
}

.complaints-link {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.complaints-link:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.complaints-img {
    width: 180px;
    height: auto;
    display: block;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-dark);
}

/* ===================================
   FOOTER BRANDING
   =================================== */
.footer-branding {
    background-color: #1a1a1a;
    padding: 1rem 0;
    border-top: 1px solid #2a2a2a;
}

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

.footer-copyright p {
    margin: 0;
    font-size: 0.85rem;
    color: #888;
}

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

.developer-label {
    color: #888;
    font-size: 0.85rem;
}

.developer-heart {
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
    font-size: 0.9rem;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    20%, 40% { transform: scale(1.2); }
    30% { transform: scale(1.1); }
}

.digin-brand {
    text-decoration: none;
    transition: all 0.3s ease;
}

.digin-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 168, 107, 0.1));
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.digin-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.3), transparent);
    transition: all 0.3s ease;
}

.digin-brand:hover .digin-logo {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
}

.digin-brand:hover .digin-logo::before {
    left: 100%;
    transition: left 0.5s ease;
}

.digin-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00d4ff 0%, #00bcd4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #1a1a1a;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.digin-brand:hover .digin-icon {
    transform: rotate(360deg);
}

.digin-text {
    text-align: left;
    line-height: 1.2;
}

.digin-name {
    font-size: 1rem;
    letter-spacing: 0.8px;
    display: block;
    text-transform: uppercase;
    color: #00d4ff;
    font-weight: 700;
}

.digin-tagline {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #e8e8e8;
    font-weight: 500;
}

/* Responsive Design */

/* Tablet (landscape y grande) */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .values-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }

    .value-icon {
        width: 100px;
        height: 100px;
    }

    .about-img-placeholder {
        height: 500px;
    }

    .product-carousel {
        height: 500px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .product-image img {
        height: 500px;
    }

    .event-image {
        height: 350px;
    }
}

/* Tablet (portrait) y móvil grande */
@media (max-width: 968px) {
    .container,
    .container-nav {
        padding: 0 30px;
    }

    /* Navbar */
    .navbar {
        width: 95%;
        padding: 15px 20px;
    }

    .nav-menu,
    .nav-menu-right {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--color-cream);
        padding: 20px;
        border-radius: 20px;
        z-index: 1000;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

    .nav-menu.active a {
        color: var(--color-dark-green) !important;
        padding: 12px 0;
        border-bottom: 1px solid rgba(61, 79, 66, 0.1);
        font-size: 15px;
    }

    .nav-menu.active a:last-child {
        border-bottom: none;
    }

    .nav-menu.active a:hover {
        color: var(--color-dark) !important;
        transform: translateX(5px);
    }

    .nav-toggle {
        display: flex;
    }

    /* Hero */
    .hero {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 38px;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }

    .hero-text {
        font-size: 15px;
        max-width: 500px;
    }

    .hero-cta {
        padding: 12px 35px;
        font-size: 14px;
    }

    /* Secciones generales */
    section {
        padding: 70px 0;
    }

    .about,
    .values,
    .product,
    .testimonials,
    .events,
    .contact {
        padding: 70px 0;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-img-placeholder {
        height: 400px;
    }

    .about-title {
        font-size: 36px;
    }

    .about-text p {
        font-size: 15px;
    }

    /* Values */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .values-title {
        font-size: 40px;
        margin-bottom: 60px;
    }

    .value-text {
        font-size: 13px;
    }

    /* Product */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .product-carousel {
        height: 450px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn.prev {
        left: 15px;
    }

    .carousel-btn.next {
        right: 15px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .product-image img {
        height: 450px;
    }

    .product-title {
        font-size: 32px;
    }

    .product-text p {
        font-size: 15px;
    }

    /* Points */
    .points-grid {
        gap: 30px;
    }

    .point-icon {
        width: 50px;
        height: 50px;
    }

    .point-title {
        font-size: 16px;
    }

    .point-description {
        font-size: 13px;
    }

    /* Coming Soon */
    .coming-soon-wrapper {
        padding: 60px 30px;
    }

    .coming-soon-content {
        padding: 15px;
    }

    .coming-soon-text {
        font-size: 36px;
    }

    .coming-soon-subtext {
        font-size: 15px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonials-title {
        font-size: 36px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    /* Events */
    .events-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .events-title {
        font-size: 40px;
    }

    .event-image {
        height: 300px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-title {
        font-size: 40px;
    }

    .contact-form-wrapper {
        padding: 40px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* Móvil */
@media (max-width: 640px) {
    .container,
    .container-nav {
        padding: 0 20px;
    }

    /* Hero */
    .hero {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .hero-text {
        font-size: 14px;
        max-width: 100%;
    }

    .hero-cta {
        padding: 11px 30px;
        font-size: 13px;
    }

    /* Secciones */
    section {
        padding: 50px 0;
    }

    .about,
    .values,
    .product,
    .testimonials,
    .events,
    .contact {
        padding: 50px 0;
    }

    /* Títulos globales */
    .about-title,
    .testimonials-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .values-title,
    .events-title,
    .points-title,
    .contact-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .product-title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .section-label {
        font-size: 11px;
        margin-bottom: 15px;
    }

    /* About */
    .about-img-placeholder {
        height: 300px;
    }

    .about-text p {
        font-size: 14px;
        line-height: 1.7;
    }

    /* Values */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .value-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
    }

    .value-text {
        font-size: 11px;
        line-height: 1.3;
    }

    /* Product */
    .product-carousel {
        height: 350px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .carousel-btn svg {
        width: 16px;
        height: 16px;
    }

    .carousel-indicators {
        bottom: 20px;
        gap: 10px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .product-image img {
        height: 350px;
    }

    .product-text p {
        font-size: 14px;
        line-height: 1.7;
    }

    /* Points */
    .points-grid {
        gap: 25px;
    }

    .point-icon {
        width: 45px;
        height: 45px;
    }

    .point-title {
        font-size: 15px;
    }

    .point-description {
        font-size: 12px;
    }

    /* Coming Soon */
    .coming-soon-wrapper {
        padding: 40px 20px;
    }

    .coming-soon-content {
        padding: 10px;
    }

    .coming-soon-text {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .coming-soon-subtext {
        font-size: 14px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 30px 25px;
    }

    .testimonial-text {
        font-size: 13px;
        line-height: 1.7;
    }

    .testimonial-avatar {
        width: 45px;
        height: 45px;
        flex: 0 0 45px;
    }

    .testimonial-name {
        font-size: 14px;
    }

    .testimonial-location {
        font-size: 12px;
    }

    /* Events */
    .events-label {
        font-size: 11px;
    }

    .event-image {
        height: 250px;
    }

    .event-title {
        font-size: 16px;
    }

    .event-description {
        font-size: 13px;
    }

    /* Contact */
    .contact-form-wrapper {
        padding: 30px 25px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 12px 15px;
    }

    .submit-btn {
        padding: 12px 35px;
        font-size: 14px;
    }

    .contact-info-item {
        font-size: 13px;
    }

    /* Footer */
    .footer {
        padding: 50px 0 30px;
    }

    .footer-logo img {
        max-width: 180px;
    }

    .footer-links h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer-links a {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .footer-bottom {
        padding-top: 25px;
        font-size: 11px;
    }
}
