/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

.hero .container {
    text-align: left !important;
}

.hero .container {
    padding-left: 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ff6b35;
}

.menu-toggle {
    cursor: pointer !important;
    padding: 12px;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    pointer-events: auto !important;
}

.menu-toggle:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.5);
    cursor: pointer !important;
}

.menu-toggle:active {
    background: rgba(255, 107, 53, 0.3);
    transform: scale(0.95);
}

.dots-grid {
    display: grid;
    grid-template-columns: repeat(3, 4px);
    grid-template-rows: repeat(3, 4px);
    gap: 1px;
    background: #ff6b35;
    padding: 6px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-items: center;
}

.dots-grid span {
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
}

/* Header Buttons Container */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
    z-index: 1001;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
}

.sidebar-overlay {
    position: absolute;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.sidebar-overlay.active {
    right: 0;
}

.sidebar-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease-in-out 0.1s;
}

.sidebar-content.active {
    opacity: 1;
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo img {
    height: 40px;
    width: auto;
}

.sidebar-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.sidebar-close:hover {
    color: #ff6b35;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin: 0;
}

.sidebar-menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-menu a:hover {
    background-color: rgba(255, 107, 53, 0.1);
    border-left-color: #ff6b35;
    color: #ff6b35;
}

.sidebar-contact {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 14px;
}

.sidebar-contact-item:last-child {
    margin-bottom: 0;
}

.sidebar-contact-item i {
    margin-right: 10px;
    color: #ff6b35;
    width: 16px;
    text-align: center;
}

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

/* Mobile Dots Panel */
.mobile-dots-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
}

.dots-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dots-overlay.active {
    opacity: 1;
}

.dots-content {
    position: absolute;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: white;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.dots-content.active {
    right: 0;
}

.dots-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: flex-start;
}

.dots-close {
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: relative;
}

.dots-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: #ff6b35;
    transform-origin: center;
}

.dots-close span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.dots-close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.dots-nav {
    padding: 40px 0;
}

.dots-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dots-menu li {
    margin: 0;
}

.dots-menu a {
    display: block;
    padding: 20px 30px;
    color: #ff6b35;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-right: 4px solid transparent;
}

.dots-menu a:hover {
    background: #fff5f0;
    border-right-color: #ff6b35;
    padding-right: 40px;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

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

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.carousel-slide.active {
    opacity: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 120px;
}

.hero-text {
    color: white;
    text-align: left;
    margin-left: 0;
    padding-left: 0;
    width: 100%;
}

.hero-title {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.animated-text {
    color: #ff6b35;
    display: inline-block;
    animation: fadeInOut 3s infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}

.hero-subtitle {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 30px 0;
}

.since-text {
    font-size: 100px;
    font-weight: 800;
    line-height: 1;
    display: block;
    letter-spacing: 5px;
}

.hero-subtitle-header {
    text-align: left !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    display: block;
    width: 100%;
}

.since-text-header {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 50px;
    text-align: left !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    display: block;
    color: white;
}

/* Media query para móvil - Reducir tamaño del texto y alinear a la izquierda */
@media (max-width: 768px) {
    .since-text-header {
        font-size: 2rem !important;
        text-align: left !important;
        justify-content: flex-start !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
        margin-bottom: 30px;
    }
}

/* Media query para móvil - Reducir tamaño del texto y alinear a la izquierda */
@media (max-width: 480px) {
    .hero-subtitle-header {
        font-size: 2.5rem !important;
        text-align: left !important;
    }
}

.hero-bottom-full {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent) 1;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
    padding: 40px 0;
    z-index: 3;
}

.hero-line {
    width: 100%;
    height: 1px;
    background: white;
    margin: -43px 0 30px 0;
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5px;
}

.hero-bullets ul {
    list-style: none;
}

.hero-bullets li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 18px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.hero-bullets li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-size: 20px;
}

.hero-bullets p a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-bullets p a:hover {
    color: #ff6b35;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid white;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.cta-icon {
    width: 40px;
    height: 40px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
}

.cta-icon i {
    transform: rotate(-45deg);
}

