/* ============================================
   DESIGN TOKENS IMPORT
   ============================================ */
@import url('tokens.css');

/* ============================================
   LEGACY VARIABLES (DEPRECATED - Use tokens.css)
   ============================================ */
:root {
    /* DEPRECATED - Use tokens.css instead */
    --tecro-orange: var(--color-primary);     /* Use --color-primary */
    --tecro-black: var(--color-dark);         /* Use --color-dark */
    --tecro-violet: var(--color-violet);      /* Use --color-violet */
    --tecro-gray: var(--color-gray-50);       /* Use --color-gray-50 */
    --tecro-white: var(--color-white);        /* Use --color-white */
    --tecro-white-60: var(--color-gray-100);  /* Use --color-gray-100 */
    --bg-dark: var(--color-dark);             /* Use --color-bg-dark */

    /* Tipografía - DEPRECATED */
    --font-primary: var(--font-family-primary);  /* Use --font-family-primary */
    --font-content: var(--font-family-body);     /* Use --font-family-body */

    /* Tamaños según manual - DEPRECATED */
    --h1-size: var(--font-size-3xl);      /* Use --font-size-3xl (70px) */
    --h2-size: var(--font-size-2xl);      /* Use --font-size-2xl (55px) */
    --h3-size: var(--font-size-lg);       /* Use --font-size-lg (30px) */
    --text-size: 22px;                    /* Use --font-size-md (24px) */
    --text-body: var(--font-size-base);   /* Use --font-size-base (20px) */
    --small-text: 10px;                   /* Use --font-size-xs (14px) */
    --nav-size: 15px;                     /* Use --font-size-sm (16px) */
}

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

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-content), -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--tecro-black);
    background-color: var(--tecro-white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* Clases reutilizables de tipografía */
.text-h1 {
    font-size: var(--h1-size);
    font-weight: 700;
    font-family: var(--font-primary);
    line-height: 1.2;
}

.text-h2 {
    font-size: var(--h2-size);
    font-weight: 700;
    font-family: var(--font-primary);
    line-height: 1.3;
}

.text-h3 {
    font-size: var(--h3-size);
    font-weight: 600;
    font-family: var(--font-primary);
    line-height: 1.4;
}

.text-body {
    font-size: var(--text-size);
    font-family: var(--font-content);
    line-height: 1.6;
}

.text-small {
    font-size: var(--small-text);
    font-family: var(--font-primary);
    line-height: 1.4;
}

/* Clases reutilizables de color */
.bg-dark {
    background-color: var(--bg-dark);
}

.bg-white {
    background-color: var(--tecro-white);
}

.bg-gray {
    background-color: var(--tecro-gray);
}

.text-white {
    color: var(--tecro-white);
}

.text-dark {
    color: var(--tecro-black);
}

.text-orange {
    color: var(--tecro-orange);
}

.text-violet {
    color: var(--tecro-violet);
}

/* Clases reutilizables de espaciado */
.section-padding {
    padding: 80px 0;
}

.section-padding-large {
    padding: 120px 0;
}

.section-padding-small {
    padding: 40px 0;
}

/* Clases reutilizables de layout */
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

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

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

/* Contenedor principal */
.container {
    max-width: 1264px;
    margin: 0 auto;
    padding: 0 88px;
}

/* Header con área de seguridad según manual */
header {
    background: var(--tecro-white);
    height: 100px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
}

/* Contenedor central para los links de navegación */
.nav-center {
    display: flex;
    gap: 40px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

/* Logo respetando proporciones 17x5 del manual */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    z-index: 10;
}

.logo img {
    display: block;
    height: 40px;
    width: auto;
}

/* Navegación - Botón de idioma a la derecha */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    z-index: 10;
}

.nav-center a,
.nav-right a {
    color: var(--tecro-black);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--nav-size);
    font-family: var(--font-content);
    position: relative;
    transition: color 0.3s;
    padding-bottom: 4px;
    vertical-align: middle;
    display: inline-block;
}

.nav-center a:hover,
.nav-right a:hover {
    color: var(--tecro-black);
}

.nav-center a:hover::after,
.nav-right a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--tecro-black);
    transform: scaleX(1);
}

.nav-center a::after,
.nav-right a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--tecro-black);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

/* Estado activo para página actual */
.nav-center a.active,
.nav-right a.active {
    color: var(--tecro-orange);
}

.nav-center a.active::after,
.nav-right a.active::after {
    background-color: var(--tecro-orange);
    transform: scaleX(1);
}

.lang-switch {
    padding: 0;
    border: none;
    background-color: transparent;
    color: var(--tecro-black);
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 14px;
    width: 56px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    /* SVG de Figma con borde naranja */
    background-image: url("data:image/svg+xml,%3Csvg width='56' height='40' viewBox='0 0 56 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 39.5L0.5 0.5L55.5 0.5L55.5 31.793L47.793 39.5L0.5 39.5Z' stroke='%23EB8825' fill='none'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.lang-switch:hover {
    color: var(--tecro-white);
    background-image: url("data:image/svg+xml,%3Csvg width='56' height='40' viewBox='0 0 56 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 39.5L0.5 0.5L55.5 0.5L55.5 31.793L47.793 39.5L0.5 39.5Z' stroke='%23EB8825' fill='%23EB8825'/%3E%3C/svg%3E");
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.dropdown-toggle {
    color: var(--tecro-black);
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
    padding-bottom: 4px;
}

.dropdown-toggle:hover {
    color: var(--tecro-black);
}

.dropdown-toggle:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--tecro-black);
    transform: scaleX(1);
}

.dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--tecro-black);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

/* Estado activo para dropdown */
.dropdown-toggle.active {
    color: var(--tecro-orange);
}

.dropdown-toggle.active::after {
    background-color: var(--tecro-orange);
    transform: scaleX(1);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-dark);
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1000;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    height: 5px;
    background: transparent;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--tecro-white);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    position: relative;
    transition: background-color 0.3s, color 0.3s;
}

.dropdown-menu a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--tecro-white);
}

.dropdown-menu a:hover::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 24px;
    width: calc(100% - 48px);
    height: 1px;
    background-color: var(--tecro-white);
    transform: scaleX(1);
}

