:root {
    --bg-color: #f6f6f6;
    --text-color: #000000;
    --text-light: #555;
    --border-color: #e0e0e0;
    --dark-bg: #000000;
    --white: #fff;
    --primary-color: #F7990E;
    --font-main: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-dark {
    background-color: var(--dark-bg);
    color: var(--white);
    border: 1px solid var(--dark-bg);
}

.btn-dark:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(246, 246, 246, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.nav-divider {
    width: 1px;
    height: 32px;
    background-color: var(--border-color);
}

.nav-menu {
    display: none;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 32px; /* Adjust this value as needed based on the aspect ratio of logo.png */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links .arrow {
    font-size: 10px;
    color: var(--text-light);
}

.contacto-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.contacto-link:hover {
    color: var(--primary-color) !important;
}

.btn-presupuesto {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-presupuesto .btn-icon {
    display: none;
    width: 20px;
    height: 20px;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

.menu-toggle:hover {
    opacity: 0.7;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    align-items: center;
}

.hamburger span {
    display: block;
    height: 4px;
    border-radius: 4px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* Custom Hamburger Design from reference */
.hamburger span:nth-child(1) { width: 100%; }
.hamburger span:nth-child(2) { width: 60%; background-color: var(--primary-color); }
.hamburger span:nth-child(3) { width: 100%; }

/* Hamburger Active State (X) */
.menu-toggle.active .hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active .hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-budget-btn {
    display: none;
}

@media (max-width: 1024px) {
    .desktop-only {
        display: none !important;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: calc(100dvh - 73px);
        overflow-y: auto;
        background: rgba(246, 246, 246, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        display: none;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-menu.active {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-links-mobile {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 32px !important;
        width: 100% !important;
        padding: 40px 0 !important; /* Padding for overflow state */
        margin: auto 0 !important; /* Perfect vertical centering fallback */
        list-style: none !important;
    }

    .nav-links-mobile li {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-links-mobile a {
        font-size: 24px !important;
        font-weight: 600 !important;
        color: #000000 !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transition: color 0.3s ease !important;
    }

    .nav-links-mobile a:hover {
        color: var(--primary-color) !important;
    }

    .menu-toggle {
        display: flex !important;
    }

    .btn-presupuesto {
        display: none !important;
    }

    li.mobile-budget-btn {
        display: flex !important;
        justify-content: center !important;
        margin-top: 20px !important;
        width: 100% !important;
    }

    .mobile-budget-btn .btn {
        background-color: #000000 !important;
        color: #ffffff !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        padding: 16px 32px !important;
        white-space: nowrap !important;
        display: inline-flex !important;
        width: auto !important;
    }
}

.hero-wrapper {
    background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(0,0,0, 0.7)), url('images/bakground.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 73px;
    display: flex;
    flex-direction: column;
}

.hero {
    text-align: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    min-height: calc(100dvh - 73px);
}

.hero-content {
    margin-top: auto;
    margin-bottom: auto;
}

.hero-content h1 {
    font-size: 80px;
    line-height: 1;
    letter-spacing: -3px;
    font-weight: 800; /* Extrabold */
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    background: white;
    padding: 8px 24px 8px 8px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: 500;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
}
.avatars img:first-child { margin-left: 0; }

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 480px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.4;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: auto;
    overflow: visible;
    margin-top: 0;
    padding-bottom: 40px;
    background: transparent;
}

.sand-dune {
    display: none;
}

.hero-cards {
    position: relative;
    display: flex;
    gap: 20px;
    z-index: 2;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: var(--radius-md);
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 30px;
}

.card-header .dot {
    width: 6px;
    height: 6px;
    background: var(--text-light);
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.card-body-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
}

.card-body-flex h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.5px;
    flex: 1;
}

.card-body-flex img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.avatars-card {
    display: flex;
    align-items: center;
}
.avatars-card img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -12px;
    object-fit: cover;
}
.avatars-card img:first-child { margin-left: 0; }
.avatars-card .more-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #666;
    border: 2px solid white;
    margin-left: -12px;
    z-index: 10;
}

/* Trusted Logos */
.trusted-logos {
    text-align: center;
    padding: 60px 20px;
    border-bottom: 1px solid var(--border-color);
}

.trusted-logos p {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    font-weight: 600;
}

.logos-slider {
    overflow: hidden;
    padding: 10px 0;
    white-space: nowrap;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Fades para suavizar los bordes */
.logos-slider::before,
.logos-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.logos-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.logos-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.logos-track {
    display: inline-flex;
    animation: scrollLogos 25s linear infinite;
}

.logos-track:hover {
    animation-play-state: paused;
}

.logos-slide {
    display: inline-flex;
    align-items: center;
    gap: 80px;
    padding-right: 80px;
}

.logos-slide img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logos-slide img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

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

/* Statement */
.statement {
    text-align: center;
    padding: 100px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.statement h2 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.statement h2 .highlight {
    color: #999;
    font-style: italic;
    font-family: serif;
    font-weight: 400;
}

.statement p {
    color: var(--text-light);
    font-size: 15px;
    max-width: 350px;
    margin: 0 auto;
}

/* Dark Section */
.dark-section {
    padding: 0 40px;
    margin-bottom: 120px;
}

.dark-grid {
    display: grid;
    grid-template-columns: 35% minmax(0, 1fr);
    gap: 16px;
    background: var(--dark-bg);
    border-radius: var(--radius-lg);
    padding: 30px;
    color: var(--white);
}

.dark-box {
    background: #1a1a1a;
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.title-box {
    grid-column: span 1;
    background: transparent;
    padding: 10px 40px 10px 10px;
}

.title-box .icon-key {
    margin-bottom: 40px;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: rgba(255,255,255,0.7);
}

.title-box h2 {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 500;
    letter-spacing: -1px;
}

.title-box p {
    color: #888;
    font-size: 13px;
    line-height: 1.6;
}

.stats-box {
    background: var(--white);
    color: var(--text-color);
}

.avatars-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: auto;
}

.avatars-large img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
}

.stat-bottom {
    margin-top: 30px;
}

.stat-bottom h3 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-bottom span {
    color: var(--text-light);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.award-box {
    justify-content: space-between;
}

.award-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.award-header .score {
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
}

.award-header .score small {
    font-size: 11px;
    color: #888;
    font-weight: 500;
    margin-top: 8px;
    display: block;
}

.award-header .badge {
    text-align: right;
    font-size: 10px;
    color: #888;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.award-box p {
    color: #888;
    font-size: 13px;
    line-height: 1.5;
}

.image-box {
    padding: 0;
    overflow: hidden;
}

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

/* Team Slider */
.team-slider-wrapper {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    border-radius: var(--radius-md);
    min-width: 0;
}

.team-slider-wrapper::before,
.team-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.team-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--dark-bg), transparent);
}

.team-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--dark-bg), transparent);
}

.team-slider-track {
    display: flex;
    animation: scrollTeam 30s linear infinite;
}

.team-slider-track:hover {
    animation-play-state: paused;
}

.team-slide-group {
    display: flex;
    gap: 16px;
    padding-right: 16px;
}

.team-slide-group .image-box {
    width: 320px; /* Tamaño exacto y uniforme para todas las imágenes */
    flex-shrink: 0;
}

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

/* Services */
.services {
    max-width: 1200px;
    margin: 0 auto 120px;
    padding: 0 40px;
}

.services-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    align-items: flex-start;
}

.sh-left .tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 24px;
    display: block;
    letter-spacing: 1px;
}

