/* Variables globales */
:root {
    --font-primary: 'Roboto', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    --color-background: #1e2226;
    --color-text: #ffffff;
    --color-dark: #f5f5f5;
    --color-offers: #e94e77;
    --color-work: #1a9cb0;
    --color-thinking: #f06292;
    --color-about: #6a4c93;
    --color-leaders: #ff7043;
    --color-careers: #4caf50;
    --color-contact: #d32f2f;
    --transition-default: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    background-color: var(--color-background);
    color: var(--color-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* Header y navegación */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    z-index: 1000;
    transition: var(--transition-default);
    background-color: rgba(33, 37, 41, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: none;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-right: 1.5rem;
}

.header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #458f25;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.header-icon:hover {
    transform: scale(1.2);
}

.header-icon img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
    filter: brightness(0) saturate(100%) invert(48%) sepia(91%) saturate(401%) hue-rotate(71deg) brightness(95%) contrast(86%);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.logo img {
    height: 27.5px;
    width: auto;
    max-width: 180px;
    transition: var(--transition-default);
}

.header-right {
    display: flex;
    align-items: center;
}

.search-icon {
    margin-right: 20px;
    cursor: pointer;
}

.search-icon img {
    width: 24px;
    height: 24px;
}

/* Selector de idioma */
.language-selector {
    position: relative;
    cursor: pointer;
}

.language-selector img {
    width: 24px;
    height: 24px;
    transition: var(--transition-default);
}

.language-selector:hover img {
    transform: scale(1.2);
    filter: brightness(1.2) contrast(1.2);
}

.language-options {
    position: absolute;
    top: 100%;
    right: -10px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-default);
}

.language-selector:hover .language-options {
    opacity: 1;
    visibility: visible;
}

.language-option {
    padding: 8px 16px;
    display: flex;
    align-items: center;
}

.language-option:hover {
    background: #f5f5f5;
}

.language-option img {
    margin-right: 8px;
}

/* Menú hamburguesa */
.menu-toggle {
    position: relative;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #458f25;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: var(--transition-default);
}

.menu-toggle span:nth-child(1) {
    top: 0px;
}

.menu-toggle span:nth-child(2) {
    top: 10px;
}

.menu-toggle span:nth-child(3) {
    top: 20px;
}

/* Animación del menú hamburguesa cuando está activo */
.menu-toggle.active span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
}

/* Overlay del menú */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 53, 57, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-default);
}

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

/* Contenedor del menú */
.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    max-width: 1200px;
    width: 90%;
    padding: 40px 0;
}

/* Sección de metodología */
.methodology-section p {
    margin: 1rem 0;
    padding: 50px 1.5rem;
    line-height: var(--line-height-relaxed);
}

/* Secciones del menú */
.menu-section {
    display: flex;
    flex-direction: column;
}

.menu-section h2 {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 30px;
    opacity: 0.7;
}

/* Enlaces del menú */
.menu-link {
    font-size: 40px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    transition: var(--transition-default);
    transform: translateY(20px);
    opacity: 0;
}

.menu-overlay.active .menu-link {
    transform: translateY(0);
    opacity: 1;
    transition-delay: calc(0.1s * var(--index, 0));
}

/* Efecto de borde para los enlaces */
.menu-link:hover {
    transform: translateX(10px);
}

/* Colores específicos para cada enlace */

/* Enlaces sociales */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-default);
}

.social-link:hover {
    transform: scale(1.1);
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: #ffffff;
    transition: var(--transition-default);
}

/* Colores específicos para cada red social */
.social-link.linkedin:hover .social-icon {
    fill: #0077B5;
}

.social-link.instagram:hover .social-icon {
    fill: #E4405F;
}

.social-link.twitter:hover .social-icon {
    fill: #1DA1F2;
}

.social-link.facebook:hover .social-icon {
    fill: #1877F2;
}

.social-link.youtube:hover .social-icon {
    fill: #FF0000;
}

/* Contenido principal */
main {
    padding-top: 0;
}

/* Sección Hero */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: var(--color-dark);
}

.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    z-index: 0;
}

.parallax-layer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.hero-content {
    text-align: center;
    max-width: 1500px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 0 20px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: var(--font-secondary);
    font-size: var(--font-size-4xl);
    font-weight: 700;
    line-height: var(--line-height-tight);
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 24px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--color-background);
    color: var(--color-dark);
    font-size: 18px;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition-default);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    40% {
        transform: translateY(-20px) rotate(45deg);
    }

    60% {
        transform: translateY(-10px) rotate(45deg);
    }
}

/* Secciones generales */
.section {
    padding: 100px 0;
    position: relative;
}

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

.section-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    line-height: var(--line-height-tight);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.01em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: currentColor;
}

