/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Quitar subrayado global de enlaces específicos */
a.logo,
a.logo:hover,
a.logo:focus,
a.logo:active,
button.cta-button,
a.cta-button,
.cta-button {
    text-decoration: none !important;
}

:root {
    --primary-orange: #FF6B00;
    --secondary-orange: #FF6B00;
    --accent-orange: #FF6B00;
    --light-orange: #FFF4ED;
    --white: #FFFFFF;
    --off-white: #FAFAF9;
    --light-gray: #F5F5F4;
    --medium-gray: #E7E5E4;
    --text-dark: #000000;
    --text-medium: #000000;
    --text-light: #333333;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-soft: 0 4px 30px rgba(255, 107, 0, 0.1);
    --shadow-medium: 0 8px 40px rgba(255, 107, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-orange) 50%, var(--light-gray) 100%);
    min-height: 100vh;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header Fijo con Glassmorphism */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo:hover {
    text-decoration: none;
}

.logo-viper,
.logo-flow {
    text-decoration: none;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.logo-viper {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
}

.logo-flow {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.nav {
    display: flex;
    gap: 2rem;
}

/* Botón Hamburguesa */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-link {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-orange);
    background: rgba(255, 107, 0, 0.1);
}

.nav-link.active {
    color: var(--primary-orange);
    background: rgba(255, 107, 0, 0.15);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

/* Nav CTA Button - Destacado */
.nav-cta {
    background: linear-gradient(135deg, var(--primary-orange), #ff8533);
    color: white !important;
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #ff8533, var(--primary-orange));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
    color: white !important;
}

.nav-cta.active {
    background: linear-gradient(135deg, var(--primary-orange), #ff8533);
    color: white !important;
}

.nav-cta.active::after {
    display: none;
}
/* Video Banner */
.video-banner {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    margin-top: 80px;
    overflow: hidden;
    /* Elimina el max-width de los media queries grandes para este bloque */
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
    padding-bottom: 120px;
}

.video-content {
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.video-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    max-width: 650px;
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
}

.video-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    opacity: 0.95;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    margin-bottom: 1.5rem;
}

.video-content .cta-button {
    position: relative;
    background: linear-gradient(135deg, var(--primary-orange), #ff8533);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.video-content .cta-button:hover,
.video-content .cta-button:focus,
.video-content .cta-button:active {
    text-decoration: none;
}

.video-content .cta-button::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 20px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 280deg,
        #ff4400 300deg,
        #ff6b00 320deg,
        #ffaa00 340deg,
        #ffff00 352deg,
        #ffffff 358deg,
        #ffffff 360deg
    );
    z-index: -2;
    opacity: 0;
    filter: drop-shadow(0 0 15px #ff6b00) drop-shadow(0 0 30px #ff6b00) drop-shadow(0 0 45px #ffaa00);
}

.video-content .cta-button.laser-active::before {
    opacity: 1;
    animation: laserBorder 1.7s cubic-bezier(0.2, 0.8, 0.3, 1) forwards;
}

.video-content .cta-button.laser-active {
    animation: buttonFlash 1.7s ease-out forwards;
}

@keyframes buttonFlash {
    0% {
        filter: brightness(1);
        box-shadow: 0 5px 20px rgba(255, 107, 0, 0.3);
    }
    15% {
        filter: brightness(1.4);
        box-shadow: 0 0 40px #ff6b00, 0 0 80px #ff6b00, 0 0 120px rgba(255, 107, 0, 0.5);
    }
    50% {
        filter: brightness(1.3);
        box-shadow: 0 0 30px #ff6b00, 0 0 60px rgba(255, 107, 0, 0.6);
    }
    100% {
        filter: brightness(1);
        box-shadow: 0 5px 20px rgba(255, 107, 0, 0.3);
    }
}

.video-content .cta-button::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: linear-gradient(135deg, var(--primary-orange), #ff8533);
    border-radius: 9px;
    z-index: -1;
}

@keyframes laserBorder {
    0% {
        transform: rotate(0deg);
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        transform: rotate(360deg);
        opacity: 0;
    }
}

.video-content .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.5);
}

.tech-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 0;
    background: transparent;
    border: none;
    margin-right: 0;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
}

.tech-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    opacity: 0.95;
    transition: all 0.3s ease;
    display: block;
}