.sh-left h2 {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.sh-right {
    max-width: 420px;
}

.sh-right p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.6;
}

.service-tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.service-tags span {
    font-size: 12px;
    color: var(--text-color);
    background: transparent;
    padding: 10px 16px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    font-weight: 500;
}

.accordion {
    border-top: 1px solid var(--border-color);
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.accordion-header {
    padding: 30px 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: rgba(0,0,0,0.02);
}

.accordion-header .num {
    font-size: 14px;
    font-weight: 600;
    width: 80px;
    color: var(--text-light);
}

.accordion-header h3 {
    font-size: 24px;
    font-weight: 500;
    flex: 1;
    letter-spacing: -0.5px;
}

.accordion-header .toggle {
    font-size: 24px;
    font-weight: 300;
    color: var(--text-light);
}

.accordion-content {
    display: none;
    padding: 0 0 40px 80px;
    gap: 40px;
}

.accordion-item.expanded .accordion-content {
    display: flex;
}

.content-left {
    flex: 1;
    color: var(--text-light);
    font-size: 14px;
    max-width: 320px;
    line-height: 1.6;
}

.content-right {
    flex: 2;
    display: flex;
    gap: 16px;
}

.content-right img {
    flex: 1;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

/* Portfolio */
.portfolio {
    padding: 0 40px 60px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.03);
}

.portfolio-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
}

.portfolio-info h4 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.portfolio-info span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 60px 40px 120px;
    background: var(--bg-color);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.contact-text p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    max-width: 380px;
    margin-bottom: 48px;
}

.contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.info-details h4 {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 4px;
    font-weight: 500;
}