.dropdown-menu a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 24px;
    width: calc(100% - 48px);
    height: 1px;
    background-color: var(--tecro-white);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

/* Hero Section */
.hero {
    background-image: url('/assets/pages/home/image.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 697px;
    height: 697px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* Fallback for browsers without WebP support */
@supports not (background-image: -webkit-image-set(url('/assets/pages/home/image.webp') 1x)) {
    .hero {
        background-image: url('/assets/pages/home/image.png');
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 658px;
    position: absolute;
    right: 88px;
    bottom: 100px;
    z-index: 2;
}

.hero h1 {
    font-size: var(--h1-size);
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--tecro-white);
    font-family: var(--font-primary);
    line-height: 115%;
}

.hero p {
    font-size: 30px;
    margin-bottom: 30px;
    color: var(--tecro-white);
    font-family: var(--font-content);
    opacity: 0.9;
    line-height: 36px;
}

/* Hero Contact Page */
.hero-contact {
    background-image: url('/assets/pages/contact/Hero-sales.jpg');
    background-position: center bottom;
    min-height: 70vh;
    height: 70vh;
    align-items: center;
}

.hero-contact::before {
    background-color: rgba(0, 0, 0, 0.7);
}

.hero-content-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    max-width: 1000px;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

.hero-contact h1 {
    font-size: 70px;
    font-weight: 600;
    font-family: var(--font-primary);
    line-height: 120%;
    color: #FFFFFF;
    max-width: 1000px;
    margin: 0;
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-left h2 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 55px;
    line-height: 120%;
    color: var(--tecro-black);
    max-width: 539px;
    margin-bottom: 30px;
}

.contact-left p {
    font-family: var(--font-content);
    font-weight: 400;
    font-size: 22px;
    line-height: 27px;
    color: #000000;
    max-width: 548px;
    margin-bottom: 30px;
}

.contact-left h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
    color: var(--tecro-orange);
    margin-bottom: 30px;
    margin-top: 40px;
}

.contact-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-benefits li {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
    color: var(--tecro-black);
    padding: 18px 0;
    max-width: 539px;
    position: relative;
}

.contact-benefits li:not(:last-child) {
    border-bottom: 1px solid var(--tecro-orange);
}

.text-orange {
    color: var(--tecro-orange);
}

.contact-left {
    position: relative;
}

.contact-image-center {
    margin-top: 60px;
    margin-bottom: -234.5px;
    position: relative;
    z-index: 10;
}

.contact-image-center img {
    width: 339px;
    height: 469px;
    display: block;
    object-fit: contain;
}

.contact-content {
    position: relative;
}

.contact-form-wrapper {
    position: relative;
    padding: 60px 50px;
    background-image: url("data:image/svg+xml,%3Csvg width='680' height='1040' viewBox='0 0 680 1040' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M680 950.667L588.26 1040L0 1040L0 0L680 0L680 950.667Z' fill='%23F2F2F2' fill-opacity='0.4'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.contact-form-title {
    font-family: var(--font-primary);
    font-style: normal;
    font-weight: 700;
    font-size: 44px;
    line-height: 56px;
    color: var(--tecro-black);
    margin-bottom: 30px;
}

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

.contact-input,
.contact-textarea {
    padding: 15px;
    border: 1px solid #F2F2F2;
    background: #FFFFFF;
    font-family: var(--font-primary);
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    color: #2A2A2A;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: #999999;
}

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

/* Schedule Consultation Section */
.schedule-consultation {
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg width='1440' height='729' viewBox='0 0 1440 729' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M1440 605.358L1348.26 728.996L-1.00037 728.995L-1.0003 0.000118164L1440 0.00012207L1440 605.358Z' fill='%23F2F2F2'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 300px 0 100px 0;
    text-align: center;
    min-height: 729px;
    display: flex;
    align-items: center;
}

.schedule-content {
    max-width: 800px;
    margin: 0 auto;
}

.schedule-title {
    font-family: var(--font-primary);
    font-style: normal;
    font-weight: 600;
    font-size: 44px;
    line-height: 120%;
    text-align: center;
    color: var(--tecro-black);
    max-width: 1012px;
    margin: 0 auto 30px;
}

.schedule-description {
    font-family: var(--font-primary);
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 38px;
    text-align: center;
    color: var(--tecro-black);
    max-width: 1012px;
    margin: 0 auto 60px;
}

.btn-send {
    width: 100%;
    height: 55.06px;
    background: var(--tecro-orange);
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    color: var(--tecro-black);
    margin-top: 20px;
    transition: opacity 0.3s ease;
}

.btn-send:hover {
    opacity: 0.9;
}

/* Botones según manual */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--tecro-black);
    color: var(--tecro-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid var(--tecro-black);
}

.btn:hover {
    background: transparent;
    color: var(--tecro-black);
}

.btn-secondary {
    width: 292px;
    height: 48px;
    background: var(--tecro-orange);
    border: none;
    color: var(--tecro-black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
}

.btn-secondary:hover {
    background: transparent;
    color: var(--tecro-orange);
    border: 2px solid var(--tecro-orange);
}

.btn-primary {
    width: 292px;
    height: 48px;
    background: var(--tecro-orange);
    border: none;
    color: var(--tecro-black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    text-decoration: none;
}

.btn-primary:hover {
    background: transparent;
    color: var(--tecro-orange);
    border: 2px solid var(--tecro-orange);
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services .container {
    max-width: 1264px;
    margin: 0 auto;
}

.services-layout {
    display: grid;
    gap: 70px;
    max-width: 1264px;
    margin: 0 auto;
}

/* Primera fila: Título + Descripción */
.services-header {
    display: grid;
    grid-template-columns: 404px 1fr;
    gap: 28px;
    align-items: flex-start;
    width: 100%;
    max-width: 1264px;
}

.services-title {
    width: 404px;
}

.services-title h2 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 55px;
    line-height: 120%;
    margin: -10px 0 0 0;
    text-align: left;
}

.title-line-1 {
    color: var(--tecro-black);
}

.title-line-2 {
    color: var(--tecro-orange);
}

.services-description {
    max-width: 832px;
}

.services-description p {
    font-family: var(--font-content);
    font-weight: 400;
    font-size: 22px;
    line-height: 27px;
    color: var(--tecro-black);
    margin: 5px 0 0 0;
    text-align: left;
}

/* Segunda fila: Cards de servicios */
.services-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 100%;
}

.service-card-container {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    width: 100%;
    height: auto;
    min-height: 351px;
}

.service-card {
    padding: 50px 30px 30px 152px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    height: 100%;
    aspect-ratio: 616 / 351;
    position: relative;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background-image: url("data:image/svg+xml,%3Csvg width='616' height='351' viewBox='0 0 616 351' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 350.5L0.500024 1.00017L615.5 1.00024L615.5 305.456L569.209 350.5L0.5 350.5Z' fill='white' stroke='%23F2F2F2'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.service-card-container:hover .service-card {
    background-image: url("data:image/svg+xml,%3Csvg width='616' height='351' viewBox='0 0 616 351' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 350.5L0.500024 1.00017L615.5 1.00024L615.5 305.456L569.209 350.5L0.5 350.5Z' fill='%23EFA051' stroke='%23EFA051'/%3E%3C/svg%3E");
}

.service-card-container:hover .service-link {
    color: var(--tecro-black);
}

.service-icon-corner {
    position: absolute;
    top: 0;
    left: 0;
    width: 112px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    /* SVG de Figma 112x112 - esquina naranja */
    background-image: url("data:image/svg+xml,%3Csvg width='112' height='112' viewBox='0 0 112 112' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M112 88L88 112L0 112L0 0L112 0L112 88Z' fill='%23EB8825'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.corner-icon {
    width: 64px;
    height: 64px;
    filter: brightness(0);
}

.service-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    flex-grow: 1;
    width: 100%;
    height: calc(100% - 72px);
    overflow: hidden;
}

.service-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
}

.service-content h3 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 26px;
    line-height: 120%;
    margin: 0 0 40px 0;
    color: var(--tecro-black);
    text-align: left;
    max-width: 100%;
}

.service-content p {
    font-family: var(--font-content);
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    margin: 0 0 auto 0;
    color: var(--tecro-black);
    text-align: left;
    max-width: 100%;
}

.service-link {
    color: var(--tecro-black);
    text-decoration: none;
    font-weight: 500;
    font-family: var(--font-primary);
    transition: color 0.3s ease;
    margin-top: 20px;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Responsive Design */

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

    .about-us .container {
        padding: 0 40px;
    }

    .services-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-title {
        width: 100%;
    }

    .services-title h2 {
        font-size: 44px;
    }

    .services-description {
        max-width: 100%;
    }

    .services-description p {
        font-size: 20px;
    }

    .services-cards {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
        margin: 0 auto;
    }

    .service-card-container {
        width: 100%;
        height: auto;
        min-height: 300px;
    }

    .service-card {
        padding: 60px 35px 35px 130px;
        min-height: 300px;
        width: 100%;
    }

    .service-content h3 {
        font-size: 26px;
        margin: 0 0 40px 0;
        max-width: 100%;
    }

    .service-content p {
        font-size: 18px;
        max-width: 100%;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .about-us .container {
        padding: 0 20px;
    }

    .services-header {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .services-title h2,
    .services-description p {
        text-align: center;
    }

    .services-cards {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
        margin: 0 auto;
    }

    .service-card-container {
        aspect-ratio: auto;
    }

    .service-card {
        padding: 50px 30px 30px 100px;
        min-height: 250px;
    }

    .service-content h3 {
        font-size: calc(var(--h3-size) * 0.9);
        margin-bottom: 25px;
    }

    .service-content p {
        font-size: calc(var(--text-body) * 0.95);
    }

    .service-icon-corner {
        width: 70px;
        height: 50px;
    }

    .corner-icon {
        width: 36px;
        height: 36px;
    }
}

/* Móvil */
@media (max-width: 480px) {
    .hero {
        height: 697px;
        min-height: 697px;
    }

    .hero-content {
        right: 20px;
        bottom: 40px;
        left: 20px;
        max-width: calc(100% - 40px);
    }

    .hero h1 {
        font-size: 36px !important;
        line-height: 110%;
    }

    .hero p {
        font-size: 18px !important;
        line-height: 26px;
    }

    .services-cards {
        max-width: 100%;
        gap: 20px;
    }

    .service-card-container {
        aspect-ratio: auto;
    }

    .service-card {
        padding: 40px 20px 25px 85px;
        min-height: 200px;
    }

    .service-content h3 {
        font-size: calc(var(--h3-size) * 0.8);
        margin-bottom: 20px;
    }

    .service-content p {
        font-size: calc(var(--text-body) * 0.9);
    }

    .service-icon-corner {
        width: 60px;
        height: 43px;
    }

    .corner-icon {
        width: 32px;
        height: 32px;
    }

    .service-link {
        margin-top: 15px;
        font-size: 14px;
    }

    .about-images {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 15px;
        max-width: 300px;
        margin: 30px auto 0;
    }

    .about-image.top,
    .about-image.middle,
    .about-image.base {
        grid-column: 1;
        height: 160px;
    }

    .about-image.top {
        grid-row: 1;
    }

    .about-image.middle {
        grid-row: 2;
    }

    .about-image.base {
        grid-row: 3;
    }

    .stat-item:not(.last)::after {
        width: 120px;
    }
}

.about-photos {
    position: relative;
    width: 100%;
    max-width: 705px;
    height: 652px;
    flex-shrink: 0;
    margin-right: 32px;
}

.photo-base {
    position: absolute;
    width: 74.3%;
    height: 34.5%;
    left: 25.5%;
    top: 0;
    object-fit: cover;
}

.photo-right {
    position: absolute;
    width: 42%;
    height: 61.2%;
    left: 57.9%;
    top: 38.8%;
    object-fit: cover;
}

.photo-left {
    position: absolute;
    width: 54%;
    height: 44.2%;
    left: 0;
    top: 38.8%;
    object-fit: cover;
}

.about-content-only {
    max-width: 543px;
    width: 100%;
    text-align: left;
    position: relative;
    flex-shrink: 0;
    padding-top: 97px;
}

.about-content-only h2 {
    font-size: 55px;
    font-weight: 600;
    font-family: var(--font-primary);
    margin-bottom: 30px;
    color: var(--tecro-black);
    line-height: 70px;
}

.about-content-only p {
    font-size: 22px;
    font-family: var(--font-content);
    margin-bottom: 60px;
    color: #000000;
    line-height: 27px;
}

/* Stats con líneas naranjas */
.about-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.stat-item {
    position: relative;
    padding-bottom: 16px;
    text-align: left;
    width: 400px;
    display: flex;
    justify-content: flex-start;
}

.stat-item:not(.last)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: none;
    width: 400px;
    height: 1px;
    background-color: var(--tecro-orange);
}

.stat-item span {
    font-size: 24px;
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--tecro-black);
    text-align: left;
    line-height: 31px;
}

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

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

/* Stats con líneas naranjas */
.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.stat-item {
    position: relative;
    padding-bottom: 15px;
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.stat-item:not(.last)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: none;
    width: 180px;
    height: 2px;
    background-color: var(--tecro-orange);
    transition: width 0.3s ease;
}

.stat-item span {
    font-size: var(--text-size);
    font-family: var(--font-content);
    font-weight: 500;
    color: var(--tecro-black);
    text-align: center;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    text-align: left;
}

.benefits h2 {
    font-size: var(--h2-size);
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: 60px;
    line-height: 1.2;
}

.benefit-title-1 {
    color: var(--tecro-black);
}

.benefit-title-2 {
    color: var(--tecro-orange);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    width: 100%;
    max-width: 1264px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 0;
}

.benefit-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
    display: block;
    flex-shrink: 0;
}

.benefit-item h3 {
    font-size: var(--h3-size);
    font-weight: 600;
    font-family: var(--font-primary);
    margin-bottom: 15px;
    color: var(--tecro-black);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.benefit-separator {
    display: none;
}

.benefit-item p {
    font-size: var(--text-body);
    font-family: var(--font-content);
    color: var(--tecro-black);
    opacity: 0.8;
    line-height: 24px;
    flex-grow: 1;
}

/* Industries Section - Estilo similar a Experts */
.partners {
    background: var(--tecro-white);
    padding: 80px 0;
}

/* Header con título y descripción en grid */
.industries-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.industries-title h2 {
    font-size: var(--h2-size);
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--tecro-black);
    margin: 0;
}

.industries-description p {
    font-size: var(--text-size);
    font-family: var(--font-content);
    line-height: 1.6;
    opacity: 0.8;
    margin: 0;
}

/* Grid 2x2 para las cards */
.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    width: 100%;
    max-width: 100%;
}

.partner-card-container {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    width: 100%;
    aspect-ratio: 616/112;
}

.partner-card {
    padding: 20px 20px 20px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    width: 100%;
    height: 112px;
    color: var(--tecro-black);
    transition: all 0.3s ease;
    box-sizing: border-box;
    position: relative;
    /* SVG de Figma 616x112 - sin borde, fondo #F2F2F2 */
    background-image: url("data:image/svg+xml,%3Csvg width='616' height='112' viewBox='0 0 616 112' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0.5 111.5L0.5 0.5L615.5 0.5L615.5 87.795L592.099 111.5L0.5 111.5Z' fill='%23F2F2F2'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.partner-card-container:hover .partner-card {
    background-image: url("data:image/svg+xml,%3Csvg width='616' height='112' viewBox='0 0 616 112' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0.5 111.5L0.5 0.5L615.5 0.5L615.5 87.795L592.099 111.5L0.5 111.5Z' fill='%23EFA051'/%3E%3C/svg%3E");
}

.partner-card-container:hover .partner-card h3 {
    color: var(--tecro-black);
}

.partner-icon-corner {
    position: absolute;
    top: 0;
    left: 0;
    width: 112px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    /* SVG de Figma 112x112 - esquina naranja */
    background-image: url("data:image/svg+xml,%3Csvg width='112' height='112' viewBox='0 0 112 112' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M112 88L88 112L0 112L0 0L112 0L112 88Z' fill='%23EB8825'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.partner-icon {
    width: 56px;
    height: 56px;
    filter: brightness(0);
}

.partner-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-grow: 1;
    width: 100%;
}

.partner-content h3 {
    font-size: var(--h3-size);
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: var(--tecro-black);
}

/* Client Logos Section */
.client-logos {
    padding: 30px 0;
}

.client-logos h3 {
    text-align: center;
    margin-bottom: 20px;
    opacity: 0.7;
}

.client-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 0;
    align-items: center;
    justify-content: center;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.client-logo img {
    max-width: 182px;
    max-height: 91px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.client-logo img.logo-grayscale {
    filter: grayscale(100%);
    opacity: 0.6;
}

/* Call to Action Section */
.cta {
    position: relative;
    padding: 80px 0;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
    min-height: 419px;
    text-align: center;
    background-color: var(--tecro-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    /* SVG de Figma 1440x419 - fondo negro */
    background-image: url("data:image/svg+xml,%3Csvg width='1440' height='419' viewBox='0 0 1440 419' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M1440 372.668L1398.81 419L0 419L0 0L1440 0L1440 372.668Z' fill='%232A2A2A'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Ready CTA Section */
.ready-cta {
    position: relative;
    padding: 80px 0;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
    min-height: 419px;
    text-align: center;
    background-color: var(--tecro-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ready-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    /* SVG de Figma 1440x419 - fondo gris */
    background-image: url("data:image/svg+xml,%3Csvg width='1440' height='419' viewBox='0 0 1440 419' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M1440 378.86L1398.81 419L0 419L0 0L1440 0L1440 378.86Z' fill='%23E6E6E6'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.ready-cta .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.ready-cta h2 {
    font-size: var(--h2-size);
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 70px;
    margin-bottom: 30px;
    color: var(--tecro-black);
}

/* About Us Section */
.about-us {
    position: relative;
    padding: 100px 0;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
    min-height: 845px;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* SVG de Figma 1440x847 - fondo gris con diagonal */
    background-image: url("data:image/svg+xml,%3Csvg width='1440' height='847' viewBox='0 0 1440 847' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M1440 757.667L1348.26 847L-0.999756 847L-0.999682 -3.90588e-06L1440 0L1440 757.667Z' fill='%23F2F2F2' fill-opacity='0.4'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.about-us .container {
    max-width: 1264px;
    margin: 0 auto;
    padding: 0 88px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
}

.cta h2 {
    font-size: var(--h2-size);
    font-weight: 600;
    font-family: var(--font-primary);
    margin-bottom: 30px;
    color: var(--tecro-white);
    line-height: 70px;
}

.cta-orange {
    color: var(--tecro-orange);
}

.cta p {
    font-size: var(--text-size);
    margin-bottom: 30px;
    opacity: 0.8;
}

/* Careers Section */
.careers-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.careers-section h2 {
    position: relative;
    max-width: 891px;
    width: 100%;
    margin: 0 auto 40px;
    padding: 0 20px;
    font-family: var(--font-primary);
    font-style: normal;
    font-weight: 600;
    font-size: 44px;
    line-height: 115%;
    text-align: center;
    color: #2A2A2A;
}

.careers-section p {
    font-size: var(--text-size);
    margin-bottom: 30px;
    opacity: 0.7;
}

/* Footer */
footer {
    background: #2A2A2A;
    color: #E6E6E6;
    height: 405px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 88px;
}

.footer-content {
    max-width: 1264px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-left {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.footer-logo img {
    display: block;
    height: 29px;
    width: 114px;
}

.footer-contact-section {
    display: flex;
    gap: 64px;
}

.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.footer-contact-col h4 {
    margin: 0;
    color: #E6E6E6;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: -0.08px;
    line-height: 24px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-headquarters-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-headquarters-col h4 {
    margin: 0;
    color: #E6E6E6;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: -0.08px;
    line-height: 24px;
}

.footer-headquarters-col p {
    color: #E6E6E6;
    font-size: 14px;
    line-height: 17px;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: -0.08px;
}

.footer-nav {
    display: flex;
    gap: 64px;
    margin-left: auto;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h4 {
    margin: 0 0 28px 0;
    color: #E6E6E6;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: -0.08px;
    line-height: 24px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 20px;
}

.footer-column ul li:last-child {
    margin-bottom: 0;
}

.footer-column a {
    color: #9EA2AD;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.08px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #E6E6E6;
}

.footer-column p {
    color: #E6E6E6;
    font-size: 14px;
    line-height: 17px;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: -0.08px;
}

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

.social-links a {
    width: 45px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #E6E6E6;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.contact-box {
    width: 184px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}

.contact-box span {
    color: #E6E6E6;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.08px;
}

/* Fix para el header y grids en dispositivos más pequeños */
@media (max-width: 1200px) {
    .nav-center {
        gap: 20px;
    }

    .nav-center a {
        font-size: 14px;
    }

    .hero {
        height: 697px;
        min-height: 697px;
    }

    .hero-content {
        right: 40px;
        bottom: 80px;
        max-width: 550px;
    }

    .hero h1 {
        font-size: calc(var(--h1-size) * 0.8);
    }

    .hero p {
        font-size: 24px;
    }

    .partner-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .partner-card-container {
        aspect-ratio: auto;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .partner-card {
        padding: 20px 20px 20px 130px;
        min-height: 100px;
        width: 100%;
    }

    .about-us .container {
        flex-direction: column;
        align-items: center;
    }

    .about-photos {
        max-width: 600px;
        height: 550px;
        margin-right: 0;
        margin-bottom: 0;
        margin-top: 40px;
        order: 2;
    }

    .about-content-only {
        padding-top: 0;
        max-width: 100%;
        order: 1;
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-nav {
        gap: 40px;
    }

    .industries-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 40px;
    }

    .contact-left h2 {
        font-size: 42px;
    }

    .contact-image-center {
        margin-top: 40px;
        margin-bottom: 0;
        text-align: center;
        order: 3;
    }

    .contact-image-center img {
        margin: 0 auto;
    }

    .contact-grid {
        display: flex;
        flex-direction: column;
    }

    .contact-form-wrapper {
        order: 2;
    }

    .contact-left {
        order: 1;
    }

    .schedule-consultation {
        padding: 80px 40px 100px 40px;
    }

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

    .schedule-description {
        font-size: 24px;
        line-height: 32px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --h1-size: 48px;
        --h2-size: 38px;
        --h3-size: 24px;
        --text-size: 18px;
        --text-body: 16px;
    }

    nav {
        flex-wrap: wrap;
        padding: 15px 0;
    }

    .nav-center {
        order: 3;
        width: 100%;
        margin-top: 15px;
        justify-content: center;
        gap: 15px;
    }

    .logo {
        order: 1;
    }

    .nav-right {
        order: 2;
    }

    .hero {
        height: 697px;
        min-height: 697px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        right: 30px;
        bottom: 60px;
        max-width: 90%;
        left: 30px;
    }

    .hero h1 {
        font-size: 48px !important;
    }

    .hero p {
        font-size: 20px;
        line-height: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .about-text {
        order: 1;
    }

    .about-images {
        order: 2;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        margin-top: 40px;
        max-width: 400px;
    }

    .about-image.top {
        grid-row: 1;
        grid-column: 1;
        height: 120px;
    }

    .about-image.middle {
        grid-row: 1;
        grid-column: 2;
        height: 120px;
    }

    .about-image.base {
        grid-row: 2;
        grid-column: 1 / 3;
        height: 140px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        padding: 0 20px;
        gap: 40px;
    }

    .contact-left h2 {
        font-size: 36px;
    }

    .contact-left p {
        font-size: 18px;
        line-height: 24px;
    }

    .contact-benefits li {
        font-size: 20px;
        line-height: 26px;
        padding: 14px 0;
    }

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

    .schedule-title {
        font-size: 28px;
    }

    .schedule-description {
        font-size: 20px;
        line-height: 28px;
    }

    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .client-logo {
        height: 45px;
        padding: 5px;
    }

    .client-logo img {
        max-width: 104px;
        max-height: 52px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta h2,
    .ready-cta h2 {
        line-height: 1.3;
    }

    .about-us .container {
        flex-direction: column;
        padding: 0 20px;
    }

    .about-photos {
        max-width: 100%;
        height: 400px;
        margin-right: 0;
        margin-bottom: 0;
        margin-top: 30px;
        order: 2;
    }

    .about-content-only {
        padding-top: 0;
        max-width: 100%;
        order: 1;
    }

    .about-content-only h2 {
        font-size: 38px;
        line-height: 1.2;
    }

    .about-content-only p {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 40px;
    }

    .stat-item {
        width: 100%;
    }

    .careers-section h2 {
        font-size: 32px;
        padding: 0 20px;
    }

    footer {
        height: auto;
        padding: 60px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-left {
        width: 100%;
    }

    .footer-contact-section {
        flex-direction: column;
        gap: 30px;
    }

    .footer-nav {
        width: 100%;
        flex-direction: column;
        gap: 30px;
        margin-left: 0;
    }

    .client-grid {
        flex-wrap: wrap;
        gap: 25px;
    }

    .client-logo img {
        max-width: 143px;
        max-height: 72px;
    }

    .industries-header {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        padding: 0 20px;
    }

    .industries-title h2,
    .industries-description p {
        text-align: center;
    }

    .partner-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        padding: 0 20px;
    }

    .partner-card-container {
        aspect-ratio: auto;
        max-width: 500px;
        margin: 0 auto;
    }

    .partner-card {
        padding: 20px 20px 20px 100px;
        height: auto;
        min-height: 100px;
    }

    .partner-icon-corner {
        width: 90px;
        height: 90px;
    }

    .partner-icon {
        width: 48px;
        height: 48px;
    }

    .partner-content h3 {
        font-size: calc(var(--h3-size) * 0.9);
    }
}

/* Mobile pequeño */
@media (max-width: 480px) {
    .about-photos {
        height: 300px;
        order: 2;
    }

    .about-content-only {
        order: 1;
    }

    .about-content-only h2 {
        font-size: 32px;
    }

    .about-content-only p {
        font-size: 16px;
    }

    .careers-section h2 {
        font-size: 28px;
    }

    footer {
        padding: 40px 20px;
    }

    .footer-contact-section {
        gap: 20px;
    }

    .footer-nav {
        gap: 20px;
    }

    .contact-box {
        width: 100%;
        max-width: 280px;
    }

    .client-grid {
        gap: 15px;
    }

    .client-logo img {
        max-width: 117px;
        max-height: 59px;
    }

    .partner-grid {
        max-width: 100%;
        gap: 15px;
        padding: 0 15px;
    }

    .partner-card-container {
        aspect-ratio: auto;
        max-width: 100%;
    }

    .partner-card {
        padding: 15px 15px 15px 85px;
        min-height: 80px;
    }

    .partner-icon-corner {
        width: 70px;
        height: 70px;
    }

    .partner-icon {
        width: 40px;
        height: 40px;
    }

    .partner-content h3 {
        font-size: calc(var(--h3-size) * 0.8);
    }
}

/* Industries CTA Button */
.industries-cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(235, 136, 37, 0.3);
}

/* Industries Benefits CTA Button */
.industries-benefits-cta:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(235, 136, 37, 0.3);
}

/* Industries Benefits Grid Section */
@media (max-width: 992px) {
    .hero-industries {
        height: 500px !important;
    }

    .hero-industries h1 {
        font-size: 48px !important;
        padding-right: 0 !important;
    }

    .hero-industries > div {
        padding-right: 40px !important;
    }

    .hero-industries p {
        font-size: 18px !important;
    }

    /* Benefits Grid - 2 columnas en tablet */
    section[style*="min-height: 800px"] > div > div[style*="grid-template-columns"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px 30px !important;
    }

    section[style*="min-height: 800px"] h2 {
        font-size: 36px !important;
        margin-bottom: 60px !important;
    }

    /* Final Section */
    section[style*="padding: 100px 0"] {
        padding: 80px 20px !important;
    }

    section[style*="padding: 100px 0"] h2 {
        font-size: 42px !important;
        line-height: 54px !important;
    }

    section[style*="padding: 100px 0"] p {
        font-size: 24px !important;
        line-height: 32px !important;
    }

    section[style*="padding: 100px 0"] a {
        width: 280px !important;
        font-size: 20px !important;
    }
}

@media (max-width: 768px) {
    .hero-industries {
        height: 400px !important;
    }

    .hero-industries h1 {
        font-size: 36px !important;
    }

    .hero-industries > div {
        padding-right: 20px !important;
    }

    .hero-industries p {
        font-size: 16px !important;
    }

    /* Benefits Grid - 1 columna en móvil */
    section[style*="min-height: 800px"] {
        min-height: auto !important;
    }

    section[style*="min-height: 800px"] > div {
        padding: 60px 15px !important;
    }

    section[style*="min-height: 800px"] > div > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        max-width: 500px !important;
    }

    section[style*="min-height: 800px"] h2 {
        font-size: 32px !important;
        margin-bottom: 40px !important;
    }

    section[style*="min-height: 800px"] h3 {
        font-size: 20px !important;
    }

    section[style*="min-height: 800px"] p {
        font-size: 15px !important;
    }

    /* Final Section - Mobile */
    section[style*="padding: 100px 0"] {
        padding: 60px 15px !important;
    }

    section[style*="padding: 100px 0"] h2 {
        font-size: 32px !important;
        line-height: 42px !important;
        margin-bottom: 40px !important;
    }

    section[style*="padding: 100px 0"] p {
        font-size: 20px !important;
        line-height: 28px !important;
        margin-bottom: 40px !important;
    }

    section[style*="padding: 100px 0"] a {
        width: 100% !important;
        max-width: 280px !important;
        font-size: 18px !important;
    }
}

@media (max-width: 480px) {
    .hero-industries {
        height: 350px !important;
    }

    .hero-industries h1 {
        font-size: 28px !important;
    }

    .hero-industries p {
        font-size: 14px !important;
    }

    section[style*="min-height: 800px"] h2 {
        font-size: 28px !important;
    }

    section[style*="min-height: 800px"] h3 {
        font-size: 18px !important;
    }

    /* Final Section - Small Mobile */
    section[style*="padding: 100px 0"] h2 {
        font-size: 26px !important;
        line-height: 36px !important;
    }

    section[style*="padding: 100px 0"] p {
        font-size: 18px !important;
        line-height: 26px !important;
    }

    section[style*="padding: 100px 0"] a {
        font-size: 16px !important;
    }
}

/* Breadcrumbs */
.breadcrumb-container {
    padding: 20px 0;
    background-color: var(--tecro-gray);
}

.breadcrumb {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-family: var(--font-content);
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: #666;
    font-size: 16px;
}

.breadcrumb a {
    color: var(--tecro-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    text-decoration: underline;
    color: #d67a1e;
}

.breadcrumb span {
    color: var(--tecro-black);
}

/* SEO optimizations */
img {
    max-width: 100%;
    height: auto;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   MOBILE MENU STYLES
   ======================================== */

/* Mobile Menu Toggle Button (Hamburger) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    z-index: 1003;
}

.hamburger-line {
    width: 26px;
    height: 3px;
    background: var(--tecro-black);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger animation when menu is open */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

/* Mobile Navigation Panel */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--tecro-white);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 1002;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    right: 0;
}

/* Mobile Nav Header */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e5e5;
}

.mobile-nav-header img {
    height: 32px;
    width: auto;
}

.close-btn {
    background: transparent;
    border: none;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    color: var(--tecro-black);
    padding: 4px 8px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--tecro-orange);
}

/* Mobile Nav Links */
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.mobile-nav-links > li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-links > li > a {
    display: block;
    padding: 18px 24px;
    color: var(--tecro-black);
    text-decoration: none;
    font-size: 18px;
    font-family: var(--font-primary);
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
    min-height: 56px;
}

.mobile-nav-links > li > a:hover,
.mobile-nav-links > li > a.active {
    background-color: #f8f8f8;
    color: var(--tecro-orange);
}

/* Submenu Toggle Button */
.submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 24px;
    background: transparent;
    border: none;
    color: var(--tecro-black);
    font-size: 18px;
    font-family: var(--font-primary);
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s ease, color 0.2s ease;
    min-height: 56px;
}

.submenu-toggle:hover {
    background-color: #f8f8f8;
    color: var(--tecro-orange);
}

.submenu-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.submenu-toggle[aria-expanded="true"] .submenu-icon {
    transform: rotate(180deg);
}

/* Submenu */
.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    background-color: #f8f8f8;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.submenu.active {
    max-height: 400px;
    padding: 8px 0;
}

.submenu li a {
    display: block;
    padding: 14px 24px 14px 48px;
    color: var(--tecro-black);
    text-decoration: none;
    font-size: 16px;
    font-family: var(--font-content);
    transition: background-color 0.2s ease, color 0.2s ease;
    min-height: 48px;
}

.submenu li a:hover {
    background-color: #efefef;
    color: var(--tecro-orange);
}

/* Mobile Nav Footer */
.mobile-nav-footer {
    padding: 20px 24px;
    border-top: 1px solid #e5e5e5;
}

.lang-switch-mobile {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--tecro-orange);
    color: var(--tecro-white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-height: 48px;
}

.lang-switch-mobile:hover {
    background-color: #d67a1e;
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* ========================================
   RESPONSIVE: MOBILE MENU VISIBILITY
   ======================================== */

@media (max-width: 768px) {
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hide desktop navigation */
    .nav-center,
    .nav-right {
        display: none;
    }

    /* Adjust header for mobile */
    header nav.container {
        justify-content: space-between;
    }

    .logo img {
        height: 32px !important;
    }

    header {
        padding: 12px 0;
    }
}

/* ========================================
   TYPOGRAPHY UTILITIES
   ======================================== */

/* Font sizes */
.text-xs { font-size: var(--font-size-xs); }
.text-sm { font-size: var(--font-size-sm); }
.text-base { font-size: var(--font-size-base); }
.text-md { font-size: var(--font-size-md); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }
.text-2xl { font-size: var(--font-size-2xl); }
.text-3xl { font-size: var(--font-size-3xl); }

/* Font families */
.font-primary { font-family: var(--font-family-primary); }
.font-body { font-family: var(--font-family-body); }

/* Font weights */
.font-normal { font-weight: var(--font-weight-normal); }
.font-medium { font-weight: var(--font-weight-medium); }
.font-semibold { font-weight: var(--font-weight-semibold); }
.font-bold { font-weight: var(--font-weight-bold); }

/* Line heights */
.leading-tight { line-height: var(--line-height-tight); }
.leading-normal { line-height: var(--line-height-normal); }
.leading-relaxed { line-height: var(--line-height-relaxed); }

/* Combined heading classes (convenience) */
.heading-xs {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
}

.heading-sm {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
}

.heading-md {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
}

.heading-lg {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
}

.heading-xl {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
}

.heading-2xl {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
}


/* ========================================
   COLOR UTILITIES
   ======================================== */

/* Text colors */
.text-primary { color: var(--color-primary); }
.text-dark { color: var(--color-dark); }
.text-white { color: var(--color-white); }
.text-black { color: var(--color-black); }
.text-violet { color: var(--color-violet); }
.text-gray-500 { color: var(--color-gray-500); }
.text-gray-600 { color: var(--color-gray-600); }

/* Background colors */
.bg-primary { background-color: var(--color-primary); }
.bg-dark { background-color: var(--color-dark); }
.bg-white { background-color: var(--color-white); }
.bg-gray-50 { background-color: var(--color-gray-50); }
.bg-gray-100 { background-color: var(--color-gray-100); }

/* Border colors */
.border-primary { border-color: var(--color-primary); }
.border-gray-200 { border-color: var(--color-gray-200); }
.border-gray-300 { border-color: var(--color-gray-300); }


/* ========================================
   SPACING UTILITIES
   ======================================== */

/* Margin utilities */
.m-0 { margin: var(--space-0); }
.m-1 { margin: var(--space-1); }
.m-2 { margin: var(--space-2); }
.m-3 { margin: var(--space-3); }
.m-4 { margin: var(--space-4); }
.m-5 { margin: var(--space-5); }
.m-6 { margin: var(--space-6); }
.m-8 { margin: var(--space-8); }
.m-10 { margin: var(--space-10); }
.m-12 { margin: var(--space-12); }

/* Margin-top */
.mt-0 { margin-top: var(--space-0); }
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }

/* Margin-bottom */
.mb-0 { margin-bottom: var(--space-0); }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-10 { margin-bottom: var(--space-10); }

/* Margin-left and right */
.mx-0 { margin-left: var(--space-0); margin-right: var(--space-0); }
.mx-1 { margin-left: var(--space-1); margin-right: var(--space-1); }
.mx-2 { margin-left: var(--space-2); margin-right: var(--space-2); }
.mx-3 { margin-left: var(--space-3); margin-right: var(--space-3); }
.mx-4 { margin-left: var(--space-4); margin-right: var(--space-4); }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Margin top and bottom */
.my-0 { margin-top: var(--space-0); margin-bottom: var(--space-0); }
.my-1 { margin-top: var(--space-1); margin-bottom: var(--space-1); }
.my-2 { margin-top: var(--space-2); margin-bottom: var(--space-2); }
.my-3 { margin-top: var(--space-3); margin-bottom: var(--space-3); }
.my-4 { margin-top: var(--space-4); margin-bottom: var(--space-4); }
.my-5 { margin-top: var(--space-5); margin-bottom: var(--space-5); }
.my-8 { margin-top: var(--space-8); margin-bottom: var(--space-8); }
.my-10 { margin-top: var(--space-10); margin-bottom: var(--space-10); }

/* Padding utilities */
.p-0 { padding: var(--space-0); }
.p-1 { padding: var(--space-1); }
.p-2 { padding: var(--space-2); }
.p-3 { padding: var(--space-3); }
.p-4 { padding: var(--space-4); }
.p-5 { padding: var(--space-5); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }
.p-10 { padding: var(--space-10); }

/* Padding-top */
.pt-0 { padding-top: var(--space-0); }
.pt-1 { padding-top: var(--space-1); }
.pt-2 { padding-top: var(--space-2); }
.pt-3 { padding-top: var(--space-3); }
.pt-4 { padding-top: var(--space-4); }
.pt-5 { padding-top: var(--space-5); }
.pt-10 { padding-top: var(--space-10); }

/* Padding-bottom */
.pb-0 { padding-bottom: var(--space-0); }
.pb-1 { padding-bottom: var(--space-1); }
.pb-2 { padding-bottom: var(--space-2); }
.pb-3 { padding-bottom: var(--space-3); }
.pb-4 { padding-bottom: var(--space-4); }
.pb-5 { padding-bottom: var(--space-5); }
.pb-10 { padding-bottom: var(--space-10); }

/* Padding-x (left and right) */
.px-0 { padding-left: var(--space-0); padding-right: var(--space-0); }
.px-1 { padding-left: var(--space-1); padding-right: var(--space-1); }
.px-2 { padding-left: var(--space-2); padding-right: var(--space-2); }
.px-3 { padding-left: var(--space-3); padding-right: var(--space-3); }
.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }

/* Padding-y (top and bottom) */
.py-0 { padding-top: var(--space-0); padding-bottom: var(--space-0); }
.py-1 { padding-top: var(--space-1); padding-bottom: var(--space-1); }
.py-2 { padding-top: var(--space-2); padding-bottom: var(--space-2); }
.py-3 { padding-top: var(--space-3); padding-bottom: var(--space-3); }
.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.py-5 { padding-top: var(--space-5); padding-bottom: var(--space-5); }
.py-10 { padding-top: var(--space-10); padding-bottom: var(--space-10); }
.py-12 { padding-top: var(--space-12); padding-bottom: var(--space-12); }

/* Gap utilities (for flexbox/grid) */
.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-5 { gap: var(--space-5); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }


/* ========================================
   RESPONSIVE GRID UTILITIES
   ======================================== */

/* Responsive 2-column grid (used in Solutions and Benefits sections) */
.grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8); /* 64px (was 60px) */
}

@media (max-width: 992px) {
    .grid-2col {
        grid-template-columns: 1fr;
        gap: var(--space-5); /* 40px */
    }
}

/* Responsive CTA grid (1fr 2fr layout) */
.grid-cta {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-8); /* 64px (was 60px) */
    align-items: center;
}

@media (max-width: 992px) {
    .grid-cta {
        grid-template-columns: 1fr;
        gap: var(--space-4); /* 32px (was 30px) */
    }
}

/* ========================================
   TOUCH TARGETS OPTIMIZATION
   ======================================== */

@media (max-width: 768px) {
    /* Ensure all interactive elements are at least 44x44px */
    .btn,
    .lang-switch,
    .dropdown-toggle,
    .service-card-container,
    .partner-card-container,
    footer a,
    .breadcrumb a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Form elements (for contact page) */
    input,
    textarea,
    select,
    button[type="submit"] {
        min-height: 48px;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    /* Service and Partner Cards - ensure clickable area */
    .service-card,
    .partner-card {
        min-height: 120px;
    }

    /* Social links in footer */
    .social-links a {
        min-width: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Discovery Content Section */
.discovery-content-section {
    padding: 80px 0;
}

.discovery-content-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    max-width: 100%;
}

.discovery-image-wrapper {
    width: 100%;
}

.discovery-image-container {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
}

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

.discovery-text-wrapper {
    width: 100%;
}

.discovery-description {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.3;
    color: var(--tecro-black);
    margin-bottom: 30px;
}

/* Responsive para discovery content */
@media (max-width: 992px) {
    .discovery-content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .discovery-image-container {
        aspect-ratio: 16/9;
        max-height: 400px;
    }

    .discovery-description {
        font-size: clamp(16px, 2.5vw, 20px);
    }
}

@media (max-width: 768px) {
    .discovery-content-section {
        padding: 60px 0;
    }

    .discovery-content-layout {
        gap: 30px;
    }

    .discovery-image-container {
        aspect-ratio: 16/9;
        max-height: 300px;
    }

    .discovery-description {
        font-size: 16px;
        margin-bottom: 20px;
    }
}