/* Sección Casos de Estudio */
.case-studies-section {
    background-color: var(--color-background);
    padding: 100px 0;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.case-card {
    background-color: var(--color-background);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-default);
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.case-image {
    height: 300px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-default);
}

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

.case-content {
    padding: 30px;
}

.case-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.case-content p {
    color: var(--color-text);
    line-height: 1.6;
}

/* Sección Innovación */
.innovation-section {
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.innovation-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.innovation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.innovation-section .section-container {
    position: relative;
    z-index: 2;
}

.innovation-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.innovation-text h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.innovation-text p {
    font-size: 18px;
    line-height: 1.6;
}

/* Sección Metodología */
.methodology-section {
    background-color: var(--color-background);
    padding: 100px 0;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.methodology-card {
    text-align: center;
    padding: 40px;
    background-color: var(--color-background);
    border-radius: 8px;
    transition: var(--transition-default);
}

.methodology-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.methodology-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.methodology-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.methodology-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.methodology-card p {
    color: var(--color-text);
    line-height: 1.6;
}

/* Sección Impacto Global */
.impact-section {
    background-color: var(--color-dark);
    color: #ffffff;
    padding: 100px 0;
}

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

.stat-card {
    text-align: center;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: var(--transition-default);
}

.stat-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-card h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.stat-card p {
    font-size: 18px;
    opacity: 0.9;
}

/* Sección Offers */
.offers-section {
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.offers-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offers-section .section-container {
    position: relative;
    z-index: 2;
    color: #ffffff;
    width: 100%;
}

.offers-section .section-title {
    color: var(--color-offers);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    transition: var(--transition-default);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Sección Work */
.work-section {
    background-color: var(--color-background);
}

.work-section .section-title {
    color: var(--color-work);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.project-card {
    background-color: var(--color-background);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-default);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-default);
}

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

.project-card h3 {
    font-size: 20px;
    padding: 20px 20px 10px;
}

.project-card p {
    padding: 0 20px 20px;
}

/* Sección Thinking */
.thinking-section {
    background-color: var(--color-background);
}

.thinking-section .section-title {
    color: var(--color-thinking);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.article-card {
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-default);
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-default);
}

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

.article-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.article-content p {
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    align-self: flex-start;
    color: var(--color-thinking);
    font-weight: 500;
    position: relative;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-thinking);
    transition: var(--transition-default);
}

.read-more:hover::after {
    width: 100%;
}

/* Sección About */
.about-section {
    background-color: var(--color-background);
}

.about-section .section-title {
    color: var(--color-about);
}

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

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Sección Leaders */
.leaders-section {
    background-color: var(--color-background);
}

.leaders-section .section-title {
    color: var(--color-leaders);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.team-member h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-member p {
    color: #666;
}

/* Sección Careers */
.careers-section {
    background-color: var(--color-background);
}

.careers-section .section-title {
    color: var(--color-careers);
}

.careers-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.careers-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.careers-text p {
    font-size: 18px;
}

.jobs-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.job-card {
    background-color: var(--color-background);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-default);
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.job-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--color-careers);
}

.job-card p {
    margin-bottom: 20px;
}

.job-link {
    display: inline-block;
    color: var(--color-careers);
    font-weight: 500;
    position: relative;
}

.job-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-careers);
    transition: var(--transition-default);
}

.job-link:hover::after {
    width: 100%;
}

/* Sección Contact */
.contact-section {
    background-color: var(--color-background);
}

.contact-section .section-title {
    color: var(--color-contact);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info>p {
    font-size: 18px;
    margin-bottom: 40px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    margin-bottom: 15px;
}

.contact-label {
    font-weight: 700;
    margin-right: 10px;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 16px;
    transition: var(--transition-default);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-contact);
    box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.2);
}

.submit-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--color-contact);
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-default);
}

.submit-button:hover {
    background-color: #b71c1c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

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

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

.footer-logo {
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-background);
}

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

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

.footer-column a {
    opacity: 0.7;
    transition: var(--transition-default);
}

.footer-column a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.footer-social .social-link {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    text-align: center;
    opacity: 0.7;
    font-size: 14px;
}

