:root {
    --primary-orange: #ff8c42;
    --dark-overlay: rgba(0, 0, 0, 0.7);
    --text-white: #ffffff;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    overflow-x: hidden;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    height: 50px;
    width: auto;
    transition: var(--transition-smooth);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.mexico-flag {
    height: 30px;
    width: auto;
    border-radius: 4px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(var(--dark-overlay), var(--dark-overlay)), url('img/images/BH-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 1000px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columnas en desktop */
    gap: 3rem;
    margin-top: 4rem;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 1rem;
    border-radius: 10px;
}

.service-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 140, 66, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.service-item:hover .service-icon {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: scale(1.1);
}

.service-icon img {
    width: 100%;
    filter: brightness(0) invert(1);
    transition: var(--transition-smooth);
}

.service-item:hover .service-icon img {
    filter: brightness(0);
}

.service-text {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

/* Social Media Buttons */
.social-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-btn:hover {
    transform: scale(1.1);
}

.whatsapp {
    background: #25d366;
}

.facebook {
    background: #1877f2;
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: start;
        padding-top: 2rem;
        transition: var(--transition-smooth);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* CORREGIDO: Services grid dentro del media query */
    .services-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 2rem;
        margin-top: 3rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon img {
        width: 35px;
        height: 35px;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .social-buttons {
        right: 10px;
        gap: 8px;
    }

    .social-btn {
        width: 45px;
        height: 45px;
    }

    .hero {
        background-attachment: scroll;
    }
}

/* Móviles muy pequeños */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon img {
        width: 30px;
        height: 30px;
    }

    .service-text {
        font-size: 0.9rem;
    }
}

/* Methodology Section */
.methodology-section {
    min-height: 100vh;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
    position: relative;
}

.methodology-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    width: 100%;
}

.methodology-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 4rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.methodology-title .title-light {
    font-weight: 300;
    color: #666;
}

.methodology-process {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-smooth);
}

.methodology-process.visible {
    opacity: 1;
    transform: translateY(0);
}

.methodology-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    transition: var(--transition-smooth);
}

.methodology-image:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.15));
}

/* Responsive for methodology section */
@media (max-width: 1200px) {
    .methodology-title {
        font-size: 3rem;
    }
}

/* Orange divider line */
.orange-divider {
    height: 8px;
    background: var(--primary-orange);
    width: 100%;
}

/* Services Section */
.services-section {
    min-height: 100vh;
    background: url('img/images/BH-2.webp') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.services-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
    width: 100%;
}

.services-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.services-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.services-column {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
}

.services-column:nth-child(2) {
    animation-delay: 0.2s;
}

.services-column:nth-child(3) {
    animation-delay: 0.4s;
}

.services-list {
    list-style: none;
    font-size: 1.3rem;
    line-height: 2.2;
    font-weight: 500;
}

