/* Estilos Generales */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0A0A0A; /* Fondo oscuro */
    color: #E0E0E0; /* Texto claro */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    margin-top: 0;
    font-weight: 700;
}

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Header */
.main-header {
    background-color: #1A1A1A;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Sombra para el header */
}

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

.logo {
    font-size: 1.5em;
    font-weight: 700;
    color: #FFFFFF;
}

.logo img { /* Estilo para el logo de imagen */
    max-height: 40px; /* Altura máxima del logo */
    width: auto;
    vertical-align: middle;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #B0B0B0;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #FFFFFF;
}

.cta-button {
    background-color: #50fa7b; /* Verde brillante */
    color: #1A1A1A;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #34d962;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
    padding: 150px 0 100px; /* Padding superior ajustado por el header fixed */
    position: relative;
    overflow: hidden; /* Para contener la imagen */
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content .accent {
    color: #50fa7b;
}

.hero-content .subheadline {
    color: #B0B0B0;
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.primary-button,
.secondary-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-button {
    background-color: #50fa7b;
    color: #1A1A1A;
}

.primary-button:hover {
    background-color: #34d962;
}

.secondary-button {
    border: 1px solid #B0B0B0;
    color: #B0B0B0;
}

.secondary-button:hover {
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.arrow-icon {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #1A1A1A; /* Color de la flecha */
    margin-left: 10px;
    vertical-align: middle; /* Alinea con el texto */
}

/* Sección de Introducción a Servicios/Áreas de Especialización */
.intro-section-services {
    background-color: #0A0A0A;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #2C2C2C; /* Separador sutil */
}

.intro-section-services h2 {
    font-size: 2em;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.intro-section-services .intro-text {
    max-width: 800px;
    margin: 0 auto;
    color: #B0B0B0;
    font-size: 1.1em;
    line-height: 1.7;
}


/* Sección "About Us" */
.about-us-section {
    background-color: #0A0A0A;
    padding: 80px 0;
}

.about-us-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
    color: #FFFFFF;
}

.about-content .intro-paragraph {
    color: #B0B0B0;
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 40px;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dos columnas para las tarjetas "Our Mission" y "Who We Are" */
    gap: 20px;
}

.about-card {
    background-color: #1A1A1A;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #2C2C2C;
}

.about-card h3 {
    font-size: 1.3em;
    color: #50fa7b; /* Acento para los títulos de las tarjetas */
    margin-bottom: 10px;
}

.about-card p {
    font-size: 0.95em;
    color: #B0B0B0;
    line-height: 1.6;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Sección de Servicios */
.services-section {
    background-color: #0A0A0A;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.section-header .section-description {
    max-width: 700px;
    margin: 0 auto;
    color: #B0B0B0;
    font-size: 1.1em;
    line-height: 1.7;
}

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

.service-card {
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #2C2C2C;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    border-color: #50fa7b; /* Borde se ilumina al pasar el ratón */
}

.service-icon {
    font-size: 3.5em; /* Iconos más grandes */
    color: #50fa7b; /* Color de acento */
    margin-bottom: 20px;
    display: block; /* Para que margin-bottom funcione correctamente */
}

.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.service-card p {
    font-size: 0.95em;
    color: #B0B0B0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card .read-more {
    color: #50fa7b; /* Color de acento para el enlace */
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.service-card .read-more:hover {
    color: #34d962;
}

.service-card .read-more .material-icons {
    font-size: 1em;
    transition: transform 0.3s ease;
}

.service-card .read-more:hover .material-icons {
    transform: translateX(5px); /* Pequeña animación al pasar el ratón */
}

/* Sección de Premios (Awards) */
.awards-section {
    background-color: #0A0A0A;
    padding: 80px 0;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* 4 columnas en desktop */
    gap: 30px;
    text-align: left;
}

.award-card {
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #2C2C2C;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    border-color: #50fa7b; /* Iluminar al hover */
}

.award-year {
    font-size: 1.1em;
    color: #50fa7b; /* Color de acento para el año */
    font-weight: 600;
    margin-bottom: 10px;
    display: block; /* Asegura que tome su propia línea */
}

.award-card h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.award-card p {
    font-size: 0.9em;
    color: #B0B0B0;
    line-height: 1.5;
}

/* Sección de Proyectos */
.projects-section {
    background-color: #0A0A0A;
    padding: 80px 0;
}

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

.projects-grid .project-card { /* Usamos service-card como base para los proyectos */
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #2C2C2C;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-align: center; /* Centrar contenido de la tarjeta */
    display: flex;
    flex-direction: column;
}

.projects-grid .project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    border-color: #50fa7b;
}

.projects-grid .project-card img {
    max-width: 100%;
    height: 180px; /* Altura fija para las previews */
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.projects-grid .project-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.projects-grid .project-card p {
    font-size: 0.95em;
    color: #B0B0B0;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; /* Para que el texto ocupe el espacio */
}

.project-card-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: auto; /* Empuja los enlaces al final de la tarjeta */
}

.btn-primary-small,
.btn-secondary-small {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid;
}

.btn-primary-small {
    background-color: #50fa7b;
    color: #1A1A1A;
    border-color: #50fa7b;
}

.btn-primary-small:hover {
    background-color: #34d962;
    border-color: #34d962;
}

.btn-secondary-small {
    background-color: transparent;
    color: #B0B0B0;
    border-color: #B0B0B0;
}

.btn-secondary-small:hover {
    border-color: #FFFFFF;
    color: #FFFFFF;
}

/* Sección de Testimonios */
.testimonials-section {
    background-color: #0A0A0A;
    padding: 80px 0;
}

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

.testimonial-card {
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #2C2C2C;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.testimonial-card .quote {
    font-size: 1.1em;
    color: #E0E0E0;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding-left: 20px; /* Espacio para la comilla */
}

.testimonial-card .quote::before {
    content: '“'; /* Comilla de apertura */
    font-family: 'Poppins', sans-serif;
    font-size: 4em;
    color: rgba(80, 250, 123, 0.2); /* Color tenue del acento */
    position: absolute;
    left: 0;
    top: -10px;
    line-height: 0.8;
}

.client-info {
    text-align: right;
    border-top: 1px solid #2C2C2C;
    padding-top: 15px;
}

.client-name {
    font-size: 1.1em;
    font-weight: 600;
    color: #50fa7b; /* Nombre del cliente con acento */
    display: block;
    margin-bottom: 5px;
}

.client-title {
    font-size: 0.9em;
    color: #B0B0B0;
    display: block;
}


/* Sección de Preguntas Frecuentes (FAQ) */
.faq-section {
    background-color: #0A0A0A;
    padding: 80px 0;
}

.faq-accordion {
    max-width: 800px; /* Ancho máximo para el acordeón */
    margin: 0 auto;
}

.faq-item {
    background-color: #1A1A1A;
    border: 1px solid #2C2C2C;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden; /* Asegura que la respuesta se oculte correctamente */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #1A1A1A;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #2C2C2C;
}

.faq-question h3 {
    font-size: 1.2em;
    color: #FFFFFF;
    margin: 0;
    flex-grow: 1; /* Permite que el texto crezca */
}

.accordion-icon {
    font-size: 1.8em;
    color: #50fa7b;
    transition: transform 0.3s ease;
}

.faq-item.active .accordion-icon {
    transform: rotate(45deg); /* Gira el icono de "+" a "x" */
}

.faq-answer {
    padding: 0 25px;
    max-height: 0; /* Inicialmente oculto */
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out; /* Transición para mostrar/ocultar */
    background-color: #2C2C2C; /* Fondo de la respuesta */
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Suficiente altura para la respuesta */
    padding: 15px 25px 20px; /* Padding cuando está activo */
}

.faq-answer p {
    font-size: 1em;
    color: #B0B0B0;
    line-height: 1.6;
    margin: 0;
}

/* Sección de Contacto */
.contact-section {
    background-color: #0A0A0A;
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Información de contacto a la izquierda, formulario a la derecha */
    gap: 50px;
    background-color: #1A1A1A;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid #2C2C2C;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.8em;
    color: #FFFFFF;
    margin-bottom: 25px;
}

.contact-info p {
    color: #B0B0B0;
    font-size: 1.05em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info .material-icons {
    color: #50fa7b;
    font-size: 1.5em;
}

.contact-info .social-links {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

/* Estilos para los iconos de Simple Icons */
.contact-info .social-links a .si,
.main-footer .social-links a .si {
    font-size: 2em; /* Tamaño del icono */
    color: #B0B0B0; /* Color inicial */
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-info .social-links a:hover .si,
.main-footer .social-links a:hover .si {
    color: #50fa7b; /* Color al pasar el ratón */
    transform: translateY(-3px); /* Pequeño efecto */
}


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

.contact-form label {
    display: block;
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #2C2C2C;
    color: #E0E0E0;
    font-size: 1em;
    box-sizing: border-box; /* Incluye padding y borde en el ancho total */
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: #50fa7b;
    outline: none;
    box-shadow: 0 0 0 2px rgba(80, 250, 123, 0.3);
}

.contact-form textarea {
    resize: vertical; /* Permite redimensionar verticalmente */
}

.contact-form .primary-button {
    width: auto; /* Para que el botón no ocupe todo el ancho */
    padding: 15px 35px;
    font-size: 1.1em;
    margin-top: 15px;
}


/* Estilos para el Footer (básicos) */
.main-footer {
    background-color: #1A1A1A;
    color: #B0B0B0;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #2C2C2C;
}

.footer-logo {
    font-size: 1.5em;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

/* Estilos para la página de Servicios Detallados (servicios-detalle.html) */

/* Hero Section para Subpáginas */
.hero-subpage-section {
    background: linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
    padding: 150px 0 80px; /* Ajuste de padding */
    position: relative;
    overflow: hidden;
    text-align: center; /* Centrar contenido */
}

.hero-subpage-section .container {
    display: flex; /* Usar flexbox para centrar fácilmente */
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-subpage-section .hero-content h1 {
    font-size: 3em; /* Un poco más pequeño que el hero principal */
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subpage-section .hero-content .subheadline {
    color: #B0B0B0;
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 800px; /* Limitar ancho del texto */
    margin-bottom: 30px;
}

/* Sección de Servicios Detallados */
.services-detailed-section {
    background-color: #0A0A0A;
    padding: 80px 0;
}

.service-category {
    background-color: #1A1A1A;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #2C2C2C;
    margin-bottom: 40px; /* Espacio entre categorías */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    border-color: #50fa7b;
}

.service-category h3 {
    font-size: 2em;
    color: #FFFFFF;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-category .service-icon {
    font-size: 2.5em;
    color: #50fa7b;
}

.service-category p {
    font-size: 1.05em;
    color: #B0B0B0;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* 2 o 3 columnas de lista */
    gap: 10px 20px;
}

.service-category ul li {
    font-size: 1em;
    color: #E0E0E0;
    position: relative;
    padding-left: 25px;
}

.service-category ul li::before {
    content: '•'; /* Un punto o icono */
    color: #50fa7b;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

/* Sección "Nuestro Proceso" */
.our-process-section {
    background-color: #0A0A0A;
    padding: 80px 0;
}

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

.process-step-card {
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #2C2C2C;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    border-color: #50fa7b;
}

.process-step-card .process-icon {
    font-size: 3.5em;
    color: #50fa7b;
    margin-bottom: 20px;
    display: block;
}

.process-step-card h3 {
    font-size: 1.5em;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.process-step-card p {
    font-size: 0.95em;
    color: #B0B0B0;
    line-height: 1.6;
}

/* Sección Extendida del Equipo (Si se incluye en el HTML) */
.team-extended-section {
    background-color: #0A0A0A;
    padding: 80px 0;
}

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

.team-member-card {
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #2C2C2C;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    border-color: #50fa7b;
}

.team-member-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%; /* Circular */
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #50fa7b; /* Borde de acento */
    box-shadow: 0 0 0 5px rgba(80, 250, 123, 0.2);
}

.team-member-card h3 {
    font-size: 1.6em;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.team-member-card .role {
    font-size: 0.95em;
    color: #B0B0B0;
    margin-bottom: 15px;
    font-weight: 600;
}

.team-member-card .bio {
    font-size: 0.9em;
    color: #B0B0B0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social-links a .si {
    font-size: 1.8em;
    color: #B0B0B0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.member-social-links a:hover .si {
    color: #50fa7b;
    transform: translateY(-3px);
}

/* Sección de Proyectos Destacados (en la página de detalle) */
.featured-projects-section {
    background-color: #0A0A0A;
    padding: 80px 0;
}

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

.featured-project-card {
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #2C2C2C;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.featured-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    border-color: #50fa7b;
}

.featured-project-card .featured-project-icon {
    font-size: 3.5em;
    color: #50fa7b;
    margin-bottom: 20px;
    display: block;
}

.featured-project-card h3 {
    font-size: 1.5em;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.featured-project-card p {
    font-size: 0.95em;
    color: #B0B0B0;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Sección de Llamada a la Acción (CTA) al final de la página */
.cta-section-bottom {
    background-color: #1A1A1A;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #2C2C2C;
    border-bottom: 1px solid #2C2C2C;
}

.cta-section-bottom h2 {
    font-size: 2.5em;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.cta-section-bottom p {
    font-size: 1.1em;
    color: #B0B0B0;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Sección del Formulario de Inicio de Proyecto */
.start-project-form-section {
    background-color: #0A0A0A;
    padding: 80px 0;
}

.start-project-form-section .container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #1A1A1A;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid #2C2C2C;
}

.start-project-form-section h2 {
    font-size: 2em;
    color: #FFFFFF;
    margin-bottom: 30px;
    text-align: center;
}

.start-project-form .form-group {
    margin-bottom: 25px;
    text-align: left; /* Alinea los labels a la izquierda */
}

.start-project-form label {
    display: block;
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.start-project-form input,
.start-project-form textarea,
.start-project-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #2C2C2C;
    color: #E0E0E0;
    font-size: 1em;
    box-sizing: border-box;
}

.start-project-form input:focus,
.start-project-form textarea:focus,
.start-project-form select:focus {
    border-color: #50fa7b;
    outline: none;
    box-shadow: 0 0 0 2px rgba(80, 250, 123, 0.3);
}

.start-project-form textarea {
    resize: vertical;
}

.start-project-form select {
    appearance: none; /* Quita la flecha por defecto en algunos navegadores */
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg fill="%23B0B0B0" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.start-project-form .primary-button {
    width: auto;
    padding: 15px 35px;
    font-size: 1.1em;
    margin-top: 20px;
    display: block; /* Centrar el botón */
    margin-left: auto;
    margin-right: auto;
}

.start-project-form .form-note {
    color: #B0B0B0;
    font-size: 0.9em;
    text-align: center;
    margin-top: 10px;
}

/* Estilos de las páginas de Detalle de Proyecto (ej. proyecto-gestion.html) */
.project-details-content {
    background-color: #0A0A0A;
    padding: 60px 0;
}

.project-details-content .container {
    max-width: 900px; /* Un poco más amplio que el formulario */
    margin: 0 auto;
    padding: 40px;
    background-color: #1A1A1A;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid #2C2C2C;
    color: #E0E0E0;
    font-size: 1.1em;
    line-height: 1.7;
    text-align: left; /* Alineación de texto */
}

.project-details-content .container h3 {
    font-size: 1.8em;
    color: #50fa7b; /* Color de acento para subtítulos */
    margin-top: 30px;
    margin-bottom: 15px;
}

.project-details-content .container p {
    margin-bottom: 20px;
}

.project-details-content .container ul {
    list-style: disc; /* Vuelven las viñetas */
    margin-left: 20px;
    margin-bottom: 20px;
}

.project-details-content .container ul li {
    margin-bottom: 8px;
    color: #E0E0E0;
    font-size: 1em;
}


/* Responsive */
@media (max-width: 992px) {
    .hero-section .container,
    .about-us-section .container,
    .services-section .container,
    .awards-section .container,
    .projects-section .container,
    .testimonials-section .container,
    .faq-section .container,
    .contact-content,
    .intro-section-services .container,
    .hero-subpage-section .container,
    .services-detailed-section .container,
    .our-process-section .container,
    .cta-section-bottom .container,
    .featured-projects-section .container,
    .start-project-form-section .container, /* Añadido start-project-form-section */
    .project-details-content .container { /* Añadido project-details-content */
        grid-template-columns: 1fr; /* Una columna en tablets */
    }
    .hero-image, .about-image {
        order: -1;
        margin-bottom: 30px;
    }
    .hero-section {
        padding-top: 120px; /* Ajuste para header fixed */
    }
    .main-nav ul {
        gap: 20px;
    }
    .about-cards-grid {
        grid-template-columns: 1fr; /* Una columna en móviles */
    }
    .services-grid, .awards-grid, .projects-grid, .testimonials-grid, .process-steps-grid, .team-members-grid, .featured-projects-grid { /* Ajuste para grids en pantallas más pequeñas */
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .contact-info {
        margin-bottom: 40px; /* Espacio entre info y formulario en móvil */
    }
    /* Estilos responsive para la nueva página de detalle */
    .hero-subpage-section .hero-content h1 {
        font-size: 2.5em;
    }
    .service-category h3 {
        font-size: 1.8em;
    }
    .service-category .service-icon {
        font-size: 2em;
    }
    .process-steps-grid, .team-members-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .cta-section-bottom h2 {
        font-size: 2em;
    }
    .start-project-form-section .container,
    .project-details-content .container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .main-header .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .main-nav {
        order: 3;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    .main-nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    .cta-button {
        order: 2;
    }
    .hero-content h1 {
        font-size: 2.8em;
    }
    .hero-content .subheadline {
        font-size: 1em;
    }
    .hero-image {
        height: 280px; /* Ajusta la altura */
    }
    .about-content h2 {
        font-size: 2em;
    }
    .about-content .intro-paragraph {
        font-size: 0.95em;
    }
    .section-header h2 {
        font-size: 2em;
    }
    .section-header .section-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }
    .hero-content .subheadline {
        font-size: 0.9em;
    }
    .primary-button, .secondary-button {
        padding: 12px 20px;
        font-size: 0.9em;
    }
    .company-logos {
        gap: 20px;
    }
    .company-logos img {
        max-height: 40px;
    }
    .about-content h2 {
        font-size: 1.8em;
    }
    .about-content .intro-paragraph {
        font-size: 0.95em;
    }
    .section-header h2 {
        font-size: 1.8em;
    }
    .section-header .section-description {
        font-size: 0.95em;
    }
    .service-card h3, .projects-grid .project-card h3, .testimonial-card .client-name, .featured-projects-section .featured-project-card h3 {
        font-size: 1.3em;
    }
    .service-card p, .projects-grid .project-card p, .testimonial-card .quote, .featured-projects-section .featured-project-card p {
        font-size: 0.9em;
    }
    .awards-grid, .testimonials-grid, .projects-grid, .featured-projects-grid { /* Ajuste para grids en móviles */
        grid-template-columns: 1fr;
    }
    .award-card h3 {
        font-size: 1.2em;
    }
    .award-card p {
        font-size: 0.85em;
    }
    .faq-question h3 {
        font-size: 1em;
    }
    .faq-answer p {
        font-size: 0.9em;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-item.active .faq-answer {
        padding: 15px 20px 20px;
    }
    .contact-info h3, .contact-form h3 {
        font-size: 1.5em;
    }
    .contact-info p {
        font-size: 0.95em;
    }
    .contact-info .social-links a .si {
        font-size: 1.5em;
    }
    .contact-form label {
        font-size: 0.9em;
    }
    .contact-form input, .contact-form textarea {
        padding: 10px;
        font-size: 0.9em;
    }
    .contact-form .primary-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    /* Responsive para la nueva página de detalle */
    .hero-subpage-section .hero-content h1 {
        font-size: 2em;
    }
    .hero-subpage-section .hero-content .subheadline {
        font-size: 0.9em;
    }
    .service-category h3 {
        font-size: 1.5em;
    }
    .service-category p {
        font-size: 0.9em;
    }
    .service-category ul li {
        font-size: 0.9em;
    }
    .process-step-card h3 {
        font-size: 1.3em;
    }
    .process-step-card p {
        font-size: 0.85em;
    }
    .team-member-card h3 { /* Aplicar a la sección de equipo si no se eliminó */
        font-size: 1.4em;
    }
    .team-member-card .role, .team-member-card .bio { /* Aplicar a la sección de equipo si no se eliminó */
        font-size: 0.85em;
    }
    .cta-section-bottom h2 {
        font-size: 1.5em;
    }
    .cta-section-bottom p {
        font-size: 0.9em;
    }
    .start-project-form-section .container,
    .project-details-content .container {
        padding: 20px; /* Ajuste en móvil */
    }
    .project-details-content .container h3 {
        font-size: 1.5em;
    }
    .project-details-content .container p, .project-details-content .container ul li {
        font-size: 0.95em;
    }
}
