:root {
    --azul-principal: #0052CC;
    --azul-secundario: #0077B6;
    --azul-claro: #90E0EF;
    --azul-oscuro: #03045E;
    --azul-accent: #00B4D8;
    --fondo-claro: #F0F7FF;
    --texto-oscuro: #172B4D;
    --texto-claro: #FFFFFF;
    --gris-claro: #F1F2F4;
    --gris-medio: #DFE1E6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--texto-oscuro);
    background-image: url('../img/technology1.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 4, 94, 0.85);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles - Con estilo glassmorphism */
header {
    background-color: rgba(3, 4, 94, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--texto-claro);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    color: var(--texto-claro);
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

.logo::after {
    content: 'LLC';
    font-size: 12px;
    position: absolute;
    right: -20px;
    top: 5px;
    color: var(--azul-accent);
}

.logo span {
    color: var(--azul-accent);
}

.contact-info {
    display: flex;
    gap: 25px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 15px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
}

.contact-item i {
    margin-right: 8px;
    font-size: 18px;
    color: var(--azul-accent);
}

/* Navigation - con efecto hover avanzado */
nav {
    background-color: rgba(0, 82, 204, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 8px;
}

.main-menu {
    display: flex;
    list-style-type: none;
    justify-content: center;
}

.main-menu li {
    position: relative;
}

.main-menu li a {
    color: var(--texto-claro);
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.main-menu li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--azul-accent);
    transition: width 0.3s ease;
    z-index: -1;
}

.main-menu li a:hover::before {
    width: 70%;
}

.main-menu li a:hover {
    color: var(--azul-claro);
}

/* Estilos para menú móvil */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--texto-claro);
    font-size: 24px;
    cursor: pointer;
}

/* Content Styles */
.content-wrapper {
    padding-top: 120px; /* Espacio para header fijo */
}

/* Hero Section - Modificado con diseño moderno */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--texto-claro);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(20px);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--azul-accent), var(--azul-claro));
    border-radius: 2px;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 35px;
    line-height: 1.7;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--azul-accent), var(--azul-secundario));
    color: var(--texto-claro);
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 6px 15px rgba(0, 180, 216, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, var(--azul-secundario), var(--azul-accent));
    transition: all 0.4s;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 180, 216, 0.4);
}

/* Services Section - Con tarjetas avanzadas */
.section-title {
    text-align: center;
    margin: 50px 0 40px;
    position: relative;
    color: var(--texto-claro);
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    padding: 0 15px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-title h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--azul-accent);
    border-radius: 2px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--azul-accent), transparent);
    transition: height 0.4s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
}

.service-icon {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 180, 216, 0.1);
    transition: all 0.3s ease;
    padding: 20px;
    overflow: hidden;
}

.service-icon img {
    max-width: 100%;
    max-height: 120px;
    transition: all 0.3s ease;
    object-fit: cover;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-info {
    padding: 30px;
    color: var(--texto-claro);
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--azul-claro);
    position: relative;
    padding-bottom: 15px;
}

.service-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--azul-accent);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.service-card:hover .service-info h3::after {
    width: 70px;
}

.service-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Why Choose Us - Rediseñado */
.why-us {
    background-color: rgba(3, 4, 94, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 80px 0;
    margin: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--azul-principal), var(--azul-claro));
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 82, 204, 0.3);
    transition: all 0.3s ease;
    padding: 0;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 82, 204, 0.5);
}

.feature:hover .feature-icon img {
    opacity: 0.9;
}

.feature h3 {
    font-size: 1.3rem;
    color: var(--azul-claro);
    margin-bottom: 15px;
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Footer - Modernizado */
footer {
    background-color: rgba(3, 4, 94, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--texto-claro);
    padding: 70px 0 20px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--azul-claro);
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--azul-accent);
}

.footer-col p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    list-style-type: none;
}

.footer-links li {
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    display: block;
}

