* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    min-height: 100vh;
}

header {
    background-color: #1a1a2e;
    color: white;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

h1 {
    padding: 1.2rem 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav {
    background-color: transparent;
    border-top: none;
    flex: 1;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    max-width: none;
    margin: 0;
    padding-right: 2rem;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    display: block;
    color: #e0e0e0;
    text-decoration: none;
    padding: 1.2rem 2rem;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #0ea5e9;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover {
    color: #ffffff;
    background-color: rgba(14, 165, 233, 0.1);
}

nav ul li a:hover::after {
    width: 80%;
}

main {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

main h2 {
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

main h3 {
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    padding-left: 0.5rem;
    border-left: 4px solid #0ea5e9;
}

form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.half {
    flex: 1;
}

.form-group.third {
    flex: 1;
}

form label {
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

form input,
form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background-color: #ffffff;
    color: #1f2937;
}

form input:focus,
form select:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

form input:hover,
form select:hover {
    border-color: #cbd5e1;
}

form button {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #0ea5e9;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

form button:hover {
    background-color: #0284c7;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
    transform: translateY(-1px);
}

form button:active {
    transform: translateY(0);
}

form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background-color: #ffffff;
    color: #1f2937;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    resize: vertical;
}

form textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

form textarea:hover {
    border-color: #cbd5e1;
}

form input[type="file"] {
    padding: 0.5rem;
    cursor: pointer;
}

form input[type="file"]::-webkit-file-upload-button {
    padding: 0.5rem 1rem;
    background-color: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

form input[type="file"]::-webkit-file-upload-button:hover {
    background-color: #e5e7eb;
}

.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
    text-transform: none;
    font-size: 1rem;
    color: #374151;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.75rem;
    cursor: pointer;
    width: 1.2rem;
    height: 1.2rem;
}

.checkbox-label span {
    user-select: none;
}

.about-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    margin-bottom: 3rem;
    border: 1px solid #e5e7eb;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    text-align: center;
}

.team-section {
    margin-bottom: 3rem;
}

.team-section h3 {
    color: #1a1a2e;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    border-bottom: 3px solid #0ea5e9;
    padding-bottom: 0.5rem;
    display: inline-block;
    width: 100%;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.team-grid.gerencia {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 900px;
    margin: 0 auto 2rem;
}

.team-member {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.team-member h4 {
    color: #1a1a2e;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-member p {
    color: #6b7280;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.team-member .specialty {
    color: #0ea5e9;
    font-size: 0.85rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #0077b5;
    color: white;
    border-radius: 50%;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.linkedin-link:hover {
    background-color: #005582;
    transform: scale(1.1);
}

.index-main {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(14,165,233,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1a1a2e;
}

.btn-light {
    background: white;
    color: #1a1a2e;
}

.btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

.info-section {
    padding: 5rem 2rem;
    background: #f5f7fa;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.info-container > h2 {
    color: #1a1a2e;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
    text-align: center;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-mini-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
}

.info-mini-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #0ea5e9;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.info-mini-card h3 {
    color: #1a1a2e;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-mini-card p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
    text-align: justify;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.stat-card i {
    font-size: 3rem;
    color: #0ea5e9;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 3rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-card p {
    color: #6b7280;
    font-size: 1.1rem;
}

.services-preview {
    padding: 5rem 2rem;
    background: white;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 3rem;
    font-weight: 600;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #0ea5e9;
}

.service-card i {
    font-size: 3.5rem;
    color: #0ea5e9;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    padding: 6rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.collaborators-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
}

.collaborators-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 3rem;
    font-weight: 600;
}

.collaborators-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    align-items: center;
}

.collaborator-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.collaborator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.collaborator-card img {
    max-width: 140px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.collaborator-card:hover img {
    filter: grayscale(0%);
}

.collaborator-card.text-logo {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
}

.collaborator-card.text-logo h4 {
    color: #1a1a2e;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    letter-spacing: 0.5px;
}

.collaborator-card.text-logo:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-color: #0ea5e9;
}

.collaborator-card.text-logo:hover h4 {
    color: #0ea5e9;
}

footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 2.5rem 1rem 1.5rem;
    margin-top: 4rem;
    border-top: 4px solid #0ea5e9;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-info {
    margin-bottom: 2rem;
}

.footer-address {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-contact p {
    color: #e0e0e0;
    font-size: 0.95rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.footer-contact p:hover {
    background: rgba(14, 165, 233, 0.2);
    transform: translateY(-2px);
}

.footer-contact i {
    color: #0ea5e9;
    font-size: 1rem;
}

.footer-content > p {
    margin: 2rem 0 1.5rem;
    font-size: 0.95rem;
    color: #cbd5e1;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links span {
    color: #cbd5e1;
    font-weight: 300;
    font-size: 0.9rem;
}

.footer-links span:first-child {
    font-weight: 300;
}

.footer-links a {
    color: #0ea5e9;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0ea5e9;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #06b6d4;
}

.footer-links a:hover::after {
    width: 100%;
}

.projects-section {
    padding: 5rem 2rem;
    background: #f5f7fa;
}

.projects-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 3rem;
    font-weight: 600;
}

.projects-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.project-image {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.project-image i {
    font-size: 4rem;
    color: white;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    color: #1a1a2e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.project-content p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: #0284c7;
    gap: 0.8rem;
}

.project-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.project-link:hover i {
    transform: translateX(4px);
}

.team-member-image {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 320px;
}

.member-photo {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    background-color: #e5e7eb;
}

.member-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -1;
}

.member-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.8) 70%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member-image:hover .member-info-overlay {
    transform: translateY(0);
}

.member-info-overlay h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.member-info-overlay p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.member-info-overlay .specialty {
    color: #0ea5e9;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}

.member-info-overlay .linkedin-link {
    background-color: rgba(255, 255, 255, 0.1);
}

.project-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.project-details p {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.project-details strong {
    color: #1a1a2e;
    font-weight: 600;
}

.service-page {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.service-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 6rem 2rem;
    text-align: center;
    color: white;
}

.service-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-tagline {
    font-size: 1.8rem;
    color: #0ea5e9;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
}

.service-features {
    padding: 5rem 2rem;
    background: white;
}

.service-features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 3rem;
    font-weight: 600;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-item i {
    font-size: 3.5rem;
    color: #0ea5e9;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.4rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.6;
}

.service-benefits {
    padding: 5rem 2rem;
    background: #f5f7fa;
}

.service-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 3rem;
    font-weight: 600;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2.5rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
}

.service-tech {
    padding: 5rem 2rem;
    background: white;
}

.service-tech h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 3rem;
    font-weight: 600;
}

.tech-logos {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.tech-logo-item {
    flex: 0 1 150px;
}

.tech-logo-item img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.tech-logo-item:hover img {
    filter: grayscale(0%);
}

.service-plans {
    padding: 5rem 2rem;
    background: #f5f7fa;
}

.service-plans h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 3rem;
    font-weight: 600;
}

.plans-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.plan-card.featured {
    border: 3px solid #0ea5e9;
    transform: scale(1.05);
}

.service-card.featured-service {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    position: relative;
    overflow: visible;
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.featured-service i {
    color: white;
}

.featured-service h3 {
    color: white;
}

.featured-service p {
    color: rgba(255, 255, 255, 0.95);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.service-link:hover {
    color: #0284c7;
    gap: 0.8rem;
}

.service-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* Para servicios destacados también debe ser visible */
.featured-service .service-link {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
}

.featured-service .service-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

.plan-card h3 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.plan-price {
    font-size: 2.5rem;
    color: #0ea5e9;
    font-weight: 700;
    margin-bottom: 2rem;
}

.plan-price span {
    font-size: 1.2rem;
    color: #6b7280;
    font-weight: 400;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.8rem 0;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.plan-features i {
    color: #10b981;
    font-size: 1.1rem;
}

.service-cta {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.service-process {
    padding: 5rem 2rem;
    background: white;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 4rem;
    font-weight: 600;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: #f1f5f9;
    transform: translateX(10px);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.process-step h3 {
    color: #1a1a2e;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.process-step p {
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.service-use-cases {
    padding: 5rem 2rem;
    background: #f5f7fa;
}

.service-use-cases h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 3rem;
    font-weight: 600;
}

.use-cases-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.use-case-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.use-case-card i {
    font-size: 3rem;
    color: #0ea5e9;
    margin-bottom: 1.5rem;
}

.use-case-card h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.use-case-card ul {
    list-style: none;
    padding: 0;
}

.use-case-card ul li {
    padding: 0.6rem 0;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.use-case-card ul li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-types {
    padding: 5rem 2rem;
    background: white;
}

.service-types h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 3rem;
    font-weight: 600;
}

.certificate-types {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cert-type-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 2px solid #e5e7eb;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.cert-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.cert-type-card.featured {
    border-color: #0ea5e9;
    transform: scale(1.05);
}

.cert-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.cert-type-card h3 {
    font-size: 1.6rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cert-features {
    text-align: left;
    margin: 2rem 0;
}

.cert-features p {
    padding: 0.6rem 0;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cert-features i {
    color: #10b981;
    font-size: 1rem;
}

.cert-price {
    font-size: 1.8rem;
    color: #0ea5e9;
    font-weight: 700;
    margin-top: 1.5rem;
}

.sla-levels {
    padding: 5rem 2rem;
    background: #f5f7fa;
}

.sla-levels h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 3rem;
    font-weight: 600;
}

.sla-table {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.sla-table table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.sla-table thead {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
}

.sla-table th {
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.sla-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.sla-table tbody tr {
    transition: background 0.3s ease;
}

.sla-table tbody tr:hover {
    background: #f8f9fa;
}

.priority-critical td:first-child {
    color: #dc2626;
    font-weight: 600;
}

.priority-high td:first-child {
    color: #f59e0b;
    font-weight: 600;
}

.priority-medium td:first-child {
    color: #3b82f6;
    font-weight: 600;
}

.priority-low td:first-child {
    color: #10b981;
    font-weight: 600;
}

.sla-table td:first-child i {
    margin-right: 0.5rem;
}

.services-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #0ea5e9;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-title i {
    color: #0ea5e9;
    font-size: 1.8rem;
}

.services-preview {
    padding: 0 2rem 3rem;
}

@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .process-step:hover {
        transform: translateY(-5px);
    }

    .sla-table {
        font-size: 0.9rem;
    }
    
    .sla-table th,
    .sla-table td {
        padding: 1rem 0.5rem;
    }

    .category-title {
        font-size: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .category-title i {
        font-size: 1.5rem;
    }
}