.tech-logo:hover {
    opacity: 1;
    transform: scale(1.2);
    filter: brightness(0) invert(1) drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4));
}

@media (max-width: 768px) {
    /* Menú Hamburguesa Responsive */
    .nav-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 2rem 2rem;
        gap: 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid var(--medium-gray);
        border-radius: 0;
        font-size: 1.1rem;
    }
    
    .nav-link:last-child {
        border-bottom: none;
        margin-top: 1rem;
    }
    
    .nav-cta {
        text-align: center;
        border-radius: 25px;
    }
    
    /* Overlay cuando el menú está abierto */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .nav-overlay.active {
        display: block;
    }

    .video-banner {
        height: 70vh;
        min-height: 500px;
        margin-top: 70px;
    }
    
    .video-overlay {
        padding-bottom: 80px;
    }
    
    .video-content {
        padding-left: 0;
        margin-bottom: 20px;
    }
    
    .video-title {
        font-size: 1.5rem;
        max-width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .video-subtitle {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    .video-content .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        margin-bottom: 0;
    }
    
    .tech-logos {
        gap: 15px;
        bottom: 15px;
        width: 95%;
        padding: 10px 0;
    }
    
    .tech-logo {
        width: 45px;
        height: 45px;
    }
}

/* Contenido Principal */
.main-content {
    min-height: calc(100vh - 80px);
}

.section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.section.active {
    display: block;
}

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

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Añadir espacio superior para secciones sin video banner */
#automatizaciones .section-content,
#quienes-somos .section-content,
#colocar-automatizacion .section-content {
    padding-top: 7rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0 5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
    text-decoration: none;
}

.cta-button:hover,
.cta-button:focus,
.cta-button:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.5);
    text-decoration: none;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

/* Store Header */
.store-header {
    text-align: center;
    margin-bottom: 2rem;
}

/* Search Box */
.search-container {
    max-width: 500px;
    margin: 2rem auto 0;
    position: relative;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
}

.search-input::placeholder {
    color: var(--text-light);
}

.search-clear {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.25rem;
    display: none;
    transition: color 0.3s ease;
}

.search-clear:hover {
    color: var(--text-dark);
}

/* Search Suggestions */
.search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.search-suggestions.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 0.85rem 1.25rem;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid var(--light-gray);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: rgba(255, 107, 0, 0.08);
}

.suggestion-item.no-results {
    justify-content: center;
    color: var(--text-light);
    cursor: default;
}

.suggestion-item.no-results:hover {
    background: transparent;
}