/* Leading Global Section */
.leading-global {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.leading-global::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-image: url('images/triangulo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    z-index: 1;
}

.leading-global-content {
    display: grid;
    grid-template-columns: 1fr 1fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Columna Izquierda */
.left-content {
    padding-right: 40px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.left-content .section-subtitle {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #ff6b35;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    text-transform: capitalize;
}

.left-content .main-title {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #000;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.left-content .description {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.left-content .detailed-text {
    font-size: 14px;
    color: #666;
    line-height: 2;
    margin-bottom: 40px;
    text-align: justify;
}

.about-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 20px;
    border: 2px solid #333;
    border-radius: 25px;
    background: transparent;
    transition: all 0.3s ease;
}

.about-button:hover {
    border-color: #ff6b35;
    color: #ff6b35;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    transition: all 0.3s ease;
}

.about-button:hover .arrow-icon {
    transform: translate(3px, -3px);
}

/* Columna Central */
.center-content {
    position: relative;
}

.construction-image {
    width: 650px;
    height: 400px;
    border-radius: 1px;
    overflow: hidden;
    position: relative;
}

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

/* Tarjetas Superpuestas sobre la Imagen */
.overlay-stats-cards {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.overlay-stat-card {
    width: 160px;
    height: 120px;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

.overlay-stat-card.black-card {
    background: rgba(44, 44, 44, 0.95);
    color: white;
}

.overlay-stat-card.orange-card {
    background: rgba(255, 107, 53, 0.95);
    color: white;
}

.overlay-stat-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
    opacity: 0.9;
}

.overlay-stat-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'HelveticaNeue', sans-serif;
}

.overlay-stat-label {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.2;
    opacity: 0.9;
    font-family: 'HelveticaNeue', sans-serif;
}

/* Columna Derecha */
.right-content {
    position: relative;
    height: 400px;
}

.stats-cards {
    position: absolute;
    top: 0;
    right: -40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    width: 200px;
    height: 140px;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
}

.black-card {
    background: #2c2c2c;
    color: white;
    z-index: 2;
}

.orange-card {
    background: #ff6b35;
    color: white;
    margin-left: 40px;
    z-index: 1;
}

.stat-icon {
    font-size: 2rem;
    opacity: 0.9;
}

.stat-info {
    flex: 1;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'HelveticaNeue', sans-serif;
}

.stat-card .stat-label {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    opacity: 0.9;
    font-family: 'HelveticaNeue', sans-serif;
}

/* Responsive Design para Leading Global Section */
@media (max-width: 1024px) {
    .leading-global-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .left-content {
        padding-right: 0;
        order: 1;
    }
    
    .center-content {
        order: 2;
    }
    
    .right-content {
        order: 3;
        height: auto;
        margin-top: 40px;
    }
    
    .overlay-stats-cards {
        position: relative;
        top: 20px;
        right: 0;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        gap: 15px;
        margin-top: 20px;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .overlay-stat-card {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .left-content .main-title {
        font-size: 2.5rem;
    }
    
    .left-content {
        padding-right: 0;
        padding-left: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .center-content {
        width: 100%;
        max-width: 100%;
    }
    
    .construction-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    .overlay-stats-cards {
        flex-direction: column !important;
        align-items: stretch !important;
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        left: 0 !important;
        margin: 20px 0 !important;
        padding: 0 15px !important;
        width: 100vw !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        transform: translateX(-15px) !important;
    }
    
    .overlay-stat-card {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
    }
    
    .leading-global::before {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .left-content .main-title {
        font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-size: 1.8rem;
        text-transform: uppercase;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .left-content {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .center-content {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .construction-image {
        width: 100%;
        max-width: 100%;
        height: 250px;
    }
    
    .overlay-stat-card {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
    }
    
    .overlay-stats-cards {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        left: 0 !important;
        margin: 20px 0 !important;
        padding: 0 15px !important;
        width: 100vw !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        flex-direction: column !important;
        align-items: stretch !important;
        transform: translateX(-15px) !important;
    }
    
    .leading-global::before {
        width: 100px;
        height: 100px;
    }
    
    .leading-global {
        padding: 60px 0;
    }
}

/* Vision Section */
.vision-section {
    padding: 100px 0;
    background: #333;
    color: white;
}

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

.vision-text h3 {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.vision-icon {
    font-size: 4rem;
    color: #ff6b35;
}

.vision-description p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #ccc;
}

.vision-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vision-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-title {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ff6b35;
    text-transform: uppercase;
}

.stat-desc {
    color: #ccc;
}

/* Featured Projects */
.featured-projects {
    position: relative;
    background-color: #1a1a1a;
    padding: 120px 0;
    min-height: 500px;
    z-index: 1;
}

.featured-projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/triangulo.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    opacity: 0.5;
    z-index: 1;
}

.featured-projects-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: center;
    height: 100%;
}

/* Primera columna: Línea y texto */
.grid-column-1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.work-recent {
    display: flex;
    align-items: center;
    gap: 15px;
}

.orange-line {
    width: 40px;
    height: 3px;
    background-color: #ff6b35;
}

.recent-text {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #ff6b35;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}

/* Segunda columna: Título principal */
.grid-column-2 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.main-title {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: white;
    font-size: 5rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    text-align: left;
    margin: 0;
}

/* Tercera columna: Cuadro con imagen y círculo */
.grid-column-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.recommendation-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 300px;
}

.recommendation-image {
    width: auto;
    height: 130px;
    object-fit: cover;
    border-radius: 70px;
    position: relative;
    z-index: 15;
    margin-bottom: -20px;
}

.talk-circle {
    width: 120px;
    height: 120px;
    background-color: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 10;
    margin-bottom: -120px;
    align-self: flex-end;
    margin-right: -90px;
}

.talk-circle:hover {
    transform: scale(1.1);
}

.talk-circle svg {
    width: 24px;
    height: 24px;
}

.text-box {
    background: white;
    border-radius: 90px;
    padding: 20px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 5;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}

.question-text {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.action-text {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .main-title {
        font-size: 3rem;
        text-align: left;
    }
    
    .recommendation-container {
        max-width: 250px;
    }
    
    .text-box {
        height: 100px;
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    .featured-projects {
        padding: 80px 0;
    }
    
    .grid-container {
        text-align: left !important;
    }
    
    .main-title {
        font-size: 2.5rem;
        text-align: left !important;
    }
    
    .recommendation-container {
        max-width: 200px;
    }
    
    .text-box {
        height: 90px;
        padding: 10px 15px;
    }
    
    .recommendation-image {
        height: 100px;
    }
    
    .talk-circle {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .question-text {
        font-size: 16px;
    }
}

/* What We Build */
.what-we-build {
    padding: 100px 0;
    background: #f8f9fa;
}

/* Grid superior 2x1 */
.build-header-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.build-sector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.orange-line {
    width: 30px;
    height: 2px;
    background: #ff6b35;
}

.sector-text {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ff6b35;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.build-title h2 {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 4rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
}

/* Grid inferior 3x1 */
.build-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-items: center;
}

.build-service-card {
    background: white;
    border: 1px solid #000;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    width: 378px;
    height: 532px;
    display: flex;
    flex-direction: column;
}

.build-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-number {
    background: white;
    color: #333;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 20px;
    border-bottom: 1px solid #000;
    text-align: left;
}

.service-content {
    padding: 40px;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

/* Build Service Image - Specific styles for What We Build section */
.build-service-image {
    position: absolute;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 2;
}

.build-service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-content h3 {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 120px 0 20px 0;
    color: #333;
    text-transform: uppercase;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin: 20px 0 30px 0;
    font-size: 14px;
    flex: 1;
}

.service-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    gap: 15px;
    margin-top: auto;
    text-decoration: none;
}

.service-button:hover {
    border-color: #ff6b35;
}

.service-button:hover span {
    color: #ff6b35;
}

.service-button span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
}

.arrow-circle {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.arrow-icon {
    color: white;
    transition: all 0.3s ease;
    transform: rotate(-45deg);
}

.service-button:hover .arrow-circle {
    background: #ff6b35;
}

.service-button:hover .arrow-icon {
    transform: rotate(0deg);
}

/* Responsive */
@media (max-width: 1024px) {
    .build-header-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .build-title h2 {
        font-size: 3rem;
    }
    
    .build-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .build-service-card {
        width: 100%;
        max-width: 378px;
        height: auto;
        min-height: 532px;
    }
}

@media (max-width: 768px) {
    .build-title h2 {
        font-size: 2.5rem;
    }
    
    .build-sector {
        justify-content: center;
    }
    
    .build-service-card {
        width: 100%;
        max-width: 350px;
        min-height: 480px;
    }
    
    .service-content {
        padding: 30px;
    }
}

/* News & Events */
.news-events {
    padding: 100px 0;
    background: white;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.news-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-image {
    height: 250px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 30px;
}

.news-date {
    color: #ff6b35;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-content h4 {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 15px 0;
    color: #333;
    text-transform: uppercase;
}

.news-content p {
    color: #666;
    line-height: 1.6;
}

/* Contact Info Section */
.contact-info-section {
    background: #222;
    color: white;
    padding: 60px 0;
}

.contact-info-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-text h4 {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ccc;
    text-transform: uppercase;
}

.contact-text p {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.4;
}

.contact-divider {
    width: 100%;
    height: 1px;
    background: #666;
    margin-top: 20px;
}

/* Responsive for Contact Info Section */
@media (max-width: 768px) {
    .footer .container {
        max-width: 100vw !important;
        width: 100vw !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .contact-info-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: left !important;
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 20px !important;
        box-sizing: border-box !important;
    }
    
    .contact-info-item {
        justify-content: flex-start !important;
        width: 100% !important;
        max-width: none !important;
    }
    
    .contact-info-section {
        padding: 40px 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
    }
}

@media (max-width: 480px) {
    .footer .container {
        max-width: 100vw !important;
        width: 100vw !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .contact-info-content {
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 15px !important;
        box-sizing: border-box !important;
    }
    
    .contact-info-item {
        flex-direction: column !important;
        text-align: left !important;
        align-items: flex-start !important;
        gap: 15px !important;
        width: 100% !important;
        max-width: none !important;
    }
    
    .contact-icon {
        width: 50px !important;
        height: 50px !important;
    }
    
    .contact-text h4 {
        font-size: 16px;
        text-align: left !important;
    }
    
    .contact-text p {
        text-align: left !important;
    }
    
    .contact-text p {
        font-size: 14px;
    }
}

/* Footer */
.footer {
    background: #222;
    color: white;
    padding: 80px 0 30px;
}

.footer .contact-info-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer .contact-divider {
    width: 100%;
    height: 1px;
    background: #666;
    margin-bottom: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ff6b35;
    text-transform: uppercase;
}

.footer-section h5 {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: #ff6b35;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #ccc;
}

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

.footer-bottom a:hover {
    color: #ff6b35;
}

.contact-info a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ff6b35;
}

/* Estilos para enlaces en contact-text (Necesito Apoyo) */
.contact-text a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #ff6b35;
}

/* Estilos para enlaces en el modal de contacto */
.contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ff6b35;
}

/* Estilos para enlaces del footer en proyectos.html */
.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b35;
}

/* Estilos para el grid de proyectos en el footer */
.projects-grid {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-auto-flow: row;
    gap: 15px;
    margin-top: 10px;
}

.project-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.project-item:hover {
    background-color: rgba(255, 107, 53, 0.1);
}

.project-micro-image {
    flex: 0 0 33.33%;
    width: 40px;
    height: 30px;
    border-radius: 4px;
    overflow: hidden;
}

.project-micro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.project-description {
    flex: 0 0 66.67%;
    padding-left: 5px;
}

.project-description p {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
}

/* Estilos específicos para el footer */
.footer-project-image {
    flex: 0 0 33.33%;
    width: 40px;
    height: 50px;
    border-radius: 4px;
    overflow: hidden;
}

.footer-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.footer-project-description {
    flex: 0 0 66.67%;
    padding-left: 5px;
}

.footer-project-description p {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
}

/* Responsive para el grid de proyectos */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-rows: repeat(2, 1fr);
        gap: 10px;
    }
    
    .project-micro-image {
        width: 35px;
        height: 25px;
    }
    
    .project-description p {
        font-size: 10px;
    }
    
    /* Responsive para footer */
    .footer-project-image {
        width: 35px;
        height: 25px;
    }
    
    .footer-project-description p {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .projects-grid {
        grid-template-rows: 1fr;
        gap: 8px;
    }
    
    .project-item {
        padding: 6px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    
    
    .mobile-dots-panel {
        display: block !important;
    }
    
    .header-buttons {
        justify-content: center !important;
        width: 100% !important;
    }
    
    .menu-toggle {
        display: flex !important;
    }
    
    .hero-title {
        font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-size: 2.5rem;
        text-transform: uppercase;
    }
    
    .since-text {
        font-size: 80px;
    }
    
    .hero-bottom {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    
    .section-content,
    .vision-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .text-content h3,
    .vision-text h3,
    .section-header h3 {
        font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-size: 2rem;
        text-transform: uppercase;
    }
    
    .main-title {
        font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-size: 3rem;
        text-transform: uppercase;
    }
    
    .section-subtitle {
        font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-size: 16px;
        text-align: center;
        text-transform: uppercase;
    }
    
    .stats-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .stat-item {
        flex: 1;
        margin: 0 10px;
    }
    
    .projects-grid,
    .services-grid,
    .news-grid {
        grid-template-rows: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-size: 2rem;
        text-transform: uppercase;
    }
    
    .since-text {
        font-size: 60px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .stats-content {
        flex-direction: column;
    }
    
    .stat-item {
        margin: 0;
    }
}

/* Contact Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    height: 100vh;
    border-radius: 0;
    position: relative;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateX(0);
}

.modal-header {
    padding: 30px 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 30px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

.modal-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 0 30px;
}

.modal-body {
    padding: 30px;
}

.modal-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 14px;
}

.modal-image {
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

.contact-item p {
    margin: 0;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.contact-item.phone p {
    color: #ff6b35;
    font-weight: 600;
    font-size: 16px;
}

.contact-item.email a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item.email a:hover {
    color: #ff6b35;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

.modal-footer {
    padding: 20px 30px 30px;
    border-top: 1px solid #e0e0e0;
}

.projects-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.projects-link:hover {
    color: #ff6b35;
}

.projects-link i {
    font-size: 16px;
    transform: rotate(45deg);
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .modal-divider {
        margin: 0 20px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-image img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .modal-divider {
        margin: 0 15px;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Interactive Services Section */
.interactive-services {
    margin-top: 0;
    margin-bottom: 0;
    padding: 120px 0;
    background: #ffffff;
}

.services-header {
    text-align: left;
    margin-bottom: 90px;
    padding: 0 20px;
}

.services-line-text {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.orange-line-30 {
    width: 30px;
    height: 3px;
    background: #ff6b35;
}

.services-subtitle {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ff6b35;
    letter-spacing: 1px;
}

.services-main-title {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
}

.services-container {
    display: flex;
    width: 100%;
    height: 700px;
    margin: 0;
    padding: 0;
    gap: 0;
}

.service-card {
    position: relative;
    flex: 1;
    height: 700px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: grayscale(100%);
    margin: 0;
    padding: 0;
    border: none;
}

.service-card:hover {
    flex: 2.5;
    filter: grayscale(0%);
    z-index: 10;
}

.service-card:not(:hover) {
    flex: 0.5;
}

/* Estilos para la sección de servicios interactivos - comentados para evitar conflictos */

 .service-image {
    position: relative;
    width: 100%;
    height: 700px;
    margin: 0;
    padding: 0;
}

.service-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin: 0;
    padding: 0;
    border: none;
    display: block;
}

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


.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.8s ease;
}

.service-card:hover .service-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.service-title {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    opacity: 0.9;
    transition: all 0.8s ease;
    margin-bottom: 0;
}

.service-card:hover .service-title {
    font-size: 28px;
    opacity: 1;
    transform: translateY(-20px);
}

/* Estilos de botón para servicios interactivos - comentados para evitar conflictos */
/*
.service-button {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
}

.service-card:hover .service-button {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(-50%) scale(1.1);
}

.service-button svg {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-button svg {
    transform: rotate(45deg);
}
*/

/* Service Icon Circle Styles */
.service-icon-circle {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
    backdrop-filter: blur(5px);
    text-decoration: none;
    cursor: pointer;
}

.service-icon-circle svg {
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon-circle svg,
.service-icon-circle:hover svg {
    transform: rotate(0deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-container {
        height: 700px;
    }
    
    .service-card {
        height: 700px;
    }
    
    .service-image {
        height: 700px;
    }
    
    .service-image img {
        height: 700px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-card:hover .service-title {
        font-size: 24px;
    }
    
    .service-icon-circle {
        width: 36px;
        height: 36px;
        bottom: 27px;
    }
    
    .service-icon-circle svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 768px) {
    .interactive-services {
        margin: 80px 0;
    }
    
    .services-main-title {
        font-size: 3rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .services-container {
        flex-direction: column;
        height: auto;
        gap: 0;
        margin: 0;
        padding: 0;
    }
    
    .service-card {
        flex: none;
        height: 700px;
        filter: grayscale(0%);
        margin: 0;
        padding: 0;
    }
    
    .service-card:hover {
        flex: none;
    }
    
    .service-card:not(:hover) {
        flex: none;
    }
    
    .service-image {
        height: 700px;
    }
    
    .service-image img {
        height: 700px;
    } 
    
    .service-title {
        font-size: 22px;
    }
    
    .service-card:hover .service-title {
        font-size: 24px;
        transform: translateY(-15px);
    }
    
    /* .service-button {
        width: 45px;
        height: 45px;
    } */
    
    .service-icon-circle {
        width: 34px;
        height: 34px;
        bottom: 25px;
    }
    
    .service-icon-circle svg {
        width: 13px;
        height: 13px;
    }
}

@media (max-width: 480px) {
    .interactive-services {
        margin: 60px 0;
    }
    
    .services-main-title {
        font-size: 2.2rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .service-card {
        height: 700px;
        margin: 0;
        padding: 0;
    }
    
     .service-image {
        height: 700px;
    }
    
    .service-image img {
        height: 700px;
    } 
    
    .service-title {
        font-size: 18px;
        margin-bottom: 0;
    }
    
    .service-card:hover .service-title {
        font-size: 20px;
        transform: translateY(-10px);
    }
    
    .service-button {
        width: 40px;
        height: 40px;
    }
    
    .service-button svg {
        width: 16px;
        height: 16px;
    }
    
    .service-icon-circle {
        width: 32px;
        height: 32px;
        bottom: 24px;
    }
    
    .service-icon-circle svg {
        width: 12px;
        height: 12px;
    }
}

/* Projects Carousel */
.projects-carousel {
    margin-top: 80px;
    position: relative;
}

.carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

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

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

.carousel-slide {
    flex: 0 0 600px;
    position: relative;
    background: #2a2a2a;
    border-radius: 1px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.carousel-slide:hover {
    transform: translateY(-10px);
}

/* Project Carousel Slides - Separate from Hero Carousel */
.project-carousel-slide {
    flex: 0 0 600px;
    position: relative;
    background: #2a2a2a;
    border-radius: 1px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project-carousel-slide:hover {
    transform: translateY(-10px);
}

.project-image {
    width: 600px;
    height: 450px;
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel-slide:hover .project-image img {
    transform: scale(1.05);
}

.project-carousel-slide:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 150px;
    background: linear-gradient(135deg, rgba(255,107,0,0.9) 0%, rgba(255,107,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: all 0.6s ease;
}

.carousel-slide:hover .project-overlay {
    opacity: 1;
}

.project-carousel-slide:hover .project-overlay {
    opacity: 1;
}

/* Estilos para el slide "Ver todos los proyectos" */
.view-all-card {
    background: #000 !important;
    position: relative;
    overflow: hidden;
}

.view-all-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
}

.view-all-btn {
    background: #ff6b35;
    border: 2px solid #ff6b35;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    z-index: 2;
    border-radius: 60px;
    text-decoration: none;
    display: inline-block;
}

.view-all-btn:hover {
    color: #fff;
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.8), 0 0 60px rgba(255, 107, 53, 0.6);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.3), rgba(255, 107, 53, 0.6), rgba(255, 107, 53, 0.3));
    border-radius: 60px;
    transition: all 0.4s ease;
    z-index: -1;
    opacity: 0;
}

.view-all-btn:hover .btn-glow {
    opacity: 1;
    animation: glow-pulse 2s ease-in-out infinite;
    transform: scale(1.1);
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1.1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.btn-text {
    position: relative;
    z-index: 3;
}

/* Asegurar que el cuadro tenga las mismas dimensiones */
.view-all-card .project-image {
    height: 400px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Mostrar solo el nombre inicialmente */
.project-name-only {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    transition: opacity 0.5s ease;
}

.carousel-slide:hover .project-name-only {
    opacity: 0;
}

.project-carousel-slide:hover .project-name-only {
    opacity: 0;
}

.project-info {
    text-align: left;
    color: white;
    padding: 20px;
    width: 100%;
    transition: all 0.6s ease;
}

.project-info h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.carousel-slide:hover .project-info h4 {
    opacity: 1;
    transform: translateY(0);
}

.project-carousel-slide:hover .project-info h4 {
    opacity: 1;
    transform: translateY(0);
}

.project-description {
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
    max-height: 0;
    overflow: hidden;
}

.carousel-slide:hover .project-description {
    opacity: 1;
    transform: translateY(0);
    max-height: 60px;
}

.project-carousel-slide:hover .project-description {
    opacity: 1;
    transform: translateY(0);
    max-height: 60px;
}

.project-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.8s ease;
    font-weight: 500;
    font-size: 0.85rem;
    opacity: 0;
    transform: translateY(30px);
}

.carousel-slide:hover .project-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.project-carousel-slide:hover .project-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.project-btn:hover {
    background: white;
    color: #ff6b00;
}

.project-arrow-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.project-arrow-btn svg {
    transition: transform 0.3s ease;
}

.carousel-slide:hover .project-arrow-btn {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.carousel-slide:hover .project-arrow-btn svg {
    transform: rotate(-45deg);
}

.project-carousel-slide:hover .project-arrow-btn {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.project-carousel-slide:hover .project-arrow-btn svg {
    transform: rotate(-45deg);
}

.project-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #ff6b00;
    transition: width 0.3s ease;
}

.carousel-slide:hover .project-line {
    width: 100%;
}

.project-carousel-slide:hover .project-line {
    width: 100%;
}

/* Carousel Navigation */
.carousel-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.carousel-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Project Modals */
.project-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.project-modal-overlay.active {
    display: flex;
}

.project-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90%;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.project-modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-modal-header h2 {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-modal-close {
    background: none;
    border: none;
    font-size: 30px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.project-modal-close:hover {
    background: #f5f5f5;
    color: #ff6b35;
}

.project-modal-body {
    padding: 30px;
}

.project-modal-body img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
}

.project-modal-info h3 {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-modal-info p {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.project-modal-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-modal-info li {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #333;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.project-modal-info li:last-child {
    border-bottom: none;
}

/* Responsive Design for Carousel */
@media (max-width: 1024px) {
    .carousel-slide {
        flex: 0 0 calc(50% - 15px);
    }
    
    .project-image {
        height: 250px;
    }
    
    .project-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .projects-carousel {
        margin-top: 60px;
    }
    
    .carousel-container {
        padding: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .carousel-wrapper {
        width: 100%;
    }
    
    .carousel-track {
        gap: 0;
        overflow: hidden;
        width: 100%;
    }
    
    .carousel-slide,
    .project-carousel-slide {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
    
    .project-card {
        width: 100%;
        max-width: 100%;
    }
    
    .project-image {
        width: 100%;
        height: 250px;
    }
    
    .project-info {
        padding: 20px;
    }
    
    .project-title {
        font-size: 18px;
    }
    
    .project-description {
        font-size: 14px;
    }
    
    .carousel-navigation {
        margin-top: 30px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
    }
    
    .project-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .project-modal-header {
        padding: 20px;
    }
    
    .project-modal-header h2 {
        font-size: 22px;
    }
    
    .project-modal-body {
        padding: 20px;
    }
    
    .project-modal-body img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        padding: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .carousel-wrapper {
        width: 100%;
    }
    
    .carousel-track {
        gap: 0;
        width: 100%;
    }
    
    .carousel-slide,
    .project-carousel-slide {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
    
    .project-card {
        width: 100%;
        max-width: 100%;
    }
    
    .project-image {
        width: 100%;
        height: 200px;
    }
    
    .project-info {
        padding: 15px;
    }
    
    .project-title {
        font-size: 16px;
    }
    
    .project-description {
        font-size: 13px;
    }
    
    .project-button {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .project-modal-header h2 {
        font-size: 18px;
    }
    
    .project-modal-info h3 {
        font-size: 20px;
    }
    
    .project-modal-info p,
    .project-modal-info li {
        font-size: 14px;
    }
}

/* Nuestros Socios Section */
.our-partners {
    padding: 100px 0;
    background: #f8f9fa;
}

.partners-header {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 20px;
}

.orange-line-short {
    width: 30px;
    height: 2px;
    background: #ff6b35;
    flex-shrink: 0;
}

.partners-text {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ff6b35;
    text-transform: capitalize;
    white-space: nowrap;
    flex-shrink: 0;
}

.orange-line-long {
    flex: 1;
    height: 1px;
    background: #ddd;
}

.partners-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.partners-track {
    display: flex;
    animation: scroll-partners 20s linear infinite;
    width: calc((150px + 20px) * 12);
}

.partner-item {
    flex: 0 0 150px;
    width: 150px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    background: transparent;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
}

.partner-item img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive para Partners */
@media (max-width: 1024px) {
    .our-partners {
        padding: 80px 0;
    }
    
    .partners-header {
        margin-bottom: 60px;
    }
    
    .partner-item {
        flex: 0 0 130px;
        width: 130px;
        margin-right: 15px;
        height: 100px;
        background: transparent;
    }
    
    .partner-item img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .our-partners {
        padding: 60px 0;
    }
    
    .partners-header {
        margin-bottom: 40px;
        gap: 15px;
    }
    
    .orange-line-short {
        width: 25px;
    }
    
    .partners-text {
        font-size: 14px;
    }
    
    .partner-item {
        flex: 0 0 110px;
        width: 110px;
        margin-right: 15px;
        height: 80px;
        background: transparent;
    }
    
    .partner-item img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .our-partners {
        padding: 40px 0;
    }
    
    .partners-header {
        margin-bottom: 30px;
        gap: 10px;
    }
    
    .orange-line-short {
        width: 20px;
    }
    
    .partners-text {
        font-size: 12px;
    }
    
    .partner-item {
        flex: 0 0 90px;
        width: 90px;
        margin-right: 10px;
        height: 70px;
        background: transparent;
    }
    
    .partner-item img {
        width: 80px;
        height: 80px;
    }
    
    .partners-track {
        animation-duration: 15s;
    }
}

/* Services Grid Styles */
.services-container-pagina {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 40px;
    padding: 60px 0;
    justify-items: center;
}

/* Específico para el patrón 3x1, 1x1, 1x1 - Primera fila: 3 columnas */

.services-grid .service-grid-card:nth-child(4) {
    /* Segunda fila: 1 columna centrada */
    grid-column: 1 / -1;
    justify-self: center;
    width: 1400px;
    max-width: 1400px;
    height: 520px;
}

.services-grid .service-grid-card:nth-child(4) .service-grid-image {
    height: 520px;
}

.services-grid .service-grid-card:nth-child(5) {
    /* Tercera fila: 1 columna centrada */
    grid-column: 1 / -1;
    justify-self: center;
    width: 1400px;
    max-width: 1400px;
    height: 520px;
}

.services-grid .service-grid-card:nth-child(5) .service-grid-image {
    height: 520px;
}

.service-grid-card {
    position: relative;
    width: 100%;
    max-width: 460px;
    height: 686px;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-grid-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-grid-image {
    position: relative;
    width: 100%;
    height: 686px;
    overflow: hidden;
}

.service-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-grid-card:hover .service-grid-image img {
    transform: scale(1.05);
}

.service-orange-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 90px;
    height: 90px;
    background: #ff6b35;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-grid-card:hover .service-orange-icon {
    transform: scale(1.1);
}

.service-grid-static-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 3;
    transition: opacity 0.4s ease;
}

.service-grid-card:hover .service-grid-static-title {
    opacity: 0;
}

.service-grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px 30px 30px;
    transform: translateY(100%);
    transition: all 0.4s ease;
    opacity: 0;
}

.service-grid-card:hover .service-grid-overlay {
    transform: translateY(0);
    opacity: 1;
}

.service-grid-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-grid-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    line-height: 1.2;
}

.service-grid-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    flex-grow: 1;
}

.service-grid-line {
    width: 50px;
    height: 2px;
    background: white;
    margin-bottom: 15px;
}

.service-grid-footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-grid-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-grid-cta {
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for Services Grid */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto auto auto;
        gap: 40px;
        padding: 50px 0;
        justify-items: center;
    }
    
    /* Adaptar el patrón para tablets: 2x1, 1x1, 1x1, 1x1 */
    .services-grid .service-grid-card:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
        width: 1400px;
        max-width: 100%;
        height: 520px;
    }
    
    .services-grid .service-grid-card:nth-child(4) {
        grid-column: 1 / -1;
        justify-self: center;
        width: 1400px;
        max-width: 100%;
        height: 520px;
    }
    
    .services-grid .service-grid-card:nth-child(5) {
        grid-column: 1 / -1;
        justify-self: center;
        width: 1400px;
        max-width: 100%;
        height: 520px;
    }
    
    .service-grid-card {
        width: 100%;
        max-width: 320px;
        height: 580px;
    }
    
    .service-grid-image {
        width: 100%;
        height: 580px;
    }
    
    .service-grid-static-title {
        font-size: 20px;
    }
    
    .service-grid-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0;
        justify-items: center;
    }
    
    /* En móviles, todos los elementos en una columna */
    .services-grid .service-grid-card:nth-child(3),
    .services-grid .service-grid-card:nth-child(4),
    .services-grid .service-grid-card:nth-child(5) {
        grid-column: 1;
        justify-self: center;
        width: 100%;
        max-width: 280px;
        height: 500px;
    }
    
    .services-grid .service-grid-card:nth-child(4) .service-grid-image,
    .services-grid .service-grid-card:nth-child(5) .service-grid-image {
        height: 500px;
    }
    
    .service-grid-card {
        width: 100%;
        max-width: 280px;
        height: 500px;
    }
    
    .service-grid-image {
        width: 100%;
        height: 500px;
    }
    
    .service-grid-static-title {
        font-size: 18px;
    }
    
    .service-orange-icon {
        width: 40px;
        height: 40px;
        top: 15px;
        left: 15px;
    }
    
    .service-orange-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .service-grid-overlay {
        padding: 30px 20px 20px;
    }
    
    .service-grid-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .service-grid-description {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .service-grid-line {
        width: 40px;
        margin-bottom: 12px;
    }
    
    .service-grid-cta {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        padding: 30px 0;
        gap: 40px;
        justify-items: center;
    }
    
    .service-grid-card {
        width: 100%;
        max-width: 250px;
        height: 450px;
    }
    
    .service-grid-image {
        width: 100%;
        height: 450px;
    }
    
    .service-grid-static-title {
        font-size: 16px;
    }
    
    .service-orange-icon {
        width: 35px;
        height: 35px;
        top: 12px;
        left: 12px;
    }
    
    .service-orange-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .service-grid-overlay {
        padding: 25px 15px 15px;
    }
    
    .service-grid-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .service-grid-description {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .service-grid-line {
        width: 35px;
        margin-bottom: 10px;
    }
    
    .service-grid-cta {
        font-size: 11px;
    }
}

/* Como lo hacemos Section */
.como-hacemos {
    background: #000000;
    padding: 120px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.como-hacemos-header {
    text-align: left;
    margin-bottom: 80px;
    padding: 0 20px;
}

.como-hacemos-line-text {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.como-hacemos-subtitle {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ff6b35;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.como-hacemos-main-title {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
}

.como-hacemos-content {
    display: grid;
    grid-template-columns: 680px 680px;
    gap: 20px;
    align-items: start;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: center;
}

/* Left Column - Dynamic Images */
.como-hacemos-image-column {
    position: relative;
    width: 680px;
    height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-image-container {
    position: relative;
    width: 680px;
    height: 680px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 680px;
    height: auto;
    max-height: 680px;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.step-image.active {
    opacity: 1;
}

/* Right Column - Steps Timeline */
.como-hacemos-steps-column {
    position: relative;
    width: 680px;
}

.steps-timeline {
    position: relative;
    padding-left: 60px;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: #333;
    z-index: 1;
}


.step-item {
    position: relative;
    margin-bottom: 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    cursor: pointer;
    transform: none;
}

.step-item:hover {
    opacity: 1;
}

.step-item.active {
    opacity: 1;
    transform: none;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-circle {
    position: absolute;
    left: -60px;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #333;
    border: 3px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.8s ease;
    transform: scale(0.9);
}

.step-item.active .step-circle {
    background: #ff6b35;
    border-color: #ff6b35;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.step-number {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.step-content {
    padding-left: 20px;
}

.step-subtitle {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    transition: all 0.8s ease;
}

.step-item.active .step-subtitle {
    color: #ff6b35;
    font-weight: 600;
    transform: translateX(5px);
}

.step-title {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #888;
    margin-bottom: 20px;
    line-height: 1.2;
    transition: all 0.8s ease;
}

.step-item.active .step-title {
    color: white;
    font-weight: 800;
    transform: translateX(5px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.step-description {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin: 0;
    transition: all 0.8s ease;
}

.step-item.active .step-description {
    color: #ddd;
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1440px) {
    .como-hacemos-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .como-hacemos-image-column,
    .como-hacemos-steps-column {
        width: 100%;
        max-width: 680px;
    }
    
    .step-image-container {
        width: 100%;
        max-width: 680px;
    }
    
    .step-image {
        width: 100%;
        max-width: 680px;
    }
}

@media (max-width: 1024px) {
    .como-hacemos-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .como-hacemos-main-title {
        font-size: 3rem;
    }
    
    .como-hacemos-image-column {
        width: 100%;
        max-width: 680px;
        margin: 0 auto;
        order: 2;
    }
    
    .step-image-container {
        width: 100%;
        max-width: 680px;
        margin: 0 auto;
    }
    
    .step-image {
        width: 100%;
        max-width: 680px;
    }
    
    .como-hacemos-steps-column {
        width: 100%;
        max-width: 680px;
        margin: 0 auto;
        order: 1;
    }
    
    .steps-timeline {
        padding-left: 50px;
    }
    
    .step-circle {
        left: -50px;
        width: 50px;
        height: 50px;
    }
    
    .step-number {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .como-hacemos {
        padding: 80px 0;
    }
    
    .como-hacemos-main-title {
        font-size: 2.5rem;
    }
    
    .como-hacemos-image-column {
        height: 300px;
    }
    
    .step-item {
        margin-bottom: 60px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .step-description {
        font-size: 14px;
    }
    
    .steps-timeline {
        padding-left: 40px;
    }
    
    .step-circle {
        left: -40px;
        width: 40px;
        height: 40px;
    }
    
    .step-number {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .como-hacemos {
        padding: 60px 0;
    }
    
    .como-hacemos-main-title {
        font-size: 2rem;
    }
    
    .como-hacemos-image-column {
        height: 250px;
    }
    
    .step-item {
        margin-bottom: 40px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-description {
        font-size: 13px;
    }
    
    .steps-timeline {
        padding-left: 35px;
    }
    
    .step-circle {
        left: -35px;
        width: 35px;
        height: 35px;
    }
    
    .step-number {
        font-size: 12px;
    }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    /* Hide dots grid menu on mobile */
    .menu-toggle {
        display: none !important;
    }
    
    /* Show hamburger menu on mobile */
    .hamburger-menu {
        display: flex !important;
    }
    
    /* Hide navigation menu by default on mobile */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1500;
        gap: 40px;
    }
    
    /* Show navigation menu when active */
    .nav-menu.active {
        display: flex !important;
    }
    
    /* Mobile menu links styling */
    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.5s ease forwards;
    }
    
    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.5s; }
    
    .nav-menu a {
        font-size: 24px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        padding: 15px 30px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 107, 53, 0.2);
        transform: scale(1.05);
    }
}

/* Hamburger menu animation */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hamburger menu lines animation */
.hamburger-line {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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