/* RESET Y ESTILOS BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #4a4a4a;
    background-color: #fafaf8;
}

/* HEADER */
header {
    background-color: #fff;
    padding: 1.5rem 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.2rem;
    font-weight: 600;
    color: #5a7b8f;
    text-decoration: none;
    letter-spacing: 0.5px;
}

nav {
    display: flex;
    gap: 2.5rem;
}

nav a {
    text-decoration: none;
    color: #7a8a96;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #5a7b8f;
}

/* BOTÓN WHATSAPP FLOTANTE */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 999;
    font-size: 1.8rem;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* HERO HOME */
.hero {
    background: linear-gradient(135deg, #f5f3f0 0%, #efe8e3 100%);
    padding: 6rem 2rem;
    text-align: center;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    color: #2a3a42;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    font-weight: 700;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: #7a8a96;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-text {
    font-size: 1rem;
    color: #7a8a96;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.hero-text-bold {
    font-size: 1rem;
    color: #5a7b8f;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* HERO PAGE (servicios, equipo, etc) */
.page-hero {
    background: linear-gradient(135deg, #f5f3f0 0%, #efe8e3 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero .hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: #2a3a42;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.1rem;
    color: #7a8a96;
    font-weight: 400;
}

/* BOTONES */
.btn-primary {
    display: inline-block;
    background-color: #8fa3b0;
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background-color 0.3s, transform 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #7a8a96;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #8fa3b0;
    padding: 0.9rem 2.2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border: 2px solid #8fa3b0;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #8fa3b0;
    color: white;
}

.btn-whatsapp {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s, transform 0.3s;
    border: none;
}

.btn-whatsapp:hover {
    background-color: #1fbb4e;
    transform: translateY(-2px);
}

/* FEATURES (HOME) */
.features {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.features-container {
    text-align: center;
}

.features h2 {
    font-size: 2rem;
    color: #2a3a42;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #2a3a42;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #7a8a96;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* SERVICIOS PREVIEW (HOME) */
.services-preview {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.services-container {
    text-align: center;
}

.services-container h2 {
    font-size: 2rem;
    color: #2a3a42;
    margin-bottom: 2rem;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2a3a42;
    margin-bottom: 1rem;
    text-align: left;
}

.service-card p {
    font-size: 0.95rem;
    color: #7a8a96;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: left;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    justify-content: flex-start;
}

.tag {
    background-color: #f0ebe5;
    color: #7a8a96;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* SECCIONES DE SERVICIOS DETALLADAS */
.service-section {
    background-color: white;
    padding: 4rem 2rem;
    margin-top: 0;
}

.service-section.alt {
    background-color: #fafaf8;
}

.service-container {
    max-width: 1000px;
    margin: 0 auto;
}

.service-content h2 {
    font-size: 2rem;
    color: #2a3a42;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.service-content h3 {
    font-size: 1.3rem;
    color: #5a7b8f;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-content p {
    color: #7a8a96;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.reason-card {
    background-color: #fafaf8;
    padding: 2rem;
    border-radius: 6px;
    border-left: 4px solid #8fa3b0;
}

.reason-card h5 {
    font-size: 1.1rem;
    color: #2a3a42;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.reason-card p {
    color: #7a8a96;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ENFOQUE */
.approach {
    background-color: white;
    padding: 4rem 2rem;
    margin-top: 0;
}

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

.approach h2 {
    text-align: center;
    font-size: 2rem;
    color: #2a3a42;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.approach-item {
    text-align: center;
}

.approach-item h3 {
    font-size: 1.2rem;
    color: #5a7b8f;
    margin-bottom: 1rem;
    font-weight: 600;
}

.approach-item p {
    font-size: 0.95rem;
    color: #7a8a96;
    line-height: 1.7;
}

/* ONLINE SECTION */
.online-section {
    background: linear-gradient(135deg, #f5f3f0 0%, #efe8e3 100%);
    padding: 4rem 2rem;
    margin-top: 0;
}

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

.online-text h2 {
    font-size: 1.8rem;
    color: #2a3a42;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.online-text p {
    font-size: 0.95rem;
    color: #7a8a96;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.quote-box {
    background-color: white;
    padding: 2rem;
    border-radius: 6px;
    text-align: center;
    height: fit-content;
}

.quote-box p {
    color: #7a8a96;
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
}

.conditions {
    list-style: none;
    margin-top: 2rem;
}

.conditions li {
    padding: 0.7rem 0;
    color: #7a8a96;
    font-size: 0.95rem;
}

.conditions li:before {
    content: "✓ ";
    color: #8fa3b0;
    font-weight: bold;
    margin-right: 0.8rem;
}

/* EQUIPO */
.team-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: stretch;
}

.team-member-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.member-image-placeholder {
    width: 100%;
    height: 300px;
    background-color: #e8e3dd;
    border-radius: 6px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a8a096;
    font-size: 1rem;
}

.team-member-card h3 {
    font-size: 1.4rem;
    color: #2a3a42;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.team-member-card .credentials {
    color: #8fa3b0;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.member-bio {
    flex-grow: 1;
}

.member-bio p {
    color: #7a8a96;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.specialties {
    list-style: none;
    margin-top: 1rem;
}

.specialties li {
    padding: 0.5rem 0;
    color: #7a8a96;
    font-size: 0.9rem;
}

.specialties li:before {
    content: "• ";
    color: #8fa3b0;
    margin-right: 0.6rem;
}

.team-info {
    background: linear-gradient(135deg, #f5f3f0 0%, #efe8e3 100%);
    padding: 3rem 2rem;
    border-radius: 6px;
    text-align: center;
}

.team-info h2 {
    font-size: 1.8rem;
    color: #2a3a42;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.team-info p {
    color: #7a8a96;
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1rem;
}

/* PRIMERA SESIÓN */
.first-session {
    background-color: white;
    padding: 4rem 2rem;
    margin-top: 3rem;
}

.first-session-container {
    max-width: 1200px;
    margin: 0 auto;
}

.first-session h2 {
    text-align: center;
    font-size: 2rem;
    color: #2a3a42;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #8fa3b0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.2rem;
    color: #2a3a42;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step p {
    color: #7a8a96;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* FAQ */
.faq {
    background: linear-gradient(135deg, #f5f3f0 0%, #efe8e3 100%);
    padding: 4rem 2rem;
    margin-top: 3rem;
}

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

.faq h2 {
    text-align: center;
    font-size: 2rem;
    color: #2a3a42;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.faq-item {
    background-color: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-item h3,
.faq-item h4 {
    font-size: 1.1rem;
    color: #2a3a42;
    margin-bottom: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

.faq-item p {
    color: #7a8a96;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* CONTACTO */
.contact-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.contact-container {
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
    background-color: white;
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: left;
}

.contact-form h2 {
    font-size: 1.3rem;
    color: #2a3a42;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.9rem;
    color: #5a7b8f;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.8rem;
    border: 1px solid #d9d3cc;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #8fa3b0;
    box-shadow: 0 0 4px rgba(143, 163, 176, 0.2);
}

.form-note {
    font-size: 0.85rem;
    color: #a8a096;
    text-align: center;
}

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

.info-box {
    background: linear-gradient(135deg, #f5f3f0 0%, #efe8e3 100%);
    padding: 2.5rem;
    border-radius: 6px;
    text-align: left;
}

.info-box h3 {
    font-size: 1.3rem;
    color: #2a3a42;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block h4 {
    font-size: 0.95rem;
    color: #5a7b8f;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-block .contact-link {
    color: #8fa3b0;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 0.3rem;
}

.info-block p {
    color: #7a8a96;
    font-size: 0.95rem;
    margin: 0;
}

.cta-box {
    background-color: white;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
}

.cta-box h3 {
    font-size: 1.2rem;
    color: #2a3a42;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-box p {
    color: #7a8a96;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* TARIFAS */
.pricing-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #7a8a96;
    font-size: 1rem;
    line-height: 1.8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #2a3a42;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pricing-card .duration {
    color: #8fa3b0;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.price-placeholder {
    background: linear-gradient(135deg, #f5f3f0 0%, #efe8e3 100%);
    padding: 2rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    color: #7a8a96;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    text-align: left;
}

.pricing-features li {
    padding: 0.6rem 0;
    color: #7a8a96;
    font-size: 0.9rem;
}

.pricing-features li:before {
    content: "✓ ";
    color: #8fa3b0;
    font-weight: bold;
    margin-right: 0.6rem;
}

.pricing-info {
    background: linear-gradient(135deg, #f5f3f0 0%, #efe8e3 100%);
    padding: 3rem 2rem;
    border-radius: 6px;
    margin-bottom: 3rem;
}

.pricing-info h3 {
    text-align: center;
    font-size: 1.5rem;
    color: #2a3a42;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.info-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 6px;
}

.info-item h4 {
    font-size: 1.1rem;
    color: #2a3a42;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.info-item p {
    color: #7a8a96;
    font-size: 0.9rem;
    line-height: 1.6;
}

.faq-tarifas {
    margin-top: 3rem;
}

.faq-tarifas h3 {
    text-align: center;
    font-size: 1.5rem;
    color: #2a3a42;
    margin-bottom: 2rem;
    font-weight: 700;
}

/* PROCESO */
.process-section {
    background-color: white;
    padding: 4rem 2rem;
    margin-top: 3rem;
}

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

.process-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #2a3a42;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.process-step {
    text-align: center;
    background-color: #fafaf8;
    padding: 2rem;
    border-radius: 6px;
}

.process-number {
    width: 50px;
    height: 50px;
    background-color: #8fa3b0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.1rem;
    color: #2a3a42;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: #7a8a96;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* CTA FINAL */
.cta-final {
    background: linear-gradient(135deg, #f5f3f0 0%, #efe8e3 100%);
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-final h2 {
    font-size: 2rem;
    color: #2a3a42;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-final p {
    font-size: 1rem;
    color: #7a8a96;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* FOOTER */
footer {
    background-color: #2a3a42;
    color: white;
    padding: 4rem 2rem;
    margin-top: 5rem;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

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

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 2rem;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .features-grid,
    .services-grid,
    .approach-grid,
    .steps-grid,
    .team-grid,
    .pricing-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .online-container,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .info-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }

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

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

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    nav {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .approach-grid,
    .steps-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

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

    .approach-item h3,
    .step h3,
    .process-step h3 {
        font-size: 1rem;
    }
}