.info-details a {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-details a:hover {
    color: var(--primary-color);
}

.custom-social-links {
    display: flex;
    gap: 12px;
    margin-top: 6px;
    align-items: center;
}

.custom-social-links img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.custom-social-links a:hover img {
    transform: scale(1.15);
    opacity: 0.8;
}

.contact-form-wrapper {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

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

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 15px;
    transition: border-color 0.3s ease;
    background: #fafafa;
}

.contact-form textarea {
    height: 110px;
    resize: none;
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    color: var(--text-color);
}

.contact-form select:invalid {
    color: var(--text-light);
}

.form-row {
    display: flex;
    gap: 16px;
}
.form-row .form-group {
    flex: 1;
}

.select-wrapper {
    position: relative;
}
.select-arrow {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

.contact-form .error-msg {
    display: none;
    color: #e74c3c;
    font-size: 12px;
    margin-top: 6px;
}

.contact-form.submitted .form-group.invalid input,
.contact-form.submitted .form-group.invalid textarea {
    border-color: #e74c3c;
}

.contact-form.submitted .form-group.invalid .error-msg {
    display: block;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    font-family: var(--font-main);
    min-height: 52px;
}

.btn-loader {
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner-icon {
    animation: rotate 2s linear infinite;
    width: 20px;
    height: 20px;
}
.spinner-icon .path {
    stroke: white;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}
@keyframes rotate {
    100% { transform: rotate(360deg); }
}
@keyframes dash {
    0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
    50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
    100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}

.form-feedback {
    margin-top: 16px;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.form-success {
    background: #e8f8f5;
    color: #27ae60;
}

.form-error {
    background: #fdedec;
    color: #c0392b;
}

@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
        gap: 60px;
    }
    .contact-text h2 {
        font-size: 42px;
    }
    .contact-text p {
        max-width: 100%;
    }
    .contact-section {
        padding-top: 60px;
        padding-bottom: 100px;
    }
}

@media (max-width: 768px) {
    .contact-container {
        gap: 40px;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .contact-text h2 {
        font-size: 36px;
    }
    .contact-section {
        padding-top: 40px;
        padding-bottom: 80px;
    }
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 80px 40px 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    font-size: 18px;
}

.footer-links-col {
    display: flex;
    gap: 30px;
    font-weight: 400;
}

.footer-contact, .footer-social {
    color: #888;
    font-size: 14px;
    text-align: right;
}

.footer-contact p {
    margin-bottom: 4px;
}

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

.footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
    color: #888;
    font-size: 13px;
}

.fm-links {
    display: flex;
    gap: 30px;
}

.fm-arrow {
    cursor: pointer;
}

.footer-bottom {
    padding-top: 80px;
    text-align: center;
}

.footer-logo {
    font-size: 16vw;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer-logo .star {
    width: 14vw;
    height: 14vw;
    color: #666;
}


/* Tooltip Próximamente */
.nav-links a[href="#"], 
.nav-links-mobile a[href="#"]:not(.contacto-link), 
.footer-links-col a[href="#"] {
    position: relative;
}

.nav-links a[href="#"]::after, 
.nav-links-mobile a[href="#"]:not(.contacto-link)::after, 
.footer-links-col a[href="#"]::after {
    content: 'Próximamente';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 100;
}

.nav-links a[href="#"]:hover::after, 
.nav-links-mobile a[href="#"]:not(.contacto-link):hover::after, 
.footer-links-col a[href="#"]:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .dark-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
    .hero-content {
        margin-top: 80px;
        margin-bottom: 80px;
    }
    .hero-content h1 {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-cards {
        flex-direction: column;
        position: relative;
        bottom: auto;
        margin-top: 20px;
    }
    .hero-visual {
        height: auto;
        background: none;
    }
    .hero-content {
        margin-top: 80px;
        margin-bottom: 80px;
    }
    .hero-content h1 {
        font-size: 44px;
        letter-spacing: -1px;
    }
    .sand-dune {
        display: none;
    }
    .dark-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .services-header {
        flex-direction: column;
        gap: 30px;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .accordion-content {
        flex-direction: column;
        padding-left: 0;
    }
    .content-right {
        flex-direction: column;
    }
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
    .footer-contact, .footer-social {
        text-align: left;
    }
    .sh-left h2 {
        font-size: 32px !important;
        line-height: 1.1;
    }
    .sh-right, .content-left {
        max-width: 100%;
    }
    .service-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }
    .portfolio-info {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    .portfolio-info h4 {
        font-size: 18px;
    }
    .portfolio-info span {
        font-size: 10px;
    }
    .team-slider-wrapper {
        height: 300px;
    }
    .team-slide-group .image-box {
        width: 200px;
    }
    .footer-links-col {
        flex-direction: column;
        gap: 15px;
    }
    .portfolio {
        padding: 0 20px 40px;
    }
    .services {
        padding: 0 20px;
    }
    .dark-section {
        padding: 0 20px;
    }
    .contact-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    .footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    .navbar {
        padding: 20px;
    }
    .info-icon {
        width: 40px;
        height: 40px;
    }
    .info-details h4 {
        font-size: 12px;
    }
    .info-details a {
        font-size: 14px;
        word-break: break-all;
    }
}
