* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --prussian-blue: #003153;
    --black: #111111;
    --white: #ffffff;
    --strong-green: #228B22;
    --yellow: #FFD700;
    --light-gray: #e8e8e8;
    --dark-overlay: rgba(0, 0, 0, 0.4);
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--white);
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 12px 0;
    transition: background 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--light-gray);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.contact-badge {
    background: var(--yellow);
    color: var(--black);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

/* Navigation CTA Button */
.nav-cta {
    background: transparent;
    color: var(--white);
    border: 1.4px solid var(--white);
    padding: 7px 18px 7px 25px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: right 0.4s ease;
    z-index: 1;
}

.nav-cta:hover::before {
    right: 0;
}

.nav-cta:hover {
    color: var(--black);
    transform: translateY(-2px);
}

.nav-cta span,
.nav-cta .nav-cta-icon {
    position: relative;
    z-index: 2;
}

.nav-cta-icon {
    background: var(--white);
    color: var(--black);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.4s ease;
}

.nav-cta:hover .nav-cta-icon {
    transform: translateX(4px);
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 4px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.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 {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: right 0.3s ease;
    padding-top: 80px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav-link:hover {
    color: var(--light-gray);
}

.mobile-nav-cta {
    background: transparent;
    color: var(--white);
    border: 1.4px solid var(--white);
    padding: 12px 20px 12px 30px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
    align-self: center;
    margin-top: 20px;
}

.mobile-nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: right 0.4s ease;
    z-index: 1;
}

.mobile-nav-cta:hover::before {
    right: 0;
}

.mobile-nav-cta:hover {
    color: var(--black);
}

.mobile-nav-cta span,
.mobile-nav-cta .mobile-nav-cta-icon {
    position: relative;
    z-index: 2;
}

.mobile-nav-cta-icon {
    background: var(--white);
    color: var(--black);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: transform 0.4s ease;
}

.mobile-nav-cta:hover .mobile-nav-cta-icon {
    transform: translateX(4px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

/* Hero Section Styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    padding: 72px 18px 54px; /* 80px 20px 60px * 0.9 */
    overflow: hidden;
    position: relative;
}

.hero-container {
    max-width: 1080px; /* 1200px * 0.9 */
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    text-align: center;
    margin-bottom: 54px; /* 60px * 0.9 */
    margin-top: 2.7rem; /* 3rem * 0.9 */
}

.hero-text {
    font-size: clamp(180px, 22.5vw, 450px); /* 200px, 25vw, 500px * 0.9 */
    font-weight: 800;
    letter-spacing: -0.018em; /* 0.02em * 0.9 */
    line-height: 0.8;
    background-image: url('../assets/images/ciudad.jpg');
    background-size: 135% 108%; /* 150% 120% * 0.9 */
    background-position: 0% center;
    background-repeat: repeat-x;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    animation: backgroundMove 9s linear infinite; /* 10s * 0.9 */
    text-transform: uppercase;
    opacity: 0.8;
}

@keyframes backgroundMove {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 135% center; /* 150% * 0.9 */
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4.5px; /* 5px * 0.9 */
    align-items: start;
    margin-top: 36px; /* 40px * 0.9 */
}

.hero-left {
    max-width: 810px; /* 900px * 0.9 */
}

.hero-subtitle {
    font-size: 46.8px; /* 52px * 0.9 */
    font-weight: 650;
    line-height: 1.3;
    color: var(--black);
    letter-spacing: -0.009em; /* 0.01em * 0.9 */
    margin-bottom: 0;
}

.hero-period {
    font-size: 70.2px; /* 78px * 0.9 */
    font-weight: 650;
    color: var(--black);
    line-height: 0.6;
    vertical-align: top;
}

.hero-right {
    max-width: 315px; /* 350px * 0.9 */
    justify-self: start;
    padding-top: 18px; /* 20px * 0.9 */
    padding-left: 9px; /* 10px * 0.9 */
}

.hero-description {
    font-size: 14.4px; /* 16px * 0.9 */
    line-height: 1.6;
    color: #666;
    margin-bottom: 36px; /* 40px * 0.9 */
    font-weight: 500;
}

.hero-cta {
    background: transparent;
    color: var(--black);
    border: 1.8px solid var(--black); /* 2px * 0.9 */
    padding: 12.6px 18px 12.6px 27px; /* 14px 20px 14px 30px * 0.9 */
    font-size: 11.7px; /* 13px * 0.9 */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10.8px; /* 12px * 0.9 */
    text-transform: uppercase;
    letter-spacing: 0.45px; /* 0.5px * 0.9 */
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: var(--black);
    transition: right 0.4s ease;
    z-index: 1;
}

.hero-cta:hover::before {
    right: 0;
}

.hero-cta:hover {
    color: var(--white);
    transform: translateY(-1.8px); /* 2px * 0.9 */
}

.hero-cta span,
.hero-cta .cta-icon {
    position: relative;
    z-index: 2;
}

.cta-icon {
    background: var(--black);
    color: var(--white);
    width: 27px; /* 30px * 0.9 */
    height: 27px; /* 30px * 0.9 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12.6px; /* 14px * 0.9 */
    transition: transform 0.4s ease;
}

.hero-cta:hover .cta-icon {
    transform: translateX(3.6px); /* 4px * 0.9 */
}

/* Statistics Section */
.stats-section {
    padding: 126px 18px 18px; /* 140px 20px 20px * 0.9 */
    background-image: url('../assets/fondo-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    min-height: 63vh; /* 70vh * 0.9 */
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.stats-container {
    max-width: 1080px; /* 1200px * 0.9 */
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7.2px; /* 8px * 0.9 */
    position: relative;
    z-index: 2;
    width: 100%;
}

.stat-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 27px 22.5px; /* 30px 25px * 0.9 */
    border-radius: 7.2px; /* 8px * 0.9 */
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 126px; /* 140px * 0.9 */
    backdrop-filter: blur(9px); /* 10px * 0.9 */
}

.stat-number {
    font-size: 3.6rem; /* 4rem * 0.9 */
    font-weight: 500;
    color: var(--black);
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    align-self: flex-start;
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px; /* 60px * 0.9 */
    height: 54px; /* 60px * 0.9 */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    filter: brightness(0);
    z-index: -1;
}

.stat-item:nth-child(1) .stat-number::after {
    background-image: url('https://cdn.jsdelivr.net/npm/@tabler/icons@latest/icons/users.svg');
}

.stat-item:nth-child(2) .stat-number::after {
    background-image: url('https://cdn.jsdelivr.net/npm/@tabler/icons@latest/icons/building.svg');
}

.stat-item:nth-child(3) .stat-number::after {
    background-image: url('https://cdn.jsdelivr.net/npm/@tabler/icons@latest/icons/map-pin.svg');
}

.stat-item:nth-child(4) .stat-number::after {
    background-image: url('https://cdn.jsdelivr.net/npm/@tabler/icons@latest/icons/calendar.svg');
}

.stat-label {
    font-size: 9.9px; /* 11px * 0.9 */
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.72px; /* 0.8px * 0.9 */
    font-family: 'Montserrat', sans-serif;
    align-self: flex-end;
    text-align: right;
    margin-top: auto;
}

/* Services Section */
.services-section {
    padding: 72px 18px; /* 80px 20px * 0.9 */
    background: var(--white);
    color: var(--black);
}

.services-container {
    max-width: 1080px; /* 1200px * 0.9 */
    margin: 0 auto;
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px; /* 80px * 0.9 */
    margin-bottom: 54px; /* 60px * 0.9 */
    align-items: start;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 7.2px; /* 8px * 0.9 */
    background: rgba(0, 0, 0, 0.1);
    padding: 7.2px 14.4px; /* 8px 16px * 0.9 */
    border-radius: 18px; /* 20px * 0.9 */
    font-size: 10.8px; /* 12px * 0.9 */
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.9px; /* 1px * 0.9 */
    margin-bottom: 27px; /* 30px * 0.9 */
}

.services-badge svg {
    width: 14.4px; /* 16px * 0.9 */
    height: 14.4px; /* 16px * 0.9 */
    stroke: #666;
}

.services-title {
    font-size: 43.2px; /* 48px * 0.9 */
    font-weight: 550;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 18px; /* 20px * 0.9 */
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.services-subtitle {
    font-size: 18px; /* 20px * 0.9 */
    font-weight: 400;
    line-height: 1.4;
    color: var(--black);
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
}

.services-description {
    font-size: 14.4px; /* 16px * 0.9 */
    line-height: 1.6;
    color: #666;
    margin-bottom: 36px; /* 40px * 0.9 */
    font-weight: 400;
    text-align: left;
}

.services-description-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.services-cta {
    background: transparent;
    color: var(--black);
    border: 1.8px solid var(--black); /* 2px * 0.9 */
    padding: 12.6px 18px 12.6px 27px; /* 14px 20px 14px 30px * 0.9 */
    font-size: 11.7px; /* 13px * 0.9 */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10.8px; /* 12px * 0.9 */
    text-transform: uppercase;
    letter-spacing: 0.45px; /* 0.5px * 0.9 */
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: var(--black);
    transition: right 0.4s ease;
    z-index: 1;
}

.services-cta:hover::before {
    right: 0;
}

.services-cta:hover {
    color: var(--white);
    transform: translateY(-1.8px); /* 2px * 0.9 */
}

.services-cta span,
.services-cta .services-cta-icon {
    position: relative;
    z-index: 2;
}

.services-cta-icon {
    background: var(--black);
    color: var(--white);
    width: 27px; /* 30px * 0.9 */
    height: 27px; /* 30px * 0.9 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12.6px; /* 14px * 0.9 */
    transition: transform 0.4s ease;
}

.services-cta:hover .services-cta-icon {
    transform: translateX(3.6px); /* 4px * 0.9 */
}

.services-divider,
.projects-divider {
    width: 100%;
    height: 1.8px; /* 2px * 0.9 */
    background: #e0e0e0;
    margin-bottom: 54px; /* 60px * 0.9 */
    position: relative;
    overflow: hidden;
}

.services-divider::before,
.projects-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--black);
    transition: width 1.08s ease-in-out; /* 1.2s * 0.9 */
    z-index: 2;
}

.services-divider.animate::before,
.projects-divider.animate::before {
    width: 100%;
}

.testimonial-divider{
    width: 100%;
    height: 1.8px; /* 2px * 0.9 */
    background: var(--black);
    margin-bottom: 54px; /* 60px * 0.9 */
    margin-top: 54px; /* 60px * 0.9 */
    position: relative;
    overflow: hidden;
}

.testimonial-divider::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--white);
    transition: width 1.08s ease-in-out; /* 1.2s * 0.9 */
    z-index: 2;
}

.testimonial-divider.animate::before{
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
    max-width: 1080px; /* 1200px * 0.9 */
    margin: 0 auto;
}

.service-item {
    background: var(--white);
    padding: 27px 22.5px; /* 30px 25px * 0.9 */
    border-radius: 0px;
    text-align: left;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 135px; /* 150px * 0.9 */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border: 1px solid #f0f0f0;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--black);
    transition: left 0.4s ease;
    z-index: 1;
}

.service-item:hover::before {
    left: 0;
}

.service-item:hover {
    transform: translateY(-7.2px); /* 8px * 0.9 */
}

.service-icon {
    width: 54px; /* 60px * 0.9 */
    height: 54px; /* 60px * 0.9 */
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 18px 0; /* 20px * 0.9 */
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-icon svg {
    stroke: var(--black);
    transition: all 0.4s ease;
}

.service-item:hover .service-icon {
    background: var(--white);
}

.service-item:hover .service-icon svg {
    stroke: var(--black);
}

.service-title {
    font-size: 12.6px; /* 14px * 0.9 */
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.72px; /* 0.8px * 0.9 */
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    text-align: left;
    margin: 0;
}

.service-item:hover .service-title {
    color: var(--white);
}

/* Projects Section */
.projects-section {
    padding: 72px 18px; /* 80px 20px * 0.9 */
    background: #f5f5f5;
    color: var(--black);
}

.projects-container {
    max-width: 1080px; /* 1200px * 0.9 */
    margin: 0 auto;
}

.projects-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px; /* 80px * 0.9 */
    margin-bottom: 54px; /* 60px * 0.9 */
    align-items: start;
}

.projects-badge {
    display: inline-flex;
    align-items: center;
    gap: 7.2px; /* 8px * 0.9 */
    background: rgba(0, 0, 0, 0.1);
    padding: 7.2px 14.4px; /* 8px 16px * 0.9 */
    border-radius: 18px; /* 20px * 0.9 */
    font-size: 10.8px; /* 12px * 0.9 */
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.9px; /* 1px * 0.9 */
    margin-bottom: 27px; /* 30px * 0.9 */
}

.projects-badge svg {
    width: 14.4px; /* 16px * 0.9 */
    height: 14.4px; /* 16px * 0.9 */
    stroke: #666;
}

.projects-title {
    font-size: 39.6px; /* 44px * 0.9 */
    font-weight: 550;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 9px; /* 10px * 0.9 */
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.projects-title:last-of-type {
    margin-bottom: 0;
}

.projects-description-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.projects-description {
    font-size: 14.4px; /* 16px * 0.9 */
    line-height: 1.6;
    color: #666;
    margin-bottom: 36px; /* 40px * 0.9 */
    font-weight: 400;
    text-align: left;
}

.projects-cta {
    background: transparent;
    color: var(--black);
    border: 1.8px solid var(--black); /* 2px * 0.9 */
    padding: 12.6px 18px 12.6px 27px; /* 14px 20px 14px 30px * 0.9 */
    font-size: 11.7px; /* 13px * 0.9 */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10.8px; /* 12px * 0.9 */
    text-transform: uppercase;
    letter-spacing: 0.45px; /* 0.5px * 0.9 */
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.projects-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: var(--black);
    transition: right 0.4s ease;
    z-index: 1;
}

.projects-cta:hover::before {
    right: 0;
}

.projects-cta:hover {
    color: var(--white);
    transform: translateY(-1.8px); /* 2px * 0.9 */
}

.projects-cta span,
.projects-cta .projects-cta-icon {
    position: relative;
    z-index: 2;
}

.projects-cta-icon {
    background: var(--black);
    color: var(--white);
    width: 27px; /* 30px * 0.9 */
    height: 27px; /* 30px * 0.9 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12.6px; /* 14px * 0.9 */
    transition: transform 0.4s ease;
}

.projects-cta:hover .projects-cta-icon {
    transform: translateX(3.6px); /* 4px * 0.9 */
}

.projects-divider {
    width: 100%;
    height: 1.8px; /* 2px * 0.9 */
    background: #d0d0d0;
    margin-bottom: 54px; /* 60px * 0.9 */
    position: relative;
    overflow: hidden;
}

.projects-preview {
    display: flex;
    flex-direction: column;
    gap: 36px; /* 40px * 0.9 */
}

.project-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.project-card:hover {
    transform: translateY(-2.7px); /* 3px * 0.9 */
}

.project-card::after {
    content: '';
    position: absolute;
    bottom: -18px; /* 20px * 0.9 */
    left: 0;
    width: 100%;
    height: 1px;
    background: #d0d0d0;
}

.project-card:last-child::after {
    display: none;
}

.project-image {
    width: 100%;
    height: 315px; /* 350px * 0.9 */
    overflow: hidden;
    position: relative;
    border-radius: 7.2px; /* 8px * 0.9 */
    margin-bottom: 18px; /* 20px * 0.9 */
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.02);
}

.project-info {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 13.5px; /* 15px * 0.9 */
}

.project-name {
    font-size: 21.6px; /* 24px * 0.9 */
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.45px; /* 0.5px * 0.9 */
    line-height: 1.2;
}

.project-details {
    display: flex;
    gap: 27px; /* 30px * 0.9 */
}

.project-detail {
    display: flex;
    flex-direction: column;
    gap: 4.5px; /* 5px * 0.9 */
}

.detail-label {
    font-size: 9.9px; /* 11px * 0.9 */
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.9px; /* 1px * 0.9 */
}

.detail-value {
    font-size: 12.6px; /* 14px * 0.9 */
    font-weight: 500;
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
}

/* Quote Section */
.quote-section {
    background: var(--black);
    color: var(--white);
    min-height: 90vh; /* 100vh * 0.9 */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 90px 18px; /* 100px 20px * 0.9 */
}

.quote-container {
    max-width: 85.5vw; /* 95vw * 0.9 */
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.quote-content {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 3;
}

.quote-text {
    font-size: clamp(45px, 10.8vw, 49.5px); /* 50px, 12vw, 55px * 0.9 */
    font-weight: 550;
    line-height: 1.2;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.018em; /* 0.02em * 0.9 */
    margin: 0;
}

.quote-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.quote-image {
    position: absolute;
    border-radius: 18px; /* 20px * 0.9 */
    overflow: hidden;
    opacity: 0.4;
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.quote-image-1 {
    width: 360px; /* 400px * 0.9 */
    height: 450px; /* 500px * 0.9 */
    top: 13.5%; /* 15% * 0.9 */
    left: 7.2%; /* 8% * 0.9 */
    transform: rotate(-10.8deg); /* 12deg * 0.9 */
}

.quote-image-2 {
    width: 315px; /* 350px * 0.9 */
    height: 405px; /* 450px * 0.9 */
    bottom: 9%; /* 10% * 0.9 */
    right: 9%; /* 10% * 0.9 */
    transform: rotate(7.2deg); /* 8deg * 0.9 */
}

.quote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--black);
    color: var(--white);
    padding: 90px 18px; /* 100px 20px * 0.9 */
    position: relative;
}

.testimonials-container {
    max-width: 1080px; /* 1200px * 0.9 */
    margin: 0 auto;
}

.testimonials-header {
    display: grid;
    grid-template-columns: 180px 1fr 270px; /* 200px 1fr 300px * 0.9 */
    grid-template-rows: auto auto;
    gap: 27px 72px; /* 30px 80px * 0.9 */
    align-items: start;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 7.2px; /* 8px * 0.9 */
    background: rgba(255, 255, 255, 0.1);
    padding: 7.2px 14.4px; /* 8px 16px * 0.9 */
    border-radius: 18px; /* 20px * 0.9 */
    font-size: 10.8px; /* 12px * 0.9 */
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.9px; /* 1px * 0.9 */
}

.testimonials-badge svg {
    width: 14.4px !important; /* 16px * 0.9 */
    height: 14.4px !important; /* 16px * 0.9 */
    fill: var(--white);
}

.testimonials-title {
    font-size: 37.8px; /* 42px * 0.9 */
    font-weight: 500;
    line-height: 1.1;
    color: var(--white);
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.009em; /* 0.01em * 0.9 */
    grid-column: 1 / 3;
    grid-row: 2;
}

.testimonials-description {
    display: flex;
    flex-direction: column;
    gap: 36px; /* 40px * 0.9 */
    align-items: flex-end;
    text-align: right;
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
}

.testimonials-description p {
    font-size: 14.4px; /* 16px * 0.9 */
    line-height: 1.6;
    color: #ccc;
    font-weight: 400;
    margin: 0;
}

.testimonial-divider {
    width: 100%;
    height: 1.8px; /* 2px * 0.9 */
    background: var(--black);
    margin-bottom: 54px; /* 60px * 0.9 */
    margin-top: 54px; /* 60px * 0.9 */
    position: relative;
    overflow: hidden;
}

.testimonial-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--white);
    transition: width 1.08s ease-in-out; /* 1.2s * 0.9 */
    z-index: 2;
}