.footer-links a:hover {
    color: var(--azul-accent);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background-color: var(--azul-accent);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Página de Servicios - Detalle */
.service-detail {
    padding: 50px 0;
    color: var(--texto-claro);
}

.service-detail-header {
    margin-bottom: 50px;
    text-align: center;
}

.service-detail-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: var(--azul-claro);
}

.service-detail-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--azul-accent);
    border-radius: 2px;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-detail-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

.service-detail-text h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--azul-claro);
    position: relative;
    padding-bottom: 15px;
}

.service-detail-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--azul-accent);
}

.service-detail-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.service-benefits {
    margin-top: 30px;
}

.service-benefits h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--azul-claro);
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--azul-accent);
    font-weight: bold;
}

/* Página Sobre Nosotros */
.about-section {
    padding: 50px 0;
    color: var(--texto-claro);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--azul-claro);
    position: relative;
    padding-bottom: 15px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--azul-accent);
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 70px;
}

.mission, .vision {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.mission:hover, .vision:hover {
    transform: translateY(-10px);
}

.mission h3, .vision h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--azul-claro);
    position: relative;
    padding-bottom: 15px;
}

.mission h3::after, .vision h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--azul-accent);
}

.mission p, .vision p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.team-section {
    margin-bottom: 70px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-photo {
    position: relative;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.team-member:hover .team-photo img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px 20px;
}

.team-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--azul-claro);
}

.team-info p.role {
    color: var(--azul-accent);
    margin-bottom: 15px;
    font-weight: 500;
}

.team-info p.bio {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Estilos para Proyectos */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.project-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.project-image {
    height: 220px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-info {
    padding: 25px;
    color: var(--texto-claro);
}

.project-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--azul-claro);
}

.project-info .client {
    color: var(--azul-accent);
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.project-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.project-tag {
    background-color: rgba(0, 82, 204, 0.2);
    color: var(--azul-claro);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Estilos para FAQ */
.faq-section {
    padding: 50px 0;
    color: var(--texto-claro);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    position: relative;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--azul-claro);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Estilos para Contacto */
.contact-section {
    padding: 50px 0;
    color: var(--texto-claro);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 70px;
}

.contact-info-box {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 82, 204, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 20px;
    color: var(--azul-accent);
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    background-color: var(--azul-accent);
    color: var(--texto-claro);
    transform: translateY(-5px);
}

.contact-info-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--azul-claro);
}

.contact-info-content p, .contact-info-content a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.contact-info-content a:hover {
    color: var(--azul-accent);
}

.contact-social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: var(--azul-claro);
    position: relative;
    padding-bottom: 15px;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--azul-accent);
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--texto-claro);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--azul-accent);
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.3);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, var(--azul-accent), var(--azul-secundario));
    color: var(--texto-claro);
    padding: 14px 30px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 15px rgba(0, 180, 216, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, var(--azul-secundario), var(--azul-accent));
    transition: all 0.4s;
    z-index: 0;
}

.submit-btn:hover::before {
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 180, 216, 0.4);
}

.map-container {
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Estilos para Soporte Empresarial */
.support-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.plan-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
}

.plan-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 82, 204, 0.2);
}

.plan-card.featured .plan-header {
    background: linear-gradient(135deg, var(--azul-secundario), var(--azul-principal));
}

.plan-name {
    font-size: 1.8rem;
    color: var(--azul-claro);
    margin-bottom: 15px;
}

.plan-card.featured .plan-name {
    color: var(--texto-claro);
}

.plan-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--texto-claro);
    margin-bottom: 10px;
}

.plan-billing {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.plan-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--azul-accent);
    font-weight: bold;
}

.plan-action {
    text-align: center;
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, var(--azul-accent), var(--azul-principal));
    color: var(--texto-claro);
    padding: 5px 30px;
    font-size: 0.8rem;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-content {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .support-plans {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .top-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    /* Menú móvil */
    .menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    nav {
        width: 100%;
    }

    .main-menu {
        flex-direction: column;
        display: none;
    }

    .main-menu.active {
        display: flex;
    }

    .main-menu li a {
        padding: 12px 15px;
    }

    .services {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}