.suggestion-text {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.suggestion-category {
    font-size: 0.75rem;
    color: var(--primary-orange);
    background: rgba(255, 107, 0, 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-weight: 500;
}

.store-filters {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Search and Filter Bar */
.search-filter-bar {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.search-filter-bar .search-container {
    margin: 0;
    flex: 1;
    max-width: 400px;
}

/* Filter Dropdown */
.filter-dropdown-container {
    position: relative;
}

.filter-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-toggle-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.filter-toggle-btn.active {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.filter-count {
    background: var(--primary-orange);
    color: white;
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    display: none;
}

.filter-count.show {
    display: inline;
}

.filter-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.filter-toggle-btn.active .filter-arrow {
    transform: rotate(180deg);
}

.filter-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 1.25rem;
    min-width: 280px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.filter-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.filter-section {
    margin-bottom: 1.25rem;
}

.filter-section:last-of-type {
    margin-bottom: 1rem;
}

.filter-section-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--medium-gray);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-medium);
    cursor: pointer;
    padding: 0.4rem 0.5rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.filter-option:hover {
    background: var(--light-gray);
}

.filter-option input[type="radio"] {
    accent-color: var(--primary-orange);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.filter-actions {
    display: flex;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--medium-gray);
}

.filter-clear-btn {
    flex: 1;
    padding: 0.6rem 1rem;
    border: 1px solid var(--medium-gray);
    background: transparent;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-clear-btn:hover {
    border-color: var(--text-medium);
    color: var(--text-dark);
}

.filter-apply-btn {
    flex: 1;
    padding: 0.6rem 1rem;
    border: none;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-apply-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.filter-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-right: 0.5rem;
}

.filter-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    border-color: transparent;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(255, 107, 0, 0.3);
}

.card-number {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: rgba(255, 107, 0, 0.15);
    color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.product-title {
    padding-right: 0;
    margin-bottom: 1rem;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.product-badge.bestseller {
    background: var(--primary-orange);
    color: white;
}

.product-badge.new {
    background: var(--text-dark);
    color: white;
}

.product-image {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.product-card:hover .product-image img {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Nueva estructura de imagen con texto superpuesto */
.product-image-container {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

.product-image-bg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image-bg {
    transform: scale(1.02);
}

.product-image-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1.25rem;
    text-align: left;
    pointer-events: none;
}

.product-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(255, 107, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1.25rem;
    text-align: left;
}

.product-image-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-image-title {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.product-image-list {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0.5rem 0 0 0;
}

.product-image-list li {
    color: white;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.product-image-logo {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.product-image-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.product-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.product-features .feature {
    background: rgba(255, 107, 0, 0.08);
    color: var(--primary-orange);
    padding: 0.3rem 0.65rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--medium-gray);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-light);
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.price-period {
    font-size: 0.8rem;
    color: var(--text-light);
}

.buy-button {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.buy-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
    text-decoration: none;
    color: var(--white);
}

.buy-button.added {
    background: var(--text-dark);
}

/* Services Grid - Legacy (keeping for compatibility) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-tag {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-orange);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-medium);
}

.about-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.values-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.values-list li {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Stats */
.stats-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.02);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Sección Colocar Automatización */
.colocar-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.colocar-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.colocar-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    max-width: 180px;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-orange), #ff8533);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--primary-orange);
    font-weight: 700;
}

/* Contact Form */
.contact-form-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 1px solid var(--medium-gray);
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.3s ease;
}

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

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.submit-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-orange), #ff8533);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.35);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Mensajes del formulario */
.form-message {
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 2rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* =============================
   MEJORAS RESPONSIVE DESKTOP
   ============================= */
@media (min-width: 1300px) {
    .main-content,
    .section-content,
    .header-container,
    .single-entry,
    .single-container,
    .colocar-content {
        max-width: 1300px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    .products-grid,
    .services-grid {
        max-width: 1300px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-subtitle {
        font-size: 1.5rem;
    }
    /* El video banner siempre ocupa todo el ancho */
    .video-banner {
        max-width: none;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        width: 100vw;
    }
}

@media (min-width: 1600px) {
    .main-content,
    .section-content,
    .header-container,
    .single-entry,
    .single-container,
    .colocar-content {
        max-width: 1500px;
        padding-left: 4rem;
        padding-right: 4rem;
    }
    .products-grid,
    .services-grid {
        max-width: 1500px;
    }
    .hero-title {
        font-size: 4rem;
    }
    .hero-subtitle {
        font-size: 1.7rem;
    }
    .video-banner {
        max-width: none;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        width: 100vw;
    }
}

/* Evitar desbordes horizontales */
html, body {
    overflow-x: hidden;
}

/* Ajuste de paddings para que no sean excesivos en desktop */
@media (min-width: 1300px) {
    .section-content,
    .single-content,
    .colocar-content {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

/* Ajuste de cards y grids para que no se estiren demasiado */
@media (min-width: 1300px) {
    .product-card,
    .service-card,
    .stat-card {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Consistencia de fuentes y espacios */
body, html {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-card {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .main-content {
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-content {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .store-filters {
        gap: 0.75rem;
    }
    
    .search-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-filter-bar .search-container {
        max-width: 100%;
    }
    
    .filter-dropdown-container {
        width: 100%;
    }
    
    .filter-toggle-btn {
        width: 100%;
        justify-content: center;
    }
    
    .filter-dropdown {
        left: 0;
        right: 0;
        min-width: auto;
    }
    
    .filter-group {
        gap: 0.4rem;
    }
    
    .filter-label {
        font-size: 0.75rem;
        width: 100%;
        text-align: center;
        margin-right: 0;
        margin-bottom: 0.25rem;
    }
    
    .filter-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .product-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .buy-button {
        width: 100%;
        text-align: center;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Colocar Automatización responsive */
    .colocar-title {
        font-size: 2rem;
    }
    
    .colocar-steps {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .step {
        max-width: 100%;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
        padding: 1rem;
    }
    
    .step-text {
        text-align: left;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    /* Nav responsive */
    .nav {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* ===========================================
   ESTILOS PARA ENTRADAS INDIVIDUALES (single.php)
   =========================================== */

/* Layout de entrada */
.single-entry {
    padding: 120px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.single-container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

/* Columna de contenido */
.single-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    min-height: 400px;
}

.single-featured-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.single-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.single-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.3;
}

/* Contenido de Gutenberg */
.entry-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Párrafos */
.entry-content p {
    margin-bottom: 1.5em;
}

/* Títulos dentro del contenido */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2em;
    margin-bottom: 0.8em;
    line-height: 1.3;
}

.entry-content h2 { font-size: 1.8rem; }
.entry-content h3 { font-size: 1.5rem; }
.entry-content h4 { font-size: 1.25rem; }

/* Enlaces - SIN subrayado ni color diferente */
.entry-content a {
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-orange);
    transition: border-color 0.3s ease;
}

.entry-content a:hover {
    border-bottom-color: transparent;
}

/* Listas con puntos naranjas */
.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
}

.entry-content ul {
    list-style: none;
}

.entry-content ul li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.5em;
}

.entry-content ul li::before {
    content: "●";
    color: var(--primary-orange);
    font-size: 0.8em;
    position: absolute;
    left: 0;
    top: 0.2em;
}

.entry-content ol {
    list-style: none;
    counter-reset: item;
}

.entry-content ol li {
    position: relative;
    padding-left: 2em;
    margin-bottom: 0.5em;
    counter-increment: item;
}

.entry-content ol li::before {
    content: counter(item) ".";
    color: var(--primary-orange);
    font-weight: 600;
    position: absolute;
    left: 0;
}

/* Tablas con estilo */
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    overflow: hidden;
}

.entry-content table th,
.entry-content table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--medium-gray);
}

.entry-content table th {
    background: var(--primary-orange);
    color: white;
    font-weight: 600;
}

.entry-content table tr:last-child td {
    border-bottom: none;
}

.entry-content table tr:hover td {
    background: rgba(255, 107, 0, 0.05);
}

/* Botones de Gutenberg */
.entry-content .wp-block-button__link,
.entry-content .wp-block-button a {
    background: var(--primary-orange);
    color: white !important;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.entry-content .wp-block-button__link:hover,
.entry-content .wp-block-button a:hover {
    background: #e55f00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

/* Imágenes de Gutenberg */
.entry-content .wp-block-image {
    margin: 2em 0;
}

.entry-content .wp-block-image img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
}

.entry-content .wp-block-image figcaption {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5em;
}

/* Citas */
.entry-content blockquote {
    border-left: 4px solid var(--primary-orange);
    margin: 2em 0;
    padding: 1em 1.5em;
    background: rgba(255, 107, 0, 0.05);
    border-radius: 0 12px 12px 0;
    font-style: italic;
}

/* Código */
.entry-content code {
    background: rgba(0, 0, 0, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.entry-content pre {
    background: #1a1a2e;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 2em 0;
}

.entry-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* Botón volver */
.single-back {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--medium-gray);
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-button:hover {
    gap: 12px;
}

/* Sidebar con formulario */
.single-sidebar {
    position: sticky;
    top: 100px;
}

.contact-sidebar-form {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
}

.sidebar-form-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

.professional-contact-form .form-group {
    margin-bottom: 18px;
}

.professional-contact-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.professional-contact-form input,
.professional-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.professional-contact-form input:focus,
.professional-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.professional-contact-form .submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.professional-contact-form .submit-btn:hover {
    background: #e55f00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.professional-contact-form .submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.professional-contact-form .submit-btn.success {
    background: #28a745;
}

.professional-contact-form .submit-btn.error {
    background: #dc3545;
}

.form-privacy {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 15px;
}

/* Responsive para entradas */
@media (max-width: 1024px) {
    .single-container {
        grid-template-columns: 1fr;
    }
    
    .single-sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .single-entry {
        padding: 100px 15px 40px;
    }
    
    .single-content {
        padding: 25px;
    }
    
    .single-title {
        font-size: 1.6rem;
    }
    
    .entry-content {
        font-size: 1rem;
    }
    
    .contact-sidebar-form {
        padding: 25px;
    }
}