.testimonial-divider.animate::before {
    width: 100%;
}

.testimonials-cta {
    background: transparent;
    color: var(--white);
    border: 1.26px solid var(--white); /* 1.4px * 0.9 */
    padding: 10.8px 21.6px 10.8px 27px !important; /* 12px 24px 12px 30px * 0.9 */
    font-size: 12.6px !important; /* 14px * 0.9 */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10.8px !important; /* 12px * 0.9 */
    text-transform: uppercase;
    letter-spacing: 0.45px; /* 0.5px * 0.9 */
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.testimonials-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: right 0.4s ease;
    z-index: 1;
}

.testimonials-cta:hover::before {
    right: 0;
}

.testimonials-cta:hover {
    color: var(--black);
    transform: translateY(-1.8px); /* 2px * 0.9 */
}

.testimonials-cta span,
.testimonials-cta .testimonials-cta-icon {
    position: relative;
    z-index: 2;
}

.testimonials-cta-icon {
    background: var(--white);
    color: var(--black);
    width: 28.8px !important; /* 32px * 0.9 */
    height: 28.8px !important; /* 32px * 0.9 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13.5px !important; /* 15px * 0.9 */
    transition: transform 0.4s ease;
}

.testimonials-cta:hover .testimonials-cta-icon {
    transform: translateX(3.6px); /* 4px * 0.9 */
}