.services-list li {
    color: var(--text-white);
    margin-bottom: 0.8rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    padding: 0.5rem 0;
    border-radius: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.services-list li:hover {
    color: var(--primary-orange);
    transform: translateX(10px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive for services section */
@media (max-width: 968px) {
    .services-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .services-title {
        font-size: 3rem;
    }

    .services-list {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .services-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .services-list {
        font-size: 1.1rem;
        line-height: 2;
    }

    .services-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 2rem;
    }

    .services-list {
        font-size: 1rem;
    }
}

/* Performance optimizations */
.service-icon img,
.logo,
.mexico-flag,
.social-btn img {
    will-change: transform;
}

/* Lazy loading placeholder */
.lazy-placeholder {
    background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}


/* Printing & Branding Section */
/* CSS para el contenedor de parallax */
.parallax-container {
    overflow: hidden;
    /* Asegura que las transformaciones no causen scroll horizontal */
    position: relative;
    width: 100%;
    height: 100%;
}

/* La imagen permanece estática dentro del contenedor */
.parallax-container .printing-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Removemos cualquier transform que pudiera estar aplicado directamente */
    transform: none !important;
}

.printing-section {
    min-height: 100vh;
    background: #ffffff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.printing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.printing-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 4rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: left;
}

.printing-title .title-orange {
    color: var(--primary-orange);
}

.printing-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Images Grid */
.printing-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    height: fit-content;
}

.image-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.image-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.printing-image {
    width: 100%;
    height: 900px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.image-item:hover .printing-image {
    transform: scale(1.05);
}

/* Services List */
.printing-services {
    background: rgba(248, 249, 250, 0.8);
    padding: 3rem 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 2rem;
}

.services-columns-print {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services-column-print {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpPrint 0.8s ease-out forwards;
}

.services-column-print:nth-child(2) {
    animation-delay: 0.2s;
}

.services-column-print:nth-child(3) {
    animation-delay: 0.4s;
}

.services-list-print {
    list-style: none;
    margin: 0;
    padding: 0;
}

.services-list-print li {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    padding: 0.3rem 0;
    border-radius: 5px;
    position: relative;
    padding-left: 1rem;
}

.services-list-print li:hover {
    color: var(--primary-orange);
    transform: translateX(10px);
    background: rgba(255, 140, 66, 0.1);
    padding-left: 1.5rem;
}

.services-list-print li::before {
    content: '•';
    color: var(--primary-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Animations */
@keyframes slideUpPrint {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-left {
    animation: fadeInLeft 1s ease-out;
}

.fade-in-right {
    animation: fadeInRight 1s ease-out 0.2s both;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out 0.4s both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .printing-title {
        font-size: 3rem;
    }
    
    .printing-content {
        gap: 3rem;
    }
}

@media (max-width: 968px) {
    .printing-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .printing-services {
        position: static;
    }
    
    .services-columns-print {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .services-column-print:nth-child(3) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .printing-section {
        padding: 4rem 0;
    }
    
    .printing-title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .printing-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .printing-image {
        height: 300px;
    }
    
    .printing-services {
        padding: 2rem 1.5rem;
    }
    
    .services-columns-print {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-column-print:nth-child(3) {
        grid-column: auto;
    }
    
    .services-list-print li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .printing-container {
        padding: 0 1rem;
    }
    
    .printing-title {
        font-size: 2rem;
    }
    
    .printing-image {
        height: 250px;
    }
    
    .printing-services {
        padding: 1.5rem;
    }
    
    .services-list-print li {
        font-size: 0.9rem;
    }
}

/* Performance optimizations */
.printing-image {
    will-change: transform;
}

/* Intersection Observer for animations */
.printing-observer {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.printing-observer.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Marketing & Design Section */
.marketing-design-section {
    min-height: 100vh;
    background: #f8f9fa;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.marketing-design-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.marketing-design-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 4rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

.marketing-design-title .title-orange {
    color: var(--primary-orange);
}

.marketing-design-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
    min-height: 60vh;
}

/* Services Lists */
.services-left,
.services-right {
    padding: 2rem 1rem;
}

.services-list-marketing {
    list-style: none;
    margin: 0;
    padding: 0;
}

.services-list-marketing li {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 2;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    padding: 0.5rem 0;
    border-radius: 5px;
    position: relative;
    padding-left: 1.5rem;
}

.services-list-marketing li:hover {
    color: var(--primary-orange);
    transform: translateX(10px);
    background: rgba(255, 140, 66, 0.1);
    padding-left: 2rem;
}

.services-list-marketing li::before {
    content: '•';
    color: var(--primary-orange);
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

/* Circles Container */
.circles-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -2rem;
    position: relative;
    height: 400px;
}

.circle-item {
    position: relative;
    z-index: 2;
}

.circle-wrapper {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.circle-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Marketing & Design Circles */
.marketing-circle .circle-wrapper,
.design-circle .circle-wrapper {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(255, 140, 66, 0.05));
}

.circle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.circle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.circle-wrapper:hover .circle-overlay {
    opacity: 1;
}

.circle-wrapper:hover .circle-image {
    transform: scale(1.1);
}

.circle-title {
    color: white;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Center Circle (Recognition) */
.recognition-circle {
    z-index: 3;
    margin: 0 -3rem;
}

.center-circle {
    background: white;
    border: 3px solid #333;
    width: 300px;
    height: 300px;
}

.center-circle:hover {
    border-color: var(--primary-orange);
    transform: scale(1.08);
}

.recognition-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
    text-align: center;
}

.recognition-icon {
    width: 80px;
    height: 80px;
    color: #333;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.center-circle:hover .recognition-icon {
    color: var(--primary-orange);
    transform: scale(1.1);
}

.recognition-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: #333;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.recognition-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: #666;
    letter-spacing: 1px;
    margin: 0;
}

.center-circle:hover .recognition-title {
    color: var(--primary-orange);
}

/* Animations */
.fade-in-left {
    animation: fadeInLeft 1s ease-out;
}

.fade-in-right {
    animation: fadeInRight 1s ease-out;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .marketing-design-title {
        font-size: 3rem;
    }
    
    .circle-wrapper {
        width: 240px;
        height: 240px;
    }
    
    .center-circle {
        width: 260px;
        height: 260px;
    }
    
    .services-list-marketing li {
        font-size: 1rem;
    }
}

@media (max-width: 968px) {
    .marketing-design-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .circles-container {
        order: 1;
        margin: 2rem 0;
    }
    
    .services-left {
        order: 0;
    }
    
    .services-right {
        order: 2;
    }
    
    .services-left,
    .services-right {
        max-width: 600px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .marketing-design-section {
        padding: 4rem 0;
    }
    
    .marketing-design-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .circles-container {
        flex-direction: column;
        gap: 2rem;
        height: auto;
    }
    
    .recognition-circle {
        margin: 0;
        order: 2;
    }
    
    .marketing-circle {
        order: 1;
    }
    
    .design-circle {
        order: 3;
    }
    
    .circle-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .center-circle {
        width: 220px;
        height: 220px;
    }
    
    .services-left,
    .services-right {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .recognition-title {
        font-size: 1rem;
    }
    
    .recognition-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .marketing-design-container {
        padding: 0 1rem;
    }
    
    .marketing-design-title {
        font-size: 2rem;
    }
    
    .circle-wrapper {
        width: 180px;
        height: 180px;
    }
    
    .center-circle {
        width: 200px;
        height: 200px;
    }
    
    .recognition-icon {
        width: 60px;
        height: 60px;
    }
    
    .services-list-marketing li {
        font-size: 0.9rem;
    }
}

/* Performance optimizations */
.circle-image,
.recognition-icon {
    will-change: transform;
}

/* Hover effects for better interaction */
.services-list-marketing li {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.circle-wrapper {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.networking-section {
    background-color: #2d2d2d;
    color: white;
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    font-family: 'Arial', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.content {
    padding-right: 40px;
}

.tag {
    color: #ff8c00;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.main-title {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    color: transparent;
    -webkit-text-stroke: 1px #cccccc;
    -webkit-text-stroke: 1px #cccccc;
    text-shadow: none;
}

.description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.highlight {
    color: #ff8c00;
}

.ideal-section h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
}

.ideal-list {
    list-style: none;
    margin-bottom: 30px;
}

.ideal-list li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #e0e0e0;
    position: relative;
    padding-left: 15px;
}

.ideal-list li:before {
    content: "-";
    position: absolute;
    left: 0;
    color: #ff8c00;
    font-weight: bold;
}

.how-it-works h3 {
    color: #ff8c00;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}

.how-it-works p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #e0e0e0;
    position: relative;
    padding-left: 15px;
}

.how-it-works p:before {
    content: "-";
    position: absolute;
    left: 0;
    color: #ff8c00;
    font-weight: bold;
}

.image-container {
    position: relative;
    border: 3px solid #ff8c00;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background-color: #1a1a1a;
}

.lazy-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.lazy-image.loaded {
    opacity: 1;
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #2d2d2d, #1a1a1a);
    color: #666;
    font-size: 14px;
}

.loader {
    width: 40px;
    height: 40px;
    border: 3px solid #444;
    border-top: 3px solid #ff8c00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr 350px;
        gap: 40px;
    }
    
    .main-title,
    .subtitle {
        font-size: 42px;
    }
    
    .content {
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .networking-section {
        padding: 60px 15px;
    }
    
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .content {
        padding-right: 0;
        order: 1;
    }
    
    .image-container {
        order: 2;
        max-width: 400px;
        margin: 0 auto;
        aspect-ratio: 4/3;
    }
    
    .main-title,
    .subtitle {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .networking-section {
        padding: 40px 15px;
    }
    
    .main-title,
    .subtitle {
        font-size: 28px;
    }
    
    .description,
    .ideal-list li,
    .how-it-works p {
        font-size: 14px;
    }
    
    .image-container {
        aspect-ratio: 1;
    }
}

@media (max-width: 360px) {
    .main-title,
    .subtitle {
        font-size: 24px;
    }
    
    .container {
        gap: 30px;
    }
}


/* ===== SECCIÓN INTERIORISMO GRÁFICO - VERSIÓN OPTIMIZADA ===== */
.interiorismo-section {
    background-color: #f8f8f8;
    color: #333;
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    font-family: 'Arial', sans-serif;
}

.interiorismo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.interiorismo-content {
    padding-right: 40px;
}

.interiorismo-main-title {
    font-size: 42px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 40px;
    color: #333;
    text-transform: uppercase;
}

.interiorismo-subtitle {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #333;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.interiorismo-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.interiorismo-highlight {
    color: #333;
    font-weight: bold;
}

/* ===== NUEVO SISTEMA DE IMAGEN ÚNICA ===== */
.interiorismo-image-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}



.interiorismo-main-image {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
}

.interiorismo-main-image.loaded {
    opacity: 1;
}

.interiorismo-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0e0e0, #d0d0d0);
    color: #999;
    font-size: 14px;
    border-radius: 12px;
}

.interiorismo-loader {
    width: 32px;
    height: 32px;
    border: 3px solid #ddd;
    border-top: 3px solid #666;
    border-radius: 50%;
   
}






/* ===== RESPONSIVE DESIGN - INTERIORISMO ===== */
@media (max-width: 1024px) {
    .interiorismo-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .interiorismo-main-title {
        font-size: 36px;
    }
    
    .interiorismo-subtitle {
        font-size: 28px;
        letter-spacing: 6px;
    }
    
    .interiorismo-content {
        padding-right: 20px;
    }

    .interiorismo-image-container {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .interiorismo-section {
        padding: 60px 15px;
    }
    
    .interiorismo-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .interiorismo-content {
        padding-right: 0;
        order: 1;
    }
    
    .interiorismo-image-container {
        order: 2;
        max-width: 100%;
        margin-top: 20px;
    }
    
    .interiorismo-main-title {
        font-size: 32px;
    }
    
    .interiorismo-subtitle {
        font-size: 24px;
        letter-spacing: 4px;
    }

    .interiorismo-image-placeholder {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .interiorismo-section {
        padding: 40px 15px;
    }
    
    .interiorismo-main-title {
        font-size: 28px;
    }
    
    .interiorismo-subtitle {
        font-size: 20px;
        letter-spacing: 3px;
    }
    
    .interiorismo-description {
        font-size: 14px;
    }

    .interiorismo-image-placeholder {
        height: 200px;
    }
}

@media (max-width: 360px) {
    .interiorismo-main-title {
        font-size: 24px;
    }
    
    .interiorismo-subtitle {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .interiorismo-container {
        gap: 30px;
    }
}

/* ===== LIGHTBOX SIMPLE (OPCIONAL) ===== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover {
    opacity: 0.7;
}
/* =================================
           SERVICIOS SECTION - CSS CORREGIDO
           Sin línea azul/gris debajo de la imagen
        ================================= */
        
        .srv-services-wrapper {
            width: 100%;
            /* ELIMINADO: background gradiente que causaba la línea */
            background-color: #f5f5f5;
            /* ELIMINADO: min-height que extendía el fondo */
        }
        
        /* Título arriba de la imagen */
        .srv-section-title {
            background-color: #f5f5f5;
            padding: 40px 20px 20px 20px;
            text-align: right;
        }
        
        .srv-title-container {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .srv-title-line {
            flex: 1;
            height: 2px;
            background: linear-gradient(to right, transparent, #333333);
            max-width: 400px;
        }
        
        .srv-title-text {
            color: #333333;
            font-family: 'Arial', 'Helvetica', sans-serif;
            font-size: 24px;
            font-weight: 300;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin: 0;
            white-space: nowrap;
        }
        
        /* Container de la imagen de fondo */
        .srv-services-container {
            position: relative;
            width: 100%;
            min-height: 600px; /* AUMENTADO: de 450px a 600px para mostrar imagen completa */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            box-sizing: border-box;
            /* AGREGADO: Asegurar que no haya espacio extra */
            margin-bottom: 0;
        }
        
        /* Overlay para mejorar legibilidad */
        .srv-services-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }
        
        /* Grid completo que incluye iconos y textos */
        .srv-services-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0px 20px 10px 20px;
            /* CAMBIADO: Sin padding-bottom extra */
            padding-bottom: 0;
            /* CAMBIADO: Sin margen negativo */
            margin-bottom: 0;
        }
        
        .srv-service-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .srv-service-item.srv-animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Iconos dentro de la imagen - Posicionados al pie */
        .srv-service-icon-container {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            min-height: 450px; /* AUMENTADO: de 300px a 450px para usar toda la imagen */
            margin-bottom: 15px;
        }
        
        .srv-service-icon {
            width: 80px;
            height: 80px;
            transition: transform 0.3s ease;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
        }
        
        .srv-service-item:hover .srv-service-icon {
            transform: scale(1.1);
        }
        
        /* Textos fuera de la imagen - Estilo moderno */
        .srv-service-text {
            /* Glassmorphism effect */
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            
            /* Sombras modernas */
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.1),
                0 4px 16px rgba(0, 0, 0, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            
            /* Forma y espaciado */
            padding: 24px 16px;
            border-radius: 16px;
            margin-top: 15px;
            width: 100%;
            text-align: center;
            
            /* Transiciones suaves */
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateY(0);
            
            /* Gradiente sutil */
            background-image: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.3) 0%, 
                rgba(255, 255, 255, 0.1) 100%);
            
            position: relative;
        }
        
        /* Efectos hover modernos */
        .srv-service-text:hover {
            transform: translateY(-8px);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.15),
                0 8px 24px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
            
            background: rgba(255, 255, 255, 0.35);
            border: 1px solid rgba(255, 255, 255, 0.25);
        }
        
        /* Efecto de enfoque sutil */
        .srv-service-text::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, 
                rgba(74, 144, 226, 0.1), 
                rgba(80, 200, 120, 0.1), 
                rgba(255, 107, 107, 0.1));
            border-radius: 18px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }
        
        .srv-service-text:hover::before {
            opacity: 1;
        }
        
        .srv-service-title {
            color: #2c3e50;
            font-family: 'Arial', 'Helvetica', sans-serif;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            line-height: 1.3;
            margin: 0;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            transition: color 0.3s ease;
        }
        
        /* Efecto hover en el título */
        .srv-service-text:hover .srv-service-title {
            color: #1a252f;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .srv-services-container {
                min-height: 550px; /* AUMENTADO: de 400px a 550px */
            }
            
            .srv-services-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
                padding: 0px 15px 0px 15px;
                padding-bottom: 0;
                margin-bottom: 0;
            }
            
            .srv-service-icon-container {
                min-height: 400px; /* AUMENTADO: de 280px a 400px */
                margin-bottom: 12px;
            }
            
            .srv-title-text {
                font-size: 20px;
                letter-spacing: 2px;
            }
            
            .srv-service-icon {
                width: 70px;
                height: 70px;
            }
            
            .srv-service-text {
                padding: 20px 14px;
                border-radius: 14px;
                margin-top: 15px;
            }
            
            .srv-service-title {
                font-size: 14px;
            }
        }
        
        @media (max-width: 768px) {
            .srv-section-title {
                padding: 30px 15px 15px 15px;
            }
            
            .srv-services-container {
                min-height: 500px; /* AUMENTADO: de 350px a 500px */
            }
            
            .srv-services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
                padding: 0px 15px 0px 15px;
                padding-bottom: 0;
                margin-bottom: 0;
            }
            
            .srv-service-icon-container {
                min-height: 350px; /* AUMENTADO: de 250px a 350px */
                margin-bottom: 10px;
            }
            
            .srv-title-container {
                justify-content: center;
                gap: 15px;
            }
            
            .srv-title-text {
                font-size: 18px;
                letter-spacing: 1.5px;
            }
            
            .srv-title-line {
                max-width: 150px;
            }
            
            .srv-service-icon {
                width: 60px;
                height: 60px;
            }
            
            .srv-service-text {
                padding: 18px 12px;
                border-radius: 12px;
                margin-top: 12px;
            }
            
            .srv-service-title {
                font-size: 12px;
                letter-spacing: 1px;
            }
        }
        
        @media (max-width: 480px) {
            .srv-section-title {
                padding: 25px 10px 10px 10px;
            }
            
            .srv-services-container {
                min-height: 450px; /* AUMENTADO: de 300px a 450px */
            }
            
            .srv-services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                max-width: 300px;
                padding: 0px 10px 0px 10px;
                padding-bottom: 0;
                margin-bottom: 0;
            }
            
            .srv-service-icon-container {
                min-height: 320px; /* AUMENTADO: de 220px a 320px */
                margin-bottom: 8px;
            }
            
            .srv-title-text {
                font-size: 16px;
                letter-spacing: 1px;
            }
            
            .srv-title-line {
                max-width: 100px;
            }
            
            .srv-service-icon {
                width: 70px;
                height: 70px;
            }
            
            .srv-service-text {
                padding: 20px 14px;
                border-radius: 14px;
                margin-top: 15px;
            }
            
            .srv-service-title {
                font-size: 14px;
            }
        }
        
        /* Lazy loading styles */
        .srv-service-icon[data-src] {
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .srv-service-icon.srv-loaded {
            opacity: 1;
        }
        
        /* Preloader para iconos */
        .srv-service-icon-container {
            position: relative;
        }
        
        .srv-service-icon-container::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 20px;
            margin: -10px 0 0 -10px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top: 2px solid #ffffff;
            border-radius: 50%;
            animation: srv-spin 1s linear infinite;
            z-index: 1;
        }
        
        .srv-service-icon.srv-loaded ~ .srv-service-icon-container::before,
        .srv-service-icon-container:has(.srv-service-icon.srv-loaded)::before {
            display: none;
        }
        
        @keyframes srv-spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* CSS Super Personalizado para Fotografía y Video de Producto */
        /* Prefijo: fyvdp- para evitar interferencias */
        
        .fyvdp-section {
            padding: 80px 20px;
            background-color: #ffffff;
            font-family: 'Arial', sans-serif;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }
        
        .fyvdp-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
            min-height: 600px;
        }
        
        .fyvdp-content {
            padding-right: 40px;
        }
        
        .fyvdp-title {
            font-size: 2.5rem;
            font-weight: 900;
            color: #2c2c2c;
            margin: 0 0 50px 0;
            line-height: 1.2;
            letter-spacing: -0.02em;
            position: relative;
            display: flex;
            align-items: center;
            gap: 30px;
        }
        
        .fyvdp-title::after {
            content: '';
            flex: 1;
            height: 2px;
            background-color: #2c2c2c;
            display: block;
        }
        
        .fyvdp-title span {
            font-weight: 300;
            color: #666;
        }
        
        .fyvdp-subtitle {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 25px;
            line-height: 1.6;
        }
        
        .fyvdp-intro {
            margin-bottom: 30px;
        }
        
        .fyvdp-intro p {
            font-size: 1rem;
            color: #444;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .fyvdp-brand {
            font-weight: 700;
            color: #2c2c2c;
        }
        
        .fyvdp-services {
            margin-bottom: 40px;
        }
        
        .fyvdp-services-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #2c2c2c;
            margin-bottom: 15px;
        }
        
        .fyvdp-services-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .fyvdp-services-item {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.6;
            margin-bottom: 8px;
            position: relative;
            padding-left: 8px;
        }
        
        .fyvdp-services-item::before {
            content: '-';
            position: absolute;
            left: 0;
            color: #888;
        }
        
        .fyvdp-why-section {
            margin-top: 40px;
        }
        
        .fyvdp-why-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #2c2c2c;
            margin-bottom: 20px;
        }
        
        .fyvdp-why-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .fyvdp-why-item {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.6;
            margin-bottom: 8px;
            position: relative;
            padding-left: 8px;
        }
        
        .fyvdp-why-item::before {
            content: '-';
            position: absolute;
            left: 0;
            color: #888;
        }
        
        .fyvdp-images {
            display: flex;
            flex-direction: column;
            gap: 30px;
            height: fit-content;
        }
        
        .fyvdp-image-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            cursor: pointer;
        }
        
        .fyvdp-image-wrapper:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .fyvdp-image-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 2;
            pointer-events: none;
        }
        
        .fyvdp-image-wrapper:hover::before {
            opacity: 1;
        }
        
        .fyvdp-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            filter: brightness(1) contrast(1.05);
        }
        
        .fyvdp-image-wrapper:hover .fyvdp-image {
            transform: scale(1.05);
        }
        
        .fyvdp-image-top {
            aspect-ratio: 16/10;
            object-fit: cover;
        }
        
        .fyvdp-image-bottom {
            aspect-ratio: 16/11;
            object-fit: cover;
        }
        
        /* Lazy loading placeholder */
        .fyvdp-image-placeholder {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: fyvdp-loading 1.5s infinite;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }
        
        @keyframes fyvdp-loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        
        .fyvdp-image.fyvdp-loaded {
            opacity: 1;
        }
        
        .fyvdp-image:not(.fyvdp-loaded) {
            opacity: 0;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .fyvdp-container {
                gap: 40px;
            }
            
            .fyvdp-content {
                padding-right: 20px;
            }
            
            .fyvdp-title {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .fyvdp-section {
                padding: 60px 15px;
            }
            
            .fyvdp-title {
                font-size: 2rem;
                margin-bottom: 50px;
                text-align: center;
            }
            
            .fyvdp-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .fyvdp-content {
                padding-right: 0;
            }
            
            .fyvdp-images {
                gap: 30px;
            }
            
            .fyvdp-image-top, .fyvdp-image-bottom {
                aspect-ratio: 16/12;
            }
            
            .fyvdp-subtitle {
                text-align: left;
            }
        }
        
        @media (max-width: 480px) {
            .fyvdp-section {
                padding: 40px 10px;
            }
            
            .fyvdp-title {
                font-size: 1.8rem;
                margin-bottom: 40px;
            }
            
            .fyvdp-container {
                gap: 35px;
            }
            
            .fyvdp-images {
                gap: 25px;
            }
            
            .fyvdp-image-wrapper {
                border-radius: 8px;
            }
            
            .fyvdp-image-top, .fyvdp-image-bottom {
                aspect-ratio: 4/3;
            }
        }
        
        /* Animaciones de entrada */
        .fyvdp-fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        .fyvdp-fade-in.fyvdp-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .fyvdp-fade-in-delay {
            transition-delay: 0.2s;
        }
        
        .fyvdp-fade-in-delay-2 {
            transition-delay: 0.4s;
        }

    /* CSS Super Personalizado para Branding Section */
        /* Prefijo: branding-section- para evitar interferencias */
        
        .branding-section-container {
            padding: 80px 20px;
            background-color: #ffffff;
            font-family: 'Arial', sans-serif;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }
        
        .branding-section-header {
            display: flex;
            align-items: center;
            margin-bottom: 60px;
            gap: 30px;
        }
        
        .branding-section-line {
            flex: 1;
            height: 2px;
            background-color: #2c2c2c;
        }
        
        .branding-section-title {
            font-size: 2rem;
            font-weight: 900;
            color: #2c2c2c;
            margin: 0;
            line-height: 1.2;
            letter-spacing: -0.01em;
            white-space: nowrap;
            text-align: center;
        }
        
        .branding-section-title span {
            font-weight: 300;
            color: #666;
        }
        
        .branding-section-grid {
            display: grid;
            grid-template-columns: repeat(10, 1fr);
            gap: 12px;
            width: 100%;
        }
        
        .branding-section-item {
            position: relative;
            aspect-ratio: 1;
            overflow: hidden;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        }
        
        .branding-section-item:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
            z-index: 10;
        }
        
        .branding-section-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 2;
            pointer-events: none;
        }
        
        .branding-section-item:hover::before {
            opacity: 1;
        }
        
        .branding-section-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
            filter: brightness(1) contrast(1.02);
        }
        
        .branding-section-item:hover .branding-section-image {
            transform: scale(1.05);
        }
        
        /* Lazy loading placeholder */
        .branding-section-placeholder {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: branding-section-loading 1.5s infinite;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }
        
        @keyframes branding-section-loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        
        .branding-section-image.branding-section-loaded {
            opacity: 1;
        }
        
        .branding-section-image:not(.branding-section-loaded) {
            opacity: 0;
        }
        
        /* Lightbox Modal */
        .branding-section-lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }
        
        .branding-section-lightbox.branding-section-active {
            opacity: 1;
            visibility: visible;
        }
        
        .branding-section-lightbox-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .branding-section-lightbox-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }
        
        .branding-section-lightbox.branding-section-active .branding-section-lightbox-image {
            transform: scale(1);
        }
        
        .branding-section-close {
            position: absolute;
            top: -50px;
            right: -50px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: white;
            font-size: 24px;
            font-weight: 300;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .branding-section-close:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
            transform: scale(1.1);
        }
        
        .branding-section-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: white;
            font-size: 20px;
            font-weight: bold;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            user-select: none;
        }
        
        .branding-section-nav:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-50%) scale(1.1);
        }
        
        .branding-section-prev {
            left: -80px;
        }
        
        .branding-section-next {
            right: -80px;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .branding-section-grid {
                grid-template-columns: repeat(8, 1fr);
                gap: 10px;
            }
            
            .branding-section-title {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .branding-section-container {
                padding: 60px 15px;
            }
            
            .branding-section-header {
                margin-bottom: 40px;
                gap: 20px;
            }
            
            .branding-section-title {
                font-size: 1.5rem;
            }
            
            .branding-section-grid {
                grid-template-columns: repeat(5, 1fr);
                gap: 8px;
            }
            
            .branding-section-close {
                top: -40px;
                right: -40px;
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
            
            .branding-section-nav {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
            
            .branding-section-prev {
                left: -60px;
            }
            
            .branding-section-next {
                right: -60px;
            }
        }
        
        @media (max-width: 480px) {
            .branding-section-container {
                padding: 40px 10px;
            }
            
            .branding-section-header {
                flex-direction: column;
                gap: 15px;
                margin-bottom: 35px;
            }
            
            .branding-section-line {
                width: 60px;
                height: 1px;
            }
            
            .branding-section-title {
                font-size: 1.3rem;
                white-space: normal;
                text-align: center;
            }
            
            .branding-section-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 6px;
            }
            
            .branding-section-lightbox-content {
                max-width: 95vw;
                max-height: 95vh;
            }
            
            .branding-section-close {
                top: -30px;
                right: -30px;
                width: 35px;
                height: 35px;
                font-size: 18px;
            }
            
            .branding-section-nav {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .branding-section-prev {
                left: -50px;
            }
            
            .branding-section-next {
                right: -50px;
            }
        }
        
        /* Animaciones de entrada */
        .branding-section-fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        .branding-section-fade-in.branding-section-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Stagger animation para el grid */
        .branding-section-item {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        .branding-section-item.branding-section-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Prevenir scroll cuando el lightbox está activo */
        body.branding-section-no-scroll {
            overflow: hidden;
        }

/* CSS Super Personalizado para Clientes Section */
        /* Prefijo: clientes-section- para evitar interferencias */
        
        .clientes-section-container {
            padding: 80px 20px;
            background-color: #ffffff;
            font-family: 'Arial', sans-serif;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }
        
        .clientes-section-title {
            font-size: 2.2rem;
            color: #2c2c2c;
            margin: 0 0 60px 0;
            line-height: 1.3;
            letter-spacing: -0.01em;
            text-align: left;
        }
        
        .clientes-section-title .clientes-section-regular {
            font-weight: 300;
        }
        
        .clientes-section-title .clientes-section-bold {
            font-weight: 900;
        }
        
        .clientes-section-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 25px 20px;
            align-items: center;
            width: 100%;
        }
        
        .clientes-section-item {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
            border-radius: 8px;
            cursor: pointer;
            min-height: 80px;
        }
        
        .clientes-section-item:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            background-color: rgba(248, 248, 248, 0.8);
        }
        
        .clientes-section-logo {
            max-width: 100%;
            max-height: 60px;
            width: auto;
            height: auto;
            object-fit: contain;
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
            filter: brightness(1) contrast(1);
        }
        
        .clientes-section-item:hover .clientes-section-logo {
            filter: brightness(1.1) contrast(1.1);
        }
        
        /* Lazy loading placeholder */
        .clientes-section-placeholder {
            background: linear-gradient(90deg, #f8f8f8 25%, #eeeeee 50%, #f8f8f8 75%);
            background-size: 200% 100%;
            animation: clientes-section-loading 1.5s infinite;
            width: 100%;
            height: 60px;
            border-radius: 4px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        @keyframes clientes-section-loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        
        .clientes-section-logo.clientes-section-loaded {
            opacity: 1;
        }
        
        .clientes-section-logo:not(.clientes-section-loaded) {
            opacity: 0;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .clientes-section-grid {
                grid-template-columns: repeat(10, 1fr);
                gap: 20px 15px;
            }
            
            .clientes-section-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 900px) {
            .clientes-section-grid {
                grid-template-columns: repeat(6, 1fr);
                gap: 18px 12px;
            }
            
            .clientes-section-item {
                padding: 12px;
                min-height: 70px;
            }
            
            .clientes-section-logo {
                max-height: 50px;
            }
        }
        
        @media (max-width: 768px) {
            .clientes-section-container {
                padding: 60px 15px;
            }
            
            .clientes-section-title {
                font-size: 1.8rem;
                text-align: center;
                margin-bottom: 50px;
            }
            
            .clientes-section-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 15px 10px;
            }
            
            .clientes-section-item {
                padding: 10px;
                min-height: 60px;
            }
            
            .clientes-section-logo {
                max-height: 45px;
            }
        }
        
        @media (max-width: 480px) {
            .clientes-section-container {
                padding: 40px 10px;
            }
            
            .clientes-section-title {
                font-size: 1.6rem;
                margin-bottom: 40px;
            }
            
            .clientes-section-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px 8px;
            }
            
            .clientes-section-item {
                padding: 8px;
                min-height: 55px;
            }
            
            .clientes-section-logo {
                max-height: 40px;
            }
        }
        
        @media (max-width: 320px) {
            .clientes-section-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            
            .clientes-section-item {
                min-height: 50px;
            }
            
            .clientes-section-logo {
                max-height: 35px;
            }
        }
        
        /* Animaciones de entrada */
        .clientes-section-fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        .clientes-section-fade-in.clientes-section-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Stagger animation para logos */
        .clientes-section-item {
            opacity: 0;
            transform: translateY(15px);
            transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        .clientes-section-item.clientes-section-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Efecto especial para algunos logos destacados */
        .clientes-section-item:nth-child(3n) {
            transition-delay: 0.1s;
        }
        
        .clientes-section-item:nth-child(5n) {
            transition-delay: 0.15s;
        }
        
        /* Mejora de accesibilidad */
        .clientes-section-item:focus {
            outline: 2px solid #007bff;
            outline-offset: 2px;
        }
        
        @media (prefers-reduced-motion: reduce) {
            .clientes-section-item,
            .clientes-section-logo,
            .clientes-section-fade-in {
                transition: none;
                animation: none;
            }
        }


        .footer-section {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .footer-section {
            font-family: 'Arial', sans-serif;
            background-color: #f5f5f5;
            padding: 50px 0;
        }

        .footer-section-main {
            background-color: #000000;
            color: #ffffff;
            text-align: center;
            padding: 60px 20px 20px;
            position: relative;
            min-height: 400px;
        }

        .footer-section-content {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            padding-bottom: 40px;
        }

        .footer-section-logo {
            margin-bottom: 50px;
        }

        .footer-section-logo img {
            max-width: 280px;
            height: auto;
        }

        .footer-section-contact {
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .footer-section-contact-info-left {
            text-align: left;
        }

        .footer-section-contact-title {
            font-size: 48px;
            font-weight: 300;
            margin-bottom: 8px;
            letter-spacing: 1px;
        }

        .footer-section-contact-subtitle {
            font-size: 16px;
            color: #cccccc;
            font-weight: 300;
        }

        .footer-section-whatsapp-btn {
            background-color: #ff8c00;
            color: #ffffff;
            padding: 12px 35px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .footer-section-whatsapp-btn:hover {
            background-color: #e67c00;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
        }

        .footer-section-contact-details {
            margin-bottom: 30px;
            margin-top: 40px;
        }

        .footer-section-contact-item {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-size: 18px;
        }

        .footer-section-contact-item svg {
            margin-right: 12px;
            fill: #ffffff;
        }

        .footer-section-contact-item a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section-contact-item a:hover {
            color: #ff8c00;
        }

        .footer-section-location {
            font-size: 20px;
            margin-bottom: 40px;
            color: #cccccc;
            font-weight: 300;
        }

        .footer-section-copyright {
            font-size: 12px;
            color: #666666;
            position: absolute;
            bottom: 10px;
            right: 10px;
            z-index: 10;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-section-main {
                padding: 40px 15px 25px;
            }

            .footer-section-contact {
                flex-direction: column;
                gap: 20px;
            }

            .footer-section-contact-info-left {
                text-align: center;
            }

            .footer-section-contact-title {
                font-size: 36px;
            }

            .footer-section-contact-subtitle {
                font-size: 14px;
            }

            .footer-section-whatsapp-btn {
                font-size: 16px;
                padding: 10px 30px;
            }

            .footer-section-contact-item {
                font-size: 16px;
            }

            .footer-section-location {
                font-size: 18px;
            }

            .footer-section-logo img {
                max-width: 220px;
            }

            .footer-section-copyright {
                position: static;
                text-align: center;
                margin-top: 30px;
            }
        }

        @media (max-width: 480px) {
            .footer-section-contact-title {
                font-size: 28px;
            }

            .footer-section-logo img {
                max-width: 180px;
            }
        }


/* Main Content */
.main-content {
    margin-top: 100px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
    background-color: #ffffff;
}

.privacy-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 2rem;
    text-align: left;
}

.privacy-content {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

.privacy-content p {
    margin-bottom: 1.5rem;
}

.section-title {
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.company-name {
    font-weight: bold;
}

.terms-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.subsection {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.service-list {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.service-list ul {
    list-style-type: disc;
    margin-left: 1rem;
}

.service-list li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid #10171f;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 1rem;
        margin-top: 80px;
    }

    .privacy-title {
        font-size: 2rem;
    }

    .privacy-content {
        font-size: 13px;
    }

    .subsection {
        margin-left: 1rem;
    }

    .service-list {
        margin-left: 1rem;
    }

}