/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #480e2a;
    --secondary-color: #666;
    --accent-color: #ff0054;
    --text-light: #999;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.85;
}

.logo-image {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    flex-shrink: 0;
    scale: 1.7;
}

.logo span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.logo span br {
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-contact-button {
    padding: 0.5rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.nav-contact-button:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    margin-top: 70px;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(72, 14, 42, 0.3) 0%, rgba(72, 14, 42, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 900px;
    padding: 5rem 0 6rem;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb span {
    margin: 0 0.5rem;
    opacity: 0.7;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-heading {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 3.5rem;
    opacity: 0.95;
    max-width: 750px;
    font-weight: 400;
}

.hero-cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.hero-cta-button:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 84, 0.3);
}

.hero-nav-tabs {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-nav-tabs .tab {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.hero-nav-tabs .tab:hover,
.hero-nav-tabs .tab.active {
    border-bottom-color: var(--accent-color);
}

/* Stats Section */
.stats-section {
    background: var(--white);
    padding: 5rem 0;
    border-bottom: 1px solid var(--border-color);
    scroll-margin-top: 100px;
}

.stats-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stats-cta-wrapper {
    text-align: center;
    margin-bottom: 4rem;
}

.stats-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.stats-cta-button:hover {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 84, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--secondary-color);
    line-height: 1.6;
    max-width: 280px;
}

/* Proyectos Section */
.proyectos-section {
    padding: 6rem 0;
    background: var(--white);
}

.proyectos-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.proyectos-content {
    padding-right: 2rem;
}

.proyectos-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.proyectos-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-color);
}

.proyectos-text p {
    margin-bottom: 1.5rem;
}

.proyectos-text p:last-child {
    margin-bottom: 0;
}

.proyectos-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(72, 14, 42, 0.1);
}

.proyectos-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    clip-path: polygon(16px 0,calc(100% - 16px) 0,100% 16px,100% calc(100% - 16px),calc(100% - 16px) 100%,16px 100%,0 calc(100% - 16px),0 16px);
}

/* Propuesta de valor Section */
.propuesta-section {
    padding: 6rem 0;
    background: var(--white);
}

.propuesta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 4rem;
    line-height: 1.2;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
}

.propuesta-wrapper {
    display: grid;
    grid-template-columns: 25% 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.propuesta-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(72, 14, 42, 0.1);
}

.propuesta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    clip-path: polygon(16px 0,calc(100% - 16px) 0,100% 16px,100% calc(100% - 16px),calc(100% - 16px) 100%,16px 100%,0 calc(100% - 16px),0 16px);
}


.propuesta-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.propuesta-item {
    padding-left: 1rem;
}

.propuesta-subtitle {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.propuesta-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-color);
}

.propuesta-cta-wrapper {
    text-align: center;
    margin-top: 4rem;
}

.propuesta-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.propuesta-cta-button:hover {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 84, 0.2);
}

/* Marcas Section */
.marcas-section {
    padding: 6rem 0;
    background: var(--white);
}

.marcas-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align:left;
    margin-bottom: 4rem;
    line-height: 1.3;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
}

.marcas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.marca-card {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}


.marca-image-wrapper {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
}

.marca-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    border-radius: 8px;
    clip-path: polygon(16px 0,calc(100% - 16px) 0,100% 16px,100% calc(100% - 16px),calc(100% - 16px) 100%,16px 100%,0 calc(100% - 16px),0 16px);
}

.marca-content {
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.marca-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.marca-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.marca-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: auto;
}

.marca-link:hover {
    color: var(--primary-color);
}

/* Talento Section */
.talento-section {
    padding: 6rem 0;
    background: var(--white);
}

.talento-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 1rem;
    line-height: 1.3;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
}

.talento-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: left;
    margin-bottom: 4rem;
    line-height: 1.3;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.01em;
}

.talento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.talento-card {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.talento-image-wrapper {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
}

.talento-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    border-radius: 8px;
    clip-path: polygon(16px 0,calc(100% - 16px) 0,100% 16px,100% calc(100% - 16px),calc(100% - 16px) 100%,16px 100%,0 calc(100% - 16px),0 16px);
}

.talento-content {
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.talento-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.talento-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--secondary-color);
    flex-grow: 1;
}

/* CTA Section */
.cta-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(72, 14, 42, 0.7);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 4rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.cta-button:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* Transformación Section */
.transformacion-section {
    padding: 6rem 0;
    background: var(--white);
    scroll-margin-top: 100px;
}

.transformacion-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 4rem;
    line-height: 1.2;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
}

.transformacion-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.transformacion-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: sticky;
    top: 100px;
}

.tab-button {
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-family: inherit;
}

.tab-button:hover {
    color: var(--primary-color);
    background: rgba(72, 14, 42, 0.05);
}

.tab-button.active {
    color: var(--primary-color);
    border-left-color: var(--accent-color);
    background: rgba(72, 14, 42, 0.05);
    font-weight: 600;
}

.transformacion-content {
    min-height: 500px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content-wrapper {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 3rem;
    align-items: start;
}

.tab-content-wrapper .full-width {
    grid-column: 1 / -1;
}

.tab-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(72, 14, 42, 0.1);
}

.tab-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    clip-path: polygon(16px 0,calc(100% - 16px) 0,100% 16px,100% calc(100% - 16px),calc(100% - 16px) 100%,16px 100%,0 calc(100% - 16px),0 16px);
}

.tab-text-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tab-content-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.tab-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tab-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-color);
    padding-left: 1.5rem;
    position: relative;
}

.tab-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.industry-item {
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.industry-item:hover {
    background: rgba(72, 14, 42, 0.02);
}

.industry-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.industry-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--secondary-color);
}

.business-functions {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.function-item {
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.function-item:hover {
    background: rgba(72, 14, 42, 0.02);
}

.function-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.function-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--secondary-color);
}

.enablers-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.enabler-item {
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.enabler-item:hover {
    background: rgba(72, 14, 42, 0.02);
}

.enabler-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.enabler-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--secondary-color);
}

/* Clientes Section */
.clientes-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.clientes-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 4rem;
    line-height: 1.2;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
}

.clientes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    align-items: center;
    justify-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.cliente-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}


.cliente-logo {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Content Section */
.content-section {
    padding: 5rem 0;
    background: var(--white);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-color);
}

.transformacion-cta-wrapper {
    text-align: center;
    margin-top: 4rem;
}

.transformacion-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.transformacion-cta-button:hover {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 84, 0.2);
}

/* Full Width Image Section */
.full-image-section {
    width: 100%;
    margin: 5rem 0;
    overflow: hidden;
}

.full-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 300px;
    object-position: bottom;
}

/* Proyectos Cards Section */
.proyectos-cards-section {
    padding: 6rem 0;
    background: var(--white);
}

.proyectos-cards-header {
    text-align: left;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.proyectos-cards-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.proyectos-cards-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.proyectos-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.proyecto-card {
    position: relative;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s ease;
    cursor: pointer;
    clip-path: polygon(16px 0,calc(100% - 16px) 0,100% 16px,100% calc(100% - 16px),calc(100% - 16px) 100%,16px 100%,0 calc(100% - 16px),0 16px);
}


.proyecto-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.proyecto-card-bg-primary {
    background-color: var(--primary-color);
    background-image: none;
}


.proyecto-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.6;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.proyecto-card:hover .proyecto-card-overlay {
    opacity: 0.5;
}

.proyecto-card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: var(--white);
}

.proyecto-card-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.proyecto-card-company {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.proyectos-cards-cta-wrapper {
    text-align: center;
    margin-top: 4rem;
}

.proyectos-cards-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.proyectos-cards-cta-button:hover {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 84, 0.2);
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    background: var(--bg-light);
    scroll-margin-top: 100px;
}

.custom-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(72, 14, 42, 0.1);
}

.custom-form-layout--contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.custom-form--field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.custom-form--field.full-width {
    grid-column: 1 / -1;
}

.custom-form--field--hidden {
    display: none;
}

.custom-form--field-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.custom-form--field-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--primary-color);
    background: var(--white);
    transition: all 0.3s ease;
}

.custom-form--field-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 0, 84, 0.1);
}

.custom-form--field-input:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.custom-form--field-input:valid:not(:placeholder-shown) {
    border-color: #28a745;
}

.custom-form--field-input::placeholder {
    color: var(--text-light);
}

.custom-form--field-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23480e2a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.custom-form--field-textarea {
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
}

.custom-form--field--checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.custom-form--field--checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--accent-color);
    flex-shrink: 0;
}

.custom-form--field--checkbox label {
    font-size: 0.9rem;
    color: var(--secondary-color);
    line-height: 1.5;
    cursor: pointer;
}

.reset-prev-combo {
    display: none;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--secondary-color);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.reset-prev-combo:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.custom-form--legal {
    grid-column: 1 / -1;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.custom-form--legal a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-form--legal a:hover {
    text-decoration: underline;
}

.g-recaptcha {
    grid-column: 1 / -1;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}

.recaptcha-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    padding: 1rem;
    background: rgba(72, 14, 42, 0.05);
    border-radius: 4px;
}

.button-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.button-link--primary {
    background: var(--accent-color);
    color: var(--white);
}

.button-link:hover {
    background: transparent;
    color: var(--accent-color);
}

.button-link__icon {
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23ffffff' d='M10 0L8.59 1.41L15.17 8H0v2h15.17l-6.58 6.59L10 18l8-8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s ease;
}

.button-link:hover .button-link__icon {
    transform: translateX(4px);
}

.button-link:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.button-link:disabled:hover {
    background: var(--accent-color);
    color: var(--white);
}

.button-link:disabled:hover .button-link__icon {
    transform: none;
}

.wpcf7-response-output {
    grid-column: 1 / -1;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.hidden-fields-container {
    display: none;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

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

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .logo {
        gap: 0.5rem;
    }
    
    .logo-image {
        height: 35px;
        max-width: 150px;
    }
    
    .logo span {
        font-size: 0.95rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        font-size: 1.1rem;
    }

    .menu-toggle {
        display: flex;
    }

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

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

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

    .nav-contact-button {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-heading {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .hero-nav-tabs {
        flex-direction: column;
        gap: 1rem;
    }

    .stats-section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .stats-cta-wrapper {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .stats-cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 400px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .proyectos-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .proyectos-content {
        padding-right: 0;
    }

    .proyectos-title {
        font-size: 2rem;
    }

    .proyectos-image-wrapper {
        min-height: 400px;
    }

    .propuesta-title {
        font-size: 2rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .marcas-section {
        padding: 4rem 0;
    }

    .marcas-title {
        font-size: 2rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

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

    .talento-section {
        padding: 4rem 0;
    }

    .talento-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
        padding: 0 1rem;
    }

    .talento-subtitle {
        font-size: 1.5rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .cta-section {
        min-height: 400px;
    }

    .cta-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

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

    .propuesta-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .propuesta-image-wrapper {
        min-height: 400px;
        order: -1;
    }

    .propuesta-item {
        padding-left: 0;
    }

    .propuesta-subtitle {
        font-size: 1.5rem;
    }

    .clientes-title {
        font-size: 2rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

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

    .cliente-logo {
        max-height: 60px;
    }

    .transformacion-section {
        padding: 4rem 0;
    }

    .transformacion-title {
        font-size: 2rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .transformacion-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .transformacion-tabs {
        position: relative;
        top: 0;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
        border-bottom: 2px solid var(--border-color);
    }

    .tab-button {
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 1rem 1.5rem;
    }

    .tab-button.active {
        border-left: none;
        border-bottom-color: var(--accent-color);
    }

    .tab-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tab-image-wrapper {
        min-height: 300px;
        order: -1;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .proyectos-cards-section {
        padding: 4rem 0;
    }

    .proyectos-cards-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .proyectos-cards-subtitle {
        font-size: 1.5rem;
    }

    .proyectos-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .proyecto-card {
        min-height: 350px;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-heading {
        font-size: 1.3rem;
    }

    .hero-content {
        padding: 2rem 0;
    }

    .stats-section-title {
        font-size: 1.75rem;
    }

    .proyectos-section {
        padding: 4rem 0;
    }

    .proyectos-title {
        font-size: 1.75rem;
    }

    .proyectos-image-wrapper {
        min-height: 300px;
    }

    .propuesta-section {
        padding: 4rem 0;
    }

    .marcas-section {
        padding: 3rem 0;
    }

    .marcas-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .marcas-grid {
        gap: 1.5rem;
    }

    .talento-section {
        padding: 3rem 0;
    }

    .cta-section {
        min-height: 350px;
    }

    .cta-content {
        padding: 3rem 0;
    }

    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .talento-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .talento-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .talento-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .talento-image-wrapper {
        height: 200px;
    }

    .talento-content {
        padding: 1.5rem;
    }

    .talento-name {
        font-size: 1.3rem;
    }

    .propuesta-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .propuesta-wrapper {
        gap: 2rem;
    }

    .propuesta-image-wrapper {
        min-height: 300px;
    }

    .propuesta-content {
        gap: 2rem;
    }

    .propuesta-subtitle {
        font-size: 1.3rem;
    }

    .marcas-section {
        padding: 4rem 0;
    }

    .marcas-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .marcas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .marca-image-wrapper {
        height: 200px;
    }

    .marca-content {
        padding: 1.5rem;
    }

    .marca-name {
        font-size: 1.3rem;
    }

    .clientes-section {
        padding: 4rem 0;
    }

    .clientes-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .clientes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cliente-item {
        padding: 1rem;
    }

    .cliente-logo {
        max-height: 50px;
    }

    .transformacion-section {
        padding: 3rem 0;
    }

    .transformacion-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .transformacion-wrapper {
        gap: 2rem;
    }

    .tab-button {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }

    .tab-content-title {
        font-size: 1.5rem;
    }

    .industries-grid {
        gap: 1.5rem;
    }

    .industry-item,
    .function-item,
    .enabler-item {
        padding: 1rem;
    }

    .industry-name,
    .function-name,
    .enabler-name {
        font-size: 1.1rem;
    }

    .proyectos-cards-section {
        padding: 3rem 0;
    }

    .proyectos-cards-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .proyectos-cards-subtitle {
        font-size: 1.3rem;
    }

    .proyectos-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .proyecto-card {
        min-height: 300px;
    }

    .proyecto-card-content {
        padding: 1.5rem;
    }

    .proyecto-card-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .proyecto-card-company {
        font-size: 1.3rem;
    }

    .contact-form-section {
        padding: 3rem 0;
    }

    .custom-form {
        padding: 2rem 1.5rem;
    }

    .custom-form-layout--contact {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .stats-section,
    .content-section {
        padding: 3rem 0;
    }
}

/* About Page Styles */
.about-mission-section {
    padding: 5rem 0;
    background: var(--white);
}

.about-mission-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-mission-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-mission-item h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-mission-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-color);
}

.about-mission-image {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.about-values-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.about-value-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-value-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.about-value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 1.5rem 1.5rem 0.5rem;
    margin: 0;
}

.about-value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--secondary-color);
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

.about-experience-section {
    padding: 5rem 0;
    background: var(--white);
}

.about-experience-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-experience-image {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.about-experience-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-experience-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-experience-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.about-experience-stat {
    text-align: center;
}

.about-experience-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.about-experience-stat .stat-label {
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.about-approach-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.about-approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.about-approach-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-approach-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-approach-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-approach-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--secondary-color);
}

.about-cta-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.about-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.about-cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(72, 14, 42, 0.85);
    z-index: 1;
}

.about-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.about-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.about-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Responsive About Page */
@media (max-width: 968px) {
    .about-mission-wrapper,
    .about-experience-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-mission-image,
    .about-experience-image {
        height: 400px;
    }

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

    .about-approach-grid {
        grid-template-columns: 1fr;
    }

    .about-experience-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .about-mission-section,
    .about-values-section,
    .about-experience-section,
    .about-approach-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-mission-item h2,
    .about-experience-content h2 {
        font-size: 1.75rem;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-content h2 {
        font-size: 2rem;
    }

    .about-cta-content p {
        font-size: 1rem;
    }
}

/* Contact Page Styles */
.contact-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: #480e2a;
}

.contact-form-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

.contact-form-container {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form-optional {
    color: #999;
    font-weight: normal;
}

.contact-form-legal {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 30px 0 20px;
}

.contact-form-legal a {
    color: #480e2a;
}

.contact-form-checkbox-wrapper {
    margin-bottom: 30px;
}

.contact-form-button-wrapper {
    text-align: center;
}

.contact-form-button-wrapper .button-link {
    min-width: 200px;
}

.contact-info-section {
    padding: 80px 0;
    background: #fff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-item {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.contact-info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #480e2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon i {
    font-size: 24px;
    color: white;
}

.contact-info-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #480e2a;
}

.contact-info-item p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

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

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

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-form-title {
        font-size: 28px;
    }

    .contact-form-subtitle {
        font-size: 16px;
    }
}

/* Legal Content Section */
.legal-content-section {
    padding: 120px 0 80px;
    background-color: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.legal-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-title {
    font-size: 42px;
    font-weight: 700;
    color: #480e2a;
    margin-bottom: 10px;
    line-height: 1.2;
}

.legal-updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content {
    color: #333;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #480e2a;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff0054;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.7;
}

.legal-content li strong {
    color: #480e2a;
    font-weight: 600;
}

.legal-content a {
    color: #ff0054;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #480e2a;
    text-decoration: underline;
}

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

    .legal-content-wrapper {
        padding: 30px 20px;
        margin: 0 20px;
    }

    .legal-title {
        font-size: 32px;
    }

    .legal-content h2 {
        font-size: 24px;
    }

    .legal-content p,
    .legal-content li {
        font-size: 15px;
    }
}