.testimonials-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 54px; /* 60px * 0.9 */
    margin-top: 72px; /* 80px * 0.9 */
}

/* Contact Banner Section */
.contact-banner-section {
    background: #f0f0f0;
    padding: 72px 0; /* 80px * 0.9 */
    overflow: hidden;
    position: relative;
}

.testimonial-item{
    display: flex;
    flex-direction: column;
    gap: 18px; /* 20px * 0.9 */
    align-items: center;
    text-align: left;
}

.contact-banner-container {
    width: 100%;
    position: relative;
}

.testimonial-photo{
    width: 72px; /* 80px * 0.9 */
    height: 72px; /* 80px * 0.9 */
    border-radius: 50%;
    overflow: hidden;
}

.scrolling-text {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.testimonial-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-title{
    font-size: 16.2px; /* 18px * 0.9 */
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.45px; /* 0.5px * 0.9 */
    line-height: 1.3;
    margin: 0;
    font-weight: 600;
    text-align: left;
}

.scrolling-text-content {
    display: inline-flex;
    align-items: center;
    gap: 54px; /* 60px * 0.9 */
    animation: scroll-horizontal 18s linear infinite; /* 20s * 0.9 */
    font-size: clamp(36px, 7.2vw, 72px); /* 40px, 8vw, 80px * 0.9 */
    font-weight: 700;
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.018em; /* 0.02em * 0.9 */
}

.testimonial-text{
    font-size: 14.4px; /* 16px * 0.9 */
    line-height: 1.6;
    color: #ccc;
    font-weight: 400;
    margin: 0;
    text-align: left;
}

.banner-text {
    display: inline-block;
    white-space: nowrap;
}

.banner-separator {
    display: inline-block;
    font-weight: 300;
    opacity: 0.6;
}

.testimonial-author{
    font-size: 10.8px; /* 12px * 0.9 */
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.9px; /* 1px * 0.9 */
    margin: 0;
    margin-top: 9px; /* 10px * 0.9 */
    text-align: left;
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-45%); /* 50% * 0.9 */
    }
}