/* Animaciones y efectos */
.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.in-view {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media queries para responsividad */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .section-title {
        font-size: 40px;
    }

    .about-content,
    .contact-content,
    .careers-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        text-align: left;
        align-items: flex-start;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        text-align: left;
        margin-bottom: 15px;
    }

    .hero-content p {
        text-align: left;
        font-size: 1rem;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .menu-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-link {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

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

@media (max-width: 480px) {
    .menu-link {
        font-size: 24px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }

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

    .service-card,
    .project-card,
    .article-card,
    .job-card {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }
}

.ab360-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.ab360-description h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.ab360-description p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
}

@media (max-width: 768px) {
    .ab360-description {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .ab360-description h3 {
        font-size: 24px;
    }

    .ab360-description p {
        font-size: 16px;
    }
}

/* Animaciones y efectos */
.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.in-view {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media queries para responsividad */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .section-title {
        font-size: 40px;
    }

    .about-content,
    .contact-content,
    .careers-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        text-align: left;
        align-items: flex-start;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        text-align: left;
        margin-bottom: 15px;
    }

    .hero-content p {
        text-align: left;
        font-size: 1rem;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .menu-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-link {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

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

@media (max-width: 480px) {
    .menu-link {
        font-size: 24px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }

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

    .service-card,
    .project-card,
    .article-card,
    .job-card {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }
}

.ab360-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.ab360-description h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.ab360-description p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
}

@media (max-width: 768px) {
    .ab360-description {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .ab360-description h3 {
        font-size: 24px;
    }

    .ab360-description p {
        font-size: 16px;
    }
}

/* Animaciones y efectos */
.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.in-view {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media queries para responsividad */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .section-title {
        font-size: 40px;
    }

    .about-content,
    .contact-content,
    .careers-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        text-align: left;
        align-items: flex-start;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        text-align: left;
        margin-bottom: 15px;
    }

    .hero-content p {
        text-align: left;
        font-size: 1rem;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .menu-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-link {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

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

@media (max-width: 480px) {
    .menu-link {
        font-size: 24px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }

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

    .service-card,
    .project-card,
    .article-card,
    .job-card {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }
}

.ab360-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.ab360-description h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.ab360-description p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
}

@media (max-width: 768px) {
    .ab360-description {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .ab360-description h3 {
        font-size: 24px;
    }

    .ab360-description p {
        font-size: 16px;
    }
}

/* Animaciones y efectos */
.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.in-view {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media queries para responsividad */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .section-title {
        font-size: 40px;
    }

    .about-content,
    .contact-content,
    .careers-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        text-align: left;
        align-items: flex-start;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        text-align: left;
        margin-bottom: 15px;
    }

    .hero-content p {
        text-align: left;
        font-size: 1rem;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .menu-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-link {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

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

@media (max-width: 480px) {
    .menu-link {
        font-size: 24px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }

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

    .service-card,
    .project-card,
    .article-card,
    .job-card {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }
}

.ab360-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.ab360-description h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.ab360-description p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
}

@media (max-width: 768px) {
    .ab360-description {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .ab360-description h3 {
        font-size: 24px;
    }

    .ab360-description p {
        font-size: 16px;
    }
}

/* Animaciones y efectos */
.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.in-view {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media queries para responsividad */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .section-title {
        font-size: 40px;
    }

    .about-content,
    .contact-content,
    .careers-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        text-align: left;
        align-items: flex-start;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        text-align: left;
        margin-bottom: 15px;
    }

    .hero-content p {
        text-align: left;
        font-size: 1rem;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .menu-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-link {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

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

@media (max-width: 480px) {
    .menu-link {
        font-size: 24px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }

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

    .service-card,
    .project-card,
    .article-card,
    .job-card {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }
}

.ab360-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.ab360-description h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.ab360-description p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
}

@media (max-width: 768px) {
    .ab360-description {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .ab360-description h3 {
        font-size: 24px;
    }

    .ab360-description p {
        font-size: 16px;
    }
}

/* Animaciones y efectos */
.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.in-view {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media queries para responsividad */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .section-title {
        font-size: 40px;
    }

    .about-content,
    .contact-content,
    .careers-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        text-align: left;
        align-items: flex-start;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        text-align: left;
        margin-bottom: 15px;
    }

    .hero-content p {
        text-align: left;
        font-size: 1rem;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .menu-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-link {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

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

@media (max-width: 480px) {
    .menu-link {
        font-size: 24px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }

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

    .service-card,
    .project-card,
    .article-card,
    .job-card {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }
}

.ab360-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.ab360-description h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.ab360-description p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
}

@media (max-width: 768px) {
    .ab360-description {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .ab360-description h3 {
        font-size: 24px;
    }

    .ab360-description p {
        font-size: 16px;
    }
}

/* Animaciones y efectos */
.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.in-view {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media queries para responsividad */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .section-title {
        font-size: 40px;
    }

    .about-content,
    .contact-content,
    .careers-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        text-align: left;
        align-items: flex-start;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        text-align: left;
        margin-bottom: 15px;
    }

    .hero-content p {
        text-align: left;
        font-size: 1rem;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .menu-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-link {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

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

@media (max-width: 480px) {
    .menu-link {
        font-size: 24px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }

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

    .service-card,
    .project-card,
    .article-card,
    .job-card {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }
}

.ab360-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.ab360-description h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.ab360-description p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
}

@media (max-width: 768px) {
    .ab360-description {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .ab360-description h3 {
        font-size: 24px;
    }

    .ab360-description p {
        font-size: 16px;
    }
}

/* Animaciones y efectos */
.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.in-view {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media queries para responsividad */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .section-title {
        font-size: 40px;
    }

    .about-content,
    .contact-content,
    .careers-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        text-align: left;
        align-items: flex-start;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        text-align: left;
        margin-bottom: 15px;
    }

    .hero-content p {
        text-align: left;
        font-size: 1rem;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .menu-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-link {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

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

@media (max-width: 480px) {
    .menu-link {
        font-size: 24px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }

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

    .service-card,
    .project-card,
    .article-card,
    .job-card {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }
}

.ab360-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.ab360-description h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.ab360-description p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
}

@media (max-width: 768px) {
    .ab360-description {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .ab360-description h3 {
        font-size: 24px;
    }

    .ab360-description p {
        font-size: 16px;
    }
}

/* Animaciones y efectos */
.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.in-view {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media queries para responsividad */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .section-title {
        font-size: 40px;
    }

    .about-content,
    .contact-content,
    .careers-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        text-align: left;
        align-items: flex-start;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        text-align: left;
        margin-bottom: 15px;
    }

    .hero-content p {
        text-align: left;
        font-size: 1rem;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .menu-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-link {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

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

@media (max-width: 480px) {
    .menu-link {
        font-size: 24px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }

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

    .service-card,
    .project-card,
    .article-card,
    .job-card {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }
}

.ab360-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.ab360-description h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.ab360-description p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
}

@media (max-width: 768px) {
    .ab360-description {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .ab360-description h3 {
        font-size: 24px;
    }

    .ab360-description p {
        font-size: 16px;
    }
}

/* Animaciones y efectos */
.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.in-view {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media queries para responsividad */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .section-title {
        font-size: 40px;
    }

    .about-content,
    .contact-content,
    .careers-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        text-align: left;
        align-items: flex-start;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        text-align: left;
        margin-bottom: 15px;
    }

    .hero-content p {
        text-align: left;
        font-size: 1rem;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .menu-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-link {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

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

@media (max-width: 480px) {
    .menu-link {
        font-size: 24px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }

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

    .service-card,
    .project-card,
    .article-card,
    .job-card {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }
}

.ab360-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.ab360-description h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.ab360-description p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
}

@media (max-width: 768px) {
    .ab360-description {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .ab360-description h3 {
        font-size: 24px;
    }

    .ab360-description p {
        font-size: 16px;
    }
}

/* Animaciones y efectos */
.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.in-view {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media queries para responsividad */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .section-title {
        font-size: 40px;
    }

    .about-content,
    .contact-content,
    .careers-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        text-align: left;
        align-items: flex-start;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        text-align: left;
        margin-bottom: 15px;
    }

    .hero-content p {
        text-align: left;
        font-size: 1rem;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .menu-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-link {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

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

@media (max-width: 480px) {
    .menu-link {
        font-size: 24px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }

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

    .service-card,
    .project-card,
    .article-card,
    .job-card {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }
}

.ab360-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.ab360-description h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.ab360-description p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
}

@media (max-width: 768px) {
    .ab360-description {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .ab360-description h3 {
        font-size: 24px;
    }

    .ab360-description p {
        font-size: 16px;
    }
}

/* Animaciones y efectos */
.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.in-view {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media queries para responsividad */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .section-title {
        font-size: 40px;
    }

    .about-content,
    .contact-content,
    .careers-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        text-align: left;
        align-items: flex-start;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        text-align: left;
        margin-bottom: 15px;
    }

    .hero-content p {
        text-align: left;
        font-size: 1rem;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .menu-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-link {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

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

@media (max-width: 480px) {
    .menu-link {
        font-size: 24px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }

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

    .service-card,
    .project-card,
    .article-card,
    .job-card {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }
}

.ab360-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.ab360-description h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.ab360-description p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
}

@media (max-width: 768px) {
    .ab360-description {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .ab360-description h3 {
        font-size: 24px;
    }

    .ab360-description p {
        font-size: 16px;
    }
}

/* Animaciones y efectos */
.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.in-view {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media queries para responsividad */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .section-title {
        font-size: 40px;
    }

    .about-content,
    .contact-content,
    .careers-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        text-align: left;
        align-items: flex-start;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        text-align: left;
        margin-bottom: 15px;
    }

    .hero-content p {
        text-align: left;
        font-size: 1rem;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .menu-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-link {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

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

@media (max-width: 480px) {
    .menu-link {
        font-size: 24px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }

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

    .service-card,
    .project-card,
    .article-card,
    .job-card {
        padding: 20px;
    }

    .contact-form {
        padding: