 :root {
    --primary: #1C3775;
    --secondary: #FFB600;
    --accent: #FB637E;
    --light-accent: #91B2F4;
    --bright-accent: #325EF5;
    --cyan: #A0FCFD;
    --light: #F8F9FA;
    --dark: #1A1A1A;
    --text: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Header */
header {
    background: white;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header:after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23ffffff' opacity='.25'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' fill='%23ffffff' opacity='.5'/%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: cover;
    z-index: 1;
}

.logo {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    position: relative;
    z-index: 2;
}


 

.logo img {
    max-width: 200px;
    height: auto;
}
.logo_nav{
    position:absolute !important;
    display:block !important;
}

.tagline {
    font-weight: 300;
    color: var(--primary);
    font-size: 1rem;
    opacity: 0.9;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

/* Navegación */
nav {
    background-color: var(--primary);
    padding: 0.8rem 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 2px solid var(--secondary);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    align-self: flex-end;
    padding: 0.5rem;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

nav ul li {
    margin: 0 0.5rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
    font-size: 0.9rem;
    display: block;
}

nav ul li a:hover {
    color: var(--secondary);
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

/* Contenedor principal */
.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Secciones */
section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary);
}

h1, h2, h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

h1:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    bottom: -8px;
    left: 0;
}

h2 {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 500;
}

h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    color: var(--bright-accent);
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.6;
}

strong {
    font-weight: 500;
}

.start-point {
    margin-left: 30px;
    margin-bottom: 30px;
}
.highlight {
    background-color: var(--light);
    padding: 1.5rem;
    border-left: 4px solid var(--bright-accent);
    margin: 1.5rem 0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

/* Sección de Equipo */
.team-section {
    position: relative;
    padding: 2rem 0;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.team-header {
    text-align: center;
    margin-bottom: 2rem;
}

.team-header h1 {
    font-size: 1.8rem;
}

.team-header h1:after {
    left: 50%;
    transform: translateX(-50%);
}

.team-content {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.team-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary);
}

.team-columns {
    display: flex;
    flex-direction: column;
}

.team-text {
    order: 2;
}

.team-text p {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.team-text p:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
}

.team-image {
    order: 1;
    background: linear-gradient(135deg, var(--light-accent) 0%, var(--bright-accent) 100%);
    border-radius: 8px;
    min-height: 200px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
}

/* Sección de Metodología */
.methodology-section {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    background-color: #f9fbfd;
}

.methodology-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.methodology-header {
    text-align: center;
    margin-bottom: 2rem;
}

.methodology-header h1 {
    font-size: 1.8rem;
}

.methodology-header h1:after {
    width: 60px;
    height: 3px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.methodology-step {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.methodology-step:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
}

.methodology-step:nth-child(2):before {
    background: var(--accent);
}

.methodology-step:nth-child(3):before {
    background: var(--bright-accent);
}

.methodology-step:nth-child(4):before {
    background: var(--cyan);
}

.step-number {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.methodology-step:nth-child(2) .step-number {
    background: var(--accent);
}

.methodology-step:nth-child(3) .step-number {
    background: var(--bright-accent);
}

.methodology-step:nth-child(4) .step-number {
    background: var(--cyan);
    color: var(--primary);
}

.methodology-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.methodology-step ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.methodology-step li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.methodology-step li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    color: inherit;
}

/* Sección de Clientes */
.clients-section {
    padding: 2rem 0;
    background-color: white;
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.client-card {
    background-color: white;
    padding: 1.5rem 0.5rem;
    text-align: center;
    border-radius: 8px;
    font-weight: 500;
    color: var(--primary);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    font-size: 0.9rem;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

/* Sección de Resultados */
.results-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, #142857 100%);
    color: white;
}

.results-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.results-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.results-header p {
    color: white;
}

.results-header h2 {
    color: var(--secondary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.result-item {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--secondary);
}

.result-item h3 {
    color: var(--cyan);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.result-item ul {
    list-style: none;
}

.result-item li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: white;
    font-size: 0.9rem;
}

.result-item li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Sección CTA */
.cta-section {
    padding: 3rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, var(--accent) 0%, #e84363 100%);
    color: white;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: white;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-btn:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--secondary);
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.8;
}


 
/* Media Queries para tablets */
@media (min-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }
    
    .logo img {
        max-width: 200px;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    nav ul li {
        margin: 0 1rem;
    }
    
    nav ul li a {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    section {
        padding: 2rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h1:after {
        width: 50px;
        height: 4px;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    p {
        font-size: 1.1rem;
    }
    
    .team-columns {
        flex-direction: row;
        gap: 2rem;
    }
    
    .team-image {
        order: 2;
        margin-bottom: 0;
        min-height: 300px;
    }
    
    .team-text {
        order: 1;
    }
    
    .methodology-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .client-card {
        padding: 1.5rem;
        min-height: 100px;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
    }
    
    .footer-links {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
}

/* Media Queries para desktop */
@media (min-width: 992px) {
    header {
        padding: 3rem 0;
    }
    
    header:after {
        bottom: -50px;
        height: 100px;
    }
    
    .logo {
        font-size: 3rem;
    }
   
    
    .tagline {
        font-size: 1.4rem;
        max-width: 800px;
    }
    
    nav {
        padding: 1rem;
    }
    
    nav ul li {
        margin: 0 1.5rem;
    }
    
    nav ul li a {
        font-size: 1.1rem;
    }
    
    .container {
        margin: 3rem auto;
    }
    
    section {
        padding: 2.5rem;
        margin-bottom: 3rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.6rem;
    }
    
    .team-section {
        padding: 3rem 0;
    }
    
    .team-header {
        margin-bottom: 3rem;
    }
    
    .team-header h1 {
        font-size: 2.5rem;
    }
    
    .team-content {
        padding: 3rem;
    }
    
    .team-image {
        min-height: 350px;
    }
    
    .methodology-section {
        padding: 4rem 0;
    }
    
    .methodology-steps {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .methodology-step {
        padding: 2rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .results-section {
        padding: 4rem 0;
    }
    
    .cta-section {
        padding: 5rem 0;
    }
    
    .cta-section h2 {
        font-size: 2.8rem;
    }
}

/* Menú móvil */
@media (max-width: 767px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        width: 100%;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        padding: 0.5rem 0;
        width: 100%;
    }
}
 