/* Contact Section */
.contact-section {
    background-image: url('../assets/imgg3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 90px 18px; /* 100px 20px * 0.9 */
    min-height: 90vh; /* 100vh * 0.9 */
    display: flex;
    align-items: center;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.contact-container {
    max-width: 1080px; /* 1200px * 0.9 */
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 90px; /* 100px * 0.9 */
    align-items: start;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 54px; /* 60px * 0.9 */
    padding-top: 90px; /* 100px * 0.9 */
}

.contact-info-item {
    display: flex;
    gap: 18px; /* 20px * 0.9 */
    align-items: flex-start;
}

.contact-icon {
    width: 45px; /* 50px * 0.9 */
    height: 45px; /* 50px * 0.9 */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(9px); /* 10px * 0.9 */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-icon svg {
    stroke: var(--white);
    width: 18px; /* 20px * 0.9 */
    height: 18px; /* 20px * 0.9 */
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 7.2px; /* 8px * 0.9 */
}

.contact-label {
    font-size: 10.8px; /* 12px * 0.9 */
    font-weight: 600;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 0.9px; /* 1px * 0.9 */
}

.contact-value {
    font-size: 14.4px; /* 16px * 0.9 */
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

.contact-link {
    font-size: 10.8px; /* 12px * 0.9 */
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.45px; /* 0.5px * 0.9 */
    margin-top: 9px; /* 10px * 0.9 */
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ccc;
}

.contact-form-column {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(18px); /* 20px * 0.9 */
    border-radius: 14.4px; /* 16px * 0.9 */
    padding: 36px; /* 40px * 0.9 */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-header {
    margin-bottom: 36px; /* 40px * 0.9 */
}

.form-title {
    font-size: 21.6px; /* 24px * 0.9 */
    font-weight: 700;
    color: var(--black);
    margin-bottom: 13.5px; /* 15px * 0.9 */
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.45px; /* 0.5px * 0.9 */
}

.form-description {
    font-size: 12.6px; /* 14px * 0.9 */
    line-height: 1.6;
    color: #666;
    font-weight: 400;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22.5px; /* 25px * 0.9 */
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px; /* 20px * 0.9 */
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7.2px; /* 8px * 0.9 */
}

.form-label {
    font-size: 11.7px; /* 13px * 0.9 */
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.45px; /* 0.5px * 0.9 */
}

.form-input,
.form-select,
.form-textarea {
    padding: 10.8px 14.4px; /* 12px 16px * 0.9 */
    border: 1px solid #ddd;
    border-radius: 7.2px; /* 8px * 0.9 */
    font-size: 12.6px; /* 14px * 0.9 */
    font-family: 'Montserrat', sans-serif;
    background: var(--white);
    color: var(--black);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: 0 0 0 1.8px rgba(0, 0, 0, 0.1); /* 2px * 0.9 */
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
    font-weight: 400;
}

.form-select {
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 90px; /* 100px * 0.9 */
}

.form-submit-btn {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 14.4px 28.8px; /* 16px 32px * 0.9 */
    font-size: 10.8px; /* 12px * 0.9 */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 7.2px; /* 8px * 0.9 */
    text-transform: uppercase;
    letter-spacing: 0.45px; /* 0.5px * 0.9 */
    font-family: 'Montserrat', sans-serif;
    margin-top: 9px; /* 10px * 0.9 */
    align-self: stretch;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Footer - Diseño con Logo en Centro */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 54px 18px 27px; /* 60px 20px 30px * 0.9 */
}

.footer-container {
    max-width: 1080px; /* 1200px * 0.9 */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 36px; /* 40px * 0.9 */
}

/* Fila Superior: Contacto - Logo - Descripción */
.footer-top-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 45px; /* 50px * 0.9 */
    align-items: start;
    margin-bottom: 18px; /* 20px * 0.9 */
}

/* Contacto a la izquierda */
.footer-contact-left {
    display: flex;
    flex-direction: column;
    gap: 10.8px; /* 12px * 0.9 */
    align-items: flex-start;
    text-align: left;
    padding-left: 117px; /* 130px * 0.9 */
}

.contact-info-item-left {
    display: flex;
    align-items: center;
    gap: 9px; /* 10px * 0.9 */
    color: #ccc;
    font-size: 12.6px; /* 14px * 0.9 */
    font-weight: 400;
    line-height: 1.4;
    justify-content: flex-start;
}

.contact-info-item-left svg {
    flex-shrink: 0;
    stroke: #ccc;
    width: 14.4px; /* 16px * 0.9 */
    height: 14.4px; /* 16px * 0.9 */
}

/* Logo en el centro */
.footer-brand-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13.5px; /* 15px * 0.9 */
    justify-self: center;
}

.footer-logo-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10.8px; /* 12px * 0.9 */
}

.footer-logo-img-large {
    height: 63px; /* 70px * 0.9 */
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo-text-large {
    font-size: 25.2px; /* 28px * 0.9 */
    font-weight: 700;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1.35px; /* 1.5px * 0.9 */
}

/* Descripción a la derecha */
.footer-description-right {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 45px; /* 50px * 0.9 */
}

.footer-description-right p {
    font-size: 12.6px; /* 14px * 0.9 */
    line-height: 1.5;
    color: #ccc;
    font-weight: 400;
    margin: 0;
    max-width: 360px; /* 400px * 0.9 */
}

/* Redes Sociales Centradas */
.footer-social-center {
    display: flex;
    gap: 13.5px; /* 15px * 0.9 */
    justify-content: center;
    align-items: center;
}

.social-link-center {
    width: 36px; /* 40px * 0.9 */
    height: 36px; /* 40px * 0.9 */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(9px); /* 10px * 0.9 */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link-center:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-1.8px); /* 2px * 0.9 */
}

/* Footer Bottom Centrado */
.footer-bottom-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13.5px; /* 15px * 0.9 */
    padding-top: 27px; /* 30px * 0.9 */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 450px; /* 500px * 0.9 */
    margin: 0 auto;
}

.footer-copyright-center {
    font-size: 11.7px; /* 13px * 0.9 */
    color: #999;
    font-weight: 400;
    margin: 0;
}

.footer-bottom-links-center {
    display: flex;
    gap: 18px; /* 20px * 0.9 */
}

.footer-bottom-link-center {
    color: #999;
    text-decoration: none;
    font-size: 11.7px; /* 13px * 0.9 */
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-bottom-link-center:hover {
    color: var(--white);
}

/* Botones CTA unificados - Desktop (alineación original) */
.hero-cta,
.services-cta,
.projects-cta,
.testimonials-cta {
    background: transparent;
    color: var(--black);
    border: 1.35px solid var(--black); /* 1.5px * 0.9 */
    padding: 9px 16.2px 9px 21.6px !important; /* 10px 18px 10px 24px * 0.9 */
    font-size: 9.9px !important; /* 11px * 0.9 */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 9px !important; /* 10px * 0.9 */
    text-transform: uppercase;
    letter-spacing: 0.45px; /* 0.5px * 0.9 */
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
    min-width: 162px; /* 180px * 0.9 */
    justify-content: space-between;
    text-decoration: none;
}

/* Estados hover para botones claros */
.hero-cta::before,
.services-cta::before,
.projects-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: var(--black);
    transition: right 0.4s ease;
    z-index: 1;
}

.hero-cta:hover::before,
.services-cta:hover::before,
.projects-cta:hover::before {
    right: 0;
}

.hero-cta:hover,
.services-cta:hover,
.projects-cta:hover {
    color: var(--white);
    transform: translateY(-1.8px); /* 2px * 0.9 */
}

.hero-cta span,
.services-cta span,
.projects-cta span,
.testimonials-cta span,
.hero-cta .cta-icon,
.services-cta .services-cta-icon,
.projects-cta .projects-cta-icon {
    position: relative;
    z-index: 2;
}

/* Iconos de botones claros */
.cta-icon,
.services-cta-icon,
.projects-cta-icon {
    background: var(--black);
    color: var(--white);
    width: 23.4px !important; /* 26px * 0.9 */
    height: 23.4px !important; /* 26px * 0.9 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10.8px !important; /* 12px * 0.9 */
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.hero-cta:hover .cta-icon,
.services-cta:hover .services-cta-icon,
.projects-cta:hover .projects-cta-icon {
    transform: translateX(2.7px); /* 3px * 0.9 */
}

/* Botón testimonials (fondo oscuro) */
.testimonials-cta {
    background: transparent;
    color: var(--white);
    border: 1.35px solid var(--white); /* 1.5px * 0.9 */
    padding: 9px 16.2px 9px 21.6px !important; /* 10px 18px 10px 24px * 0.9 */
    font-size: 9.9px !important; /* 11px * 0.9 */
}

.testimonials-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: right 0.4s ease;
    z-index: 1;
}

.testimonials-cta:hover::before {
    right: 0;
}

.testimonials-cta:hover {
    color: var(--black);
    transform: translateY(-1.8px); /* 2px * 0.9 */
}

.testimonials-cta-icon {
    background: var(--white);
    color: var(--black);
    width: 23.4px !important; /* 26px * 0.9 */
    height: 23.4px !important; /* 26px * 0.9 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10.8px !important; /* 12px * 0.9 */
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.testimonials-cta:hover .testimonials-cta-icon {
    transform: translateX(2.7px); /* 3px * 0.9 */
}

/* Ajustes específicos para mantener consistencia */
.services-cta {
    margin-top: 9px; /* 10px * 0.9 */
}

.projects-cta {
    margin-top: 9px; /* 10px * 0.9 */
}

.testimonials-cta {
    margin-top: 9px; /* 10px * 0.9 */
}

/* RESPONSIVE - Centrado solo a partir de 768px */
@media (max-width: 768px) {
    body {
        transform: none;
        width: 100%;
    }
    
    .hero-cta,
    .services-cta,
    .projects-cta,
    .testimonials-cta {
        padding: 7.2px 14.4px 7.2px 18px !important; /* 8px 16px 8px 20px * 0.9 */
        font-size: 9px !important; /* 10px * 0.9 */
        min-width: 144px; /* 160px * 0.9 */
        gap: 7.2px !important; /* 8px * 0.9 */
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
    }
    
    .cta-icon,
    .services-cta-icon,
    .projects-cta-icon,
    .testimonials-cta-icon {
        width: 21.6px !important; /* 24px * 0.9 */
        height: 21.6px !important; /* 24px * 0.9 */
        font-size: 9.9px !important; /* 11px * 0.9 */
    }
    
    /* Contenedores centrados SOLO en responsive */
    .hero-right,
    .services-description-area,
    .projects-description-area,
    .testimonials-description {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    /* Texto descriptivo centrado SOLO en responsive */
    .hero-description,
    .services-description,
    .projects-description,
    .testimonials-description p {
        text-align: center !important;
    }
    
    /* Ajustes específicos para hero en responsive */
    .hero-right {
        align-items: center !important;
        max-width: 100% !important;
    }
    
    .hero-description {
        margin-bottom: 22.5px !important; /* 25px * 0.9 */
    }
}

@media (max-width: 480px) {
    .hero-cta,
    .services-cta,
    .projects-cta,
    .testimonials-cta {
        padding: 6.3px 12.6px 6.3px 16.2px !important; /* 7px 14px 7px 18px * 0.9 */
        font-size: 8.1px !important; /* 9px * 0.9 */
        min-width: 126px; /* 140px * 0.9 */
        gap: 5.4px !important; /* 6px * 0.9 */
    }
    
    .cta-icon,
    .services-cta-icon,
    .projects-cta-icon,
    .testimonials-cta-icon {
        width: 19.8px !important; /* 22px * 0.9 */
        height: 19.8px !important; /* 22px * 0.9 */
        font-size: 9px !important; /* 10px * 0.9 */
    }
}

/* RESPONSIVE */

/* Responsive Design - Escalado al 90% */
@media (max-width: 1024px) {
    .hero {
        padding: 63px 18px 45px; /* 70px 20px 50px * 0.9 */
    }
    
    .hero-content {
        gap: 54px; /* 60px * 0.9 */
    }
    
    .hero-subtitle {
        font-size: 21.6px; /* 24px * 0.9 */
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.9px; /* 1px * 0.9 */
    }
    
    .stat-item {
        padding: 45px 22.5px; /* 50px 25px * 0.9 */
    }
    
    .stat-number {
        font-size: 3.15rem; /* 3.5rem * 0.9 */
    }
    
    .services-header {
        gap: 54px; /* 60px * 0.9 */
    }
    
    .services-title {
        font-size: 36px; /* 40px * 0.9 */
    }
    
    .projects-header {
        gap: 54px; /* 60px * 0.9 */
    }
    
    .projects-title {
        font-size: 34.2px; /* 38px * 0.9 */
    }

    .projects-description {
        font-size: 13.5px; /* 15px * 0.9 */
    }
    
    .project-image {
        height: 360px; /* 400px * 0.9 */
    }
    
    .project-name {
        font-size: 21.6px; /* 24px * 0.9 */
    }
    
    .project-info {
        gap: 27px; /* 30px * 0.9 */
    }
    
    .testimonials-section {
        padding: 72px 18px; /* 80px 20px * 0.9 */
    }
    
    .testimonials-header {
        grid-template-columns: 162px 1fr 252px; /* 180px 1fr 280px * 0.9 */
        grid-template-rows: auto auto;
        gap: 22.5px 54px; /* 25px 60px * 0.9 */
    }
    
    .testimonials-title {
        font-size: 32.4px !important; /* 36px * 0.9 */
    }

    .quote-section {
        padding: 72px 18px; /* 80px 20px * 0.9 */
        min-height: 72vh; /* 80vh * 0.9 */
    }
    
    .quote-text {
        font-size: clamp(36px, 9vw, 45px); /* 40px, 10vw, 50px * 0.9 */
        line-height: 1.2;
    }

    .contact-content{
        gap: 54px; /* 60px * 0.9 */
    }
    .contact-info-column{
        padding-top: 54px; /* 60px * 0.9 */
    }
    .contact-form-column{
        padding: 31.5px; /* 35px * 0.9 */
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .mobile-menu-overlay {
        display: block;
    }
    
    .hero {
        padding: 54px 13.5px 36px; /* 60px 15px 40px * 0.9 */
        min-height: 100vh;
        text-align: center;
    }
    
    .hero-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: calc(100vh - 90px); /* 100px * 0.9 */
    }
    
    .hero-title {
        margin-bottom: 27px; /* 30px * 0.9 */
        margin-top: 0;
    }
    
    .hero-text {
        font-size: clamp(90px, 22.5vw, 162px) !important; /* 100px, 25vw, 180px * 0.9 */
        margin-bottom: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 27px; /* 30px * 0.9 */
        text-align: center;
        max-width: 360px; /* 400px * 0.9 */
        width: 100%;
        margin-top: 0;
    }
    
    .hero-left {
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 29.7px !important; /* 33px * 0.9 */
        font-weight: 550;
        margin-bottom: 18px; /* 20px * 0.9 */
        line-height: 1.3;
        text-align: center;
    }
    
    .hero-period {
        font-size: 45px !important; /* 50px * 0.9 */
        font-weight: 800 !important;
    }
    
    .hero-right {
        justify-self: center;
        max-width: 100%;
        padding-top: 0;
        padding-left: 0;
        text-align: center;
    }
    
    .hero-description {
        font-size: 12.6px; /* 14px * 0.9 */
        line-height: 1.5;
        margin-bottom: 22.5px; /* 25px * 0.9 */
        text-align: center;
    }
    
    .hero-cta {
        align-self: center;
    }
    
    .stats-section {
        padding: 54px 13.5px; /* 60px 15px * 0.9 */
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10.8px; /* 12px * 0.9 */
        max-width: 360px; /* 400px * 0.9 */
        margin: -1.8rem auto; /* 2rem * 0.9 */
    }
    
    .stat-item {
        padding: 22.5px 13.5px; /* 25px 15px * 0.9 */
        height: 108px; /* 120px * 0.9 */
        border-radius: 10.8px; /* 12px * 0.9 */
    }
    
    .stat-number {
        font-size: 2.25rem; /* 2.5rem * 0.9 */
    }
    
    .stat-label {
        font-size: 9px; /* 10px * 0.9 */
        letter-spacing: 0.45px; /* 0.5px * 0.9 */
    }
    
    .services-section {
        padding: 54px 13.5px; /* 60px 15px * 0.9 */
    }
    
    .services-header {
        grid-template-columns: 1fr;
        gap: 36px; /* 40px * 0.9 */
        margin-bottom: 36px; /* 40px * 0.9 */
        text-align: left;
    }

    .services-title-area {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .services-badge {
        font-size: 9.9px; /* 11px * 0.9 */
        margin-bottom: 22.5px; /* 25px * 0.9 */
        justify-content: center;
    }

    .services-title {
        font-size: 28.8px !important; /* 32px * 0.9 */
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 13.5px; /* 15px * 0.9 */
        text-align: center;
    }
    
    .services-subtitle {
        font-size: 14.4px !important; /* 16px * 0.9 */
        font-weight: 400;
        line-height: 1.4;
        text-align: center;
    }

    .services-description-area {
        align-items: center !important;
        text-align: center !important;
    }
    
    .services-description {
        font-size: 13.5px !important; /* 15px * 0.9 */
        line-height: 1.5;
        margin-bottom: 27px; /* 30px * 0.9 */
        text-align: center;
        max-width: 450px; /* 500px * 0.9 */
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 13.5px !important; /* 15px * 0.9 */
    }
    
    .service-item {
        padding: 18px 13.5px !important; /* 20px 15px * 0.9 */
        min-height: 117px !important; /* 130px * 0.9 */
        text-align: center !important;
        align-items: center !important;
    }
    
    .service-icon {
        width: 45px !important; /* 50px * 0.9 */
        height: 45px !important; /* 50px * 0.9 */
        margin: 0 auto 13.5px auto !important; /* 15px * 0.9 */
    }
    
    .service-title {
        font-size: 10.8px !important; /* 12px * 0.9 */
        text-align: center !important;
    }    
    
    .projects-section {
        padding: 54px 13.5px; /* 60px 15px * 0.9 */
    }
    
    .projects-header {
        grid-template-columns: 1fr;
        gap: 36px; /* 40px * 0.9 */
        margin-bottom: 36px; /* 40px * 0.9 */
        text-align: center;
    }
    
    .projects-title-area {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .projects-badge {
        font-size: 9.9px; /* 11px * 0.9 */
        margin-bottom: 22.5px; /* 25px * 0.9 */
        justify-content: center;
    }
    
    .projects-title {
        font-size: 28.8px !important; /* 32px * 0.9 */
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 7.2px; /* 8px * 0.9 */
        text-align: center;
    }
    
    .projects-title:last-of-type {
        margin-bottom: 0;
    }
    
    .projects-description-area {
        align-items: center !important;
        text-align: center !important;
    }
    
    .projects-description {
        font-size: 13.5px !important; /* 15px * 0.9 */
        line-height: 1.5;
        margin-bottom: 27px; /* 30px * 0.9 */
        text-align: center;
        max-width: 450px; /* 500px * 0.9 */
    }
    
    .testimonials-section {
        padding: 54px 13.5px; /* 60px 15px * 0.9 */
        text-align: center;
    }
    
    .testimonials-header {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto auto !important;
        gap: 27px !important; /* 30px * 0.9 */
        text-align: left !important;
    }
    
    .testimonials-badge {
        font-size: 9.9px !important; /* 11px * 0.9 */
        justify-content: center !important;
        grid-column: 1 !important;
        grid-row: 1 !important;
        margin: 0 auto !important;
        display: flex !important;
        width: fit-content !important;
    }
    
    .testimonials-title {
        font-size: 25.2px !important; /* 28px * 0.9 */
        font-weight: 600;
        line-height: 1.2;
        text-align: left !important;
        grid-column: 1 !important;
        grid-row: 2 !important;
    }
    
    .testimonials-description {
        align-items: center !important;
        text-align: center !important;
        gap: 22.5px !important; /* 25px * 0.9 */
        grid-column: 1 !important;
        grid-row: 3 !important;
        align-self: center !important;
    }
    
    .testimonials-description p {
        font-size: 13.5px !important; /* 15px * 0.9 */
        line-height: 1.5;
        text-align: center !important;
        max-width: 450px; /* 500px * 0.9 */
    }

    .testimonial-divider {
        margin: 36px 0 !important; /* 40px * 0.9 */
    }

    
    .testimonials-content {
        grid-template-columns: 1fr !important;
        gap: 36px !important; /* 40px * 0.9 */
        margin-top: 36px !important; /* 40px * 0.9 */
    }

    .testimonial-item{
        align-items: center !important;
        text-align: center !important;
        gap: 13.5px !important; /* 15px * 0.9 */
    }
    
    .testimonial-photo {
        width: 63px !important; /* 70px * 0.9 */
        height: 63px !important; /* 70px * 0.9 */
    }

    .testimonial-title {
        font-size: 14.4px !important; /* 16px * 0.9 */
        line-height: 1.3;
        text-align: center !important;
    }
    
    .testimonial-text {
        font-size: 13.5px !important; /* 15px * 0.9 */
        line-height: 1.5;
        text-align: center !important;
    }

    .testimonial-author {
        font-size: 9.9px !important; /* 11px * 0.9 */
        text-align: center !important;
    }

    .quote-section {
        padding: 54px 13.5px; /* 60px 15px * 0.9 */
        min-height: 72vh; /* 80vh * 0.9 */
        text-align: center;
    }
    
    .quote-container {
        max-width: 100%;
    }
    
    .quote-content {
        padding: 0 9px; /* 10px * 0.9 */
    }
    
    .quote-text {
        font-size: clamp(28.8px, 7.2vw, 37.8px) !important; /* 32px, 8vw, 42px * 0.9 */
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: -0.009em; /* 0.01em * 0.9 */
        text-align: center;
    }

    .footer {
        padding: 45px 13.5px 22.5px; /* 50px 15px 25px * 0.9 */
        text-align: center;
    }
    
    .footer-top-row {
        grid-template-columns: 1fr;
        gap: 31.5px; /* 35px * 0.9 */
        text-align: center;
        grid-template-areas: 
            "logo"
            "description"
            "contact";
    }
    
    .footer-brand-center {
        grid-area: logo;
        align-items: center;
    }
    
    .footer-description-right {
        grid-area: description;
        text-align: center;
        justify-content: center;
        padding-right: 0;
    }
    
    .footer-contact-left {
        grid-area: contact;
        align-items: center;
        text-align: center;
        padding-left: 0;
    }
    
    .contact-info-item-left {
        justify-content: center;
    }
    
    .footer-container {
        gap: 31.5px; /* 35px * 0.9 */
    }
    
    .footer-logo-img-large {
        height: 58.5px !important; /* 65px * 0.9 */
    }
    
    .footer-logo-text-large {
        font-size: 23.4px !important; /* 26px * 0.9 */
    }
    
    .footer-description-right p {
        font-size: 13.5px !important; /* 15px * 0.9 */
        line-height: 1.6;
        max-width: 450px; /* 500px * 0.9 */
        margin: 0 auto;
    }
    
    .contact-info-item-left {
        font-size: 13.5px; /* 15px * 0.9 */
    }

    .contact-section{
        padding: 54px 13.5px; /* 60px 15px * 0.9 */
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 45px; /* 50px * 0.9 */
    }
    
    .contact-info-column {
        gap: 45px; /* 50px * 0.9 */
        padding-top: 0;
    }
    
    .contact-details {
        align-items: center;
        text-align: center;
    }
    
    .contact-link {
        margin-top: 4.5px; /* 5px * 0.9 */
    }
    
    .contact-form-column {
        padding: 27px 22.5px; /* 30px 25px * 0.9 */
    }

    .form-title {
        font-size: 18px; /* 20px * 0.9 */
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 18px; /* 20px * 0.9 */
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 45px 13.5px 27px; /* 50px 15px 30px * 0.9 */
    }
    
    .hero-content {
        gap: 27px; /* 30px * 0.9 */
    }
    
    .hero-subtitle {
        font-size: 16.2px; /* 18px * 0.9 */
        font-weight: 700 !important;
    }
    
    .hero-period {
        font-size: 45px !important; /* 50px * 0.9 */
        font-weight: 800 !important;
    }
    
    .hero-description {
        font-size: 13.5px; /* 15px * 0.9 */
        margin-bottom: 27px; /* 30px * 0.9 */
    }
    
    .hero-cta {
        padding: 14.4px 28.8px; /* 16px 32px * 0.9 */
        font-size: 11.7px; /* 13px * 0.9 */
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px; /* 10px * 0.9 */
        max-width: 315px; /* 350px * 0.9 */
        margin: -1.8rem auto; /* 2rem * 0.9 */
    }
    
    .stat-item {
        padding: 18px 10.8px; /* 20px 12px * 0.9 */
        height: 90px; /* 100px * 0.9 */
        border-radius: 9px; /* 10px * 0.9 */
    }
    
    .stat-number {
        font-size: 1.8rem; /* 2rem * 0.9 */
    }
    
    .stat-label {
        font-size: 8.1px; /* 9px * 0.9 */
        letter-spacing: 0.27px; /* 0.3px * 0.9 */
    }

    .services-section {
        padding: 45px 13.5px; /* 50px 15px * 0.9 */
    }
    
    .services-header {
        gap: 27px; /* 30px * 0.9 */
        margin-bottom: 27px; /* 30px * 0.9 */
    }
    
    .services-title {
        font-size: 23.4px !important; /* 26px * 0.9 */
        font-weight: 650;
        line-height: 1.2;
        margin-bottom: 10.8px; /* 12px * 0.9 */
    }

    .services-badge {
        font-size: 9px; /* 10px * 0.9 */
        padding: 5.4px 10.8px; /* 6px 12px * 0.9 */
        margin-bottom: 18px; /* 20px * 0.9 */
    }
    
    .services-badge svg {
        width: 12.6px; /* 14px * 0.9 */
        height: 12.6px; /* 14px * 0.9 */
    }

    .services-subtitle {
        font-size: 12.6px !important; /* 14px * 0.9 */
        line-height: 1.4;
    }
    
    .services-description {
        font-size: 12.6px !important; /* 14px * 0.9 */
        line-height: 1.5;
        margin-bottom: 22.5px; /* 25px * 0.9 */
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 10.8px !important; /* 12px * 0.9 */
    }

    .service-item {
        padding: 16.2px 10.8px !important; /* 18px 12px * 0.9 */
        min-height: 108px !important; /* 120px * 0.9 */
    }
    
    .service-icon {
        width: 40.5px !important; /* 45px * 0.9 */
        height: 40.5px !important; /* 45px * 0.9 */
        margin-bottom: 10.8px !important; /* 12px * 0.9 */
    }
    
    .service-title {
        font-size: 9.9px !important; /* 11px * 0.9 */
        letter-spacing: 0.45px !important; /* 0.5px * 0.9 */
    }
    
    .projects-section {
        padding: 45px 13.5px; /* 50px 15px * 0.9 */
    }
    
    .projects-header {
        gap: 27px; /* 30px * 0.9 */
        margin-bottom: 27px; /* 30px * 0.9 */
    }
    
    .projects-badge {
        font-size: 9px; /* 10px * 0.9 */
        padding: 5.4px 10.8px; /* 6px 12px * 0.9 */
        margin-bottom: 18px; /* 20px * 0.9 */
    }
    
    .projects-badge svg {
        width: 12.6px; /* 14px * 0.9 */
        height: 12.6px; /* 14px * 0.9 */
    }
    
    .projects-title {
        font-size: 23.4px !important; /* 26px * 0.9 */
        font-weight: 650;
        line-height: 1.2;
        margin-bottom: 5.4px; /* 6px * 0.9 */
    }
    
    .projects-description {
        font-size: 12.6px !important; /* 14px * 0.9 */
        line-height: 1.5;
        margin-bottom: 22.5px; /* 25px * 0.9 */
    }
    
    .detail-label {
        font-size: 9px; /* 10px * 0.9 */
    }
    
    .detail-value {
        font-size: 11.7px; /* 13px * 0.9 */
    }
    
    .testimonials-section {
        padding: 45px 13.5px; /* 50px 15px * 0.9 */
    }
    
    .testimonials-header {
        gap: 22.5px !important; /* 25px * 0.9 */
    }

    .testimonials-badge {
        font-size: 9px !important; /* 10px * 0.9 */
        padding: 5.4px 10.8px !important; /* 6px 12px * 0.9 */
    }
    
    .testimonials-badge svg {
        width: 12.6px !important; /* 14px * 0.9 */
        height: 12.6px !important; /* 14px * 0.9 */
    }

    .testimonials-title {
        font-size: 21.6px !important; /* 24px * 0.9 */
        font-weight: 650;
        line-height: 1.2;   
        text-align: center !important; 
    }
    
    .testimonials-description p {
        font-size: 12.6px !important; /* 14px * 0.9 */
        line-height: 1.5;
    }
    
    .testimonials-cta {
        padding: 4.5px 13.5px 4.5px 18px; /* 5px 15px 5px 20px * 0.9 */
        font-size: 9.9px; /* 11px * 0.9 */
    }
    
    .testimonials-content {
        gap: 27px !important; /* 30px * 0.9 */
        margin-top: 27px !important; /* 30px * 0.9 */
    }

    .testimonial-item {
        gap: 10.8px !important; /* 12px * 0.9 */
    }

    .testimonial-photo {
        width: 54px !important; /* 60px * 0.9 */
        height: 54px !important; /* 60px * 0.9 */
    }
    
    .testimonial-title {
        font-size: 12.6px !important; /* 14px * 0.9 */
        line-height: 1.3;
    }
    
    .testimonial-text {
        font-size: 12.6px !important; /* 14px * 0.9 */
        line-height: 1.5;
    }
    
    .testimonial-author {
        font-size: 9px !important; /* 10px * 0.9 */
        margin-top: 7.2px !important; /* 8px * 0.9 */
    }
    
    .testimonials-cta {
        padding: 7.2px 16.2px 7.2px 19.8px !important; /* 8px 18px 8px 22px * 0.9 */
        font-size: 10.8px !important; /* 12px * 0.9 */
        gap: 7.2px !important; /* 8px * 0.9 */
    }
    
    .testimonials-cta-icon {
        width: 25.2px !important; /* 28px * 0.9 */
        height: 25.2px !important; /* 28px * 0.9 */
        font-size: 11.7px !important; /* 13px * 0.9 */
    }

    .quote-image{
        height: 100%;
        width: 100%;
    }

    .footer {
        padding: 36px 13.5px 18px; /* 40px 15px 20px * 0.9 */
    }
    
    .footer-top-row {
        gap: 27px; /* 30px * 0.9 */
    }
    
    .footer-logo-img-large {
        height: 54px !important; /* 60px * 0.9 */
    }
    
    .footer-logo-text-large {
        font-size: 21.6px !important; /* 24px * 0.9 */
    }
    
    .footer-description-right p {
        font-size: 12.6px !important; /* 14px * 0.9 */
        line-height: 1.5;
    }
    
    .contact-info-item-left {
        font-size: 12.6px; /* 14px * 0.9 */
        gap: 7.2px; /* 8px * 0.9 */
    }
    
    .contact-info-item-left svg {
        width: 12.6px; /* 14px * 0.9 */
        height: 12.6px; /* 14px * 0.9 */
    }
    
    .footer-bottom-links-center {
        flex-direction: column;
        gap: 7.2px; /* 8px * 0.9 */
    }

    .contact-section{
        padding: 45px 13.5px; /* 50px 15px * 0.9 */
    }

    .contact-info-item {
        gap: 13.5px; /* 15px * 0.9 */
    }
    
    .contact-icon {
        width: 36px; /* 40px * 0.9 */
        height: 36px; /* 40px * 0.9 */
    }
    
    .contact-icon svg {
        width: 14.4px; /* 16px * 0.9 */
        height: 14.4px; /* 16px * 0.9 */
    }
    
    .contact-label {
        font-size: 9.9px; /* 11px * 0.9 */
    }

    .contact-details {
        gap: 5.4px; /* 6px * 0.9 */
        align-items: baseline;
    }
    
    .contact-value {
        font-size: 12.6px; /* 14px * 0.9 */
    }
    
    .contact-link {
        font-size: 9.9px; /* 11px * 0.9 */
    }
    
    .contact-form-column {
        padding: 22.5px 18px; /* 25px 20px * 0.9 */
    }

    .form-title {
        font-size: 16.2px; /* 18px * 0.9 */
    }

    .form-description{
        font-size: 11.7px; /* 13px * 0.9 */
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 9px 12.6px; /* 10px 14px * 0.9 */
        font-size: 11.7px; /* 13px * 0.9 */
    }

    .form-submit-btn {
        padding: 12.6px 25.2px; /* 14px 28px * 0.9 */
        font-size: 9.9px; /* 11px * 0.9 */
    }
}
