* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: #2a2a2a;
    background: #fafafa;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header - Diseño Horizontal Minimalista */
.navbar {
    background: #ffffff;
    color: #333;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border-bottom: 2px solid #e74c3c;
}

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

.logo h1 {
    font-size: 2rem;
    color: #e74c3c;
    font-weight: bold;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: #2a2a2a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: #e74c3c;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section - Diseño Minimalista con Fondo Blanco */
.hero {
    background: #ffffff;
    color: #2a2a2a;
    padding: 120px 0;
    text-align: left;
    border-bottom: 3px solid #e74c3c;
}

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

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 4px solid #1a1a1a;
    box-shadow: 10px 10px 0 #e74c3c;
}

.hero-content {
    text-align: left;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #555;
    font-style: italic;
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s;
    border: 2px solid #e74c3c;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.btn-primary:hover {
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

/* Solutions Section - Dos Columnas */
.solutions {
    padding: 100px 0;
    background: #ffffff;
}

.solutions h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.solutions-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.solution-card {
    background: #fafafa;
    padding: 0;
    border-radius: 0;
    text-align: left;
    transition: all 0.3s;
    border: 2px solid #1a1a1a;
    border-top: 4px solid #e74c3c;
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    background: #ffffff;
}

.solution-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.solution-content {
    padding: 2.5rem;
}

.solution-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    margin-bottom: 1rem;
}

.solution-card p {
    margin: 0;
}

.solution-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solution-card p {
    color: #666;
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Methodology Section - Grid de Tarjetas */
.methodology {
    padding: 100px 0;
    background: #f5f5f5;
}

.methodology h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.method-card {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 0;
    text-align: center;
    border: 2px solid #1a1a1a;
    transition: all 0.3s;
    position: relative;
}

.method-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: #e74c3c;
}

.method-icon {
    width: 100px;
    height: 100px;
    background: #e74c3c;
    color: white;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    margin: 0 auto 2rem;
    border: 4px solid #1a1a1a;
}

.method-card h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method-card p {
    color: #555;
    line-height: 2;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #1a1a1a;
    color: #ffffff;
}

.about h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.about-text h3 {
    color: #e74c3c;
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 2;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.about-text ul {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.about-text li {
    color: #e0e0e0;
    line-height: 2;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-text strong {
    color: #e74c3c;
}

/* Process Timeline Section */
.process {
    padding: 100px 0;
    background: #1a1a1a;
    color: white;
}

.process h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 60px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #e74c3c;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    background: #2a2a2a;
    padding: 2.5rem;
    border-left: 4px solid #e74c3c;
    border: 2px solid #e74c3c;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -51px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #e74c3c;
    border: 4px solid #1a1a1a;
    border-radius: 50%;
}

.timeline-number {
    display: none;
}

.timeline-content h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-content p {
    color: #e0e0e0;
    line-height: 2;
    font-size: 1.1rem;
}

/* Testimonials Section - Moved to Top */
.testimonials {
    padding: 80px 0;
    background: #f5f5f5;
}

.testimonials h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial {
    background: #fafafa;
    padding: 3rem 2.5rem;
    border-radius: 0;
    border-top: 4px solid #e74c3c;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e74c3c;
    margin: 0 auto 1.5rem;
    display: block;
}

.testimonial p {
    font-style: italic;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
}

.testimonial p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: #e74c3c;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial cite {
    color: #1a1a1a;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

/* FAQ Accordion Section */
.faq {
    padding: 100px 0;
    background: #ffffff;
}

.faq h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion-item {
    background: #fafafa;
    margin-bottom: 1.5rem;
    border: 2px solid #1a1a1a;
    border-left: 6px solid #e74c3c;
}

.faq-question {
    color: #1a1a1a;
    padding: 2rem;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f0f0f0;
    color: #e74c3c;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 2rem;
    font-size: 2rem;
    font-weight: bold;
    color: #e74c3c;
}

.faq-accordion-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-accordion-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    color: #555;
    line-height: 2;
    font-size: 1.1rem;
    padding: 0 2rem 2rem;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #1a1a1a;
    color: white;
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 4rem;
    color: #e0e0e0;
    font-style: italic;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 0;
    text-align: center;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.contact-item h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: #e74c3c;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    color: #e0e0e0;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    color: #1a1a1a;
    background: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border: 2px solid #e74c3c;
}

.contact-form button {
    width: 100%;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 3rem 0;
    border-top: 2px solid #e74c3c;
}

footer p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

footer p a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

footer p a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Legal Content Pages */
.legal-content {
    padding: 60px 0;
    background: #ffffff;
    color: #2a2a2a;
}

.legal-content h1 {
    color: #1a1a1a;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.last-updated {
    text-align: center;
    color: #888;
    font-style: italic;
    margin-bottom: 4rem;
    font-size: 1rem;
}

.legal-section {
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.legal-section h2 {
    color: #1a1a1a;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #e74c3c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-section p {
    color: #444;
    line-height: 2;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section li {
    color: #555;
    line-height: 2;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.legal-section strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        height: 300px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .solutions-two-columns {
        grid-template-columns: 1fr;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-accordion-item {
        margin-bottom: 1rem;
    }
    
    .process-timeline {
        padding-left: 40px;
    }
    
    .process-timeline::before {
        left: 10px;
    }
    
    .timeline-item::before {
        left: -31px;
    }
    
    .legal-content h1 {
        font-size: 2.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 20px;
    }
}
