/* Básico */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Menú */
nav {
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
}

nav .logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

nav ul li a:hover {
    color: #00b4d8; /* Azul claro */
}

/* Secciones */
section {
    padding: 60px 20px;
    text-align: center;
}

#inicio {
    background-color: #f5f6f5; /* Gris claro como Satrack */
    margin-top: 60px;
}

h1 {
    color: #003087;
    font-size: 36px;
}

h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
}

p {
    color: #666;
    font-size: 18px;
}

/* Botón */
.btn {
    background-color: #003087;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    border-radius: 5px;
}

.btn:hover {
    background-color: #00b4d8;
}

/* Servicios */
.servicios-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.servicio {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.servicio h3 {
    color: #003087;
    font-size: 20px;
}

/* Formulario */
form {
    max-width: 400px;
    margin: 20px auto;
}

input, textarea {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #003087;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #00b4d8;
}
/* Beneficios */
#beneficios {
    background-color: #f5f6f5; /* Gris claro como en Satrack */
    padding: 60px 20px;
}

.beneficios-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.beneficio {
    width: 250px;
    text-align: center;
}

.beneficio img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.beneficio h3 {
    color: #003087; /* Azul oscuro */
    font-size: 20px;
    margin-bottom: 10px;
}

.beneficio p {
    color: #666;
    font-size: 16px;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 5rem 2rem;
    background: #003399;
    color: white;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/pattern.png');
    opacity: 0.1;
    pointer-events: none;
}

.why-choose-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.why-choose-title h6 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.why-choose-title h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.why-choose-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.why-choose-item:hover .why-choose-icon {
    background: var(--secondary-color);
    transform: rotateY(360deg);
}

.why-choose-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
}

.why-choose-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Categorías Section */
.categories-section {
    padding: 5rem 2rem;
    background: var(--background-color);
}

.categories-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.categories-title h6 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.categories-title h2 {
    color: #003399;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 400px;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
              0 0 20px rgba(0, 123, 255, 0.3),
              0 0 40px rgba(0, 123, 255, 0.1);
    border-color: rgba(0, 123, 255, 0.5);
}

.category-card:hover::before {
    opacity: 1;
}

.category-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(70%);
    transition: transform 0.3s ease;
}

.category-card:hover .category-content {
    transform: translateY(0);
}

.category-content h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.category-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.category-card:hover .category-content p {
    opacity: 1;
    transform: translateY(0);
}

.category-link {
    display: inline-flex;
    align-items: center;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    text-shadow: 0 0 10px rgba(0,247,255,0.5);
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateY(0);
}

.category-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.category-link:hover {
    color: white;
}

.category-link:hover i {
    transform: translateX(5px);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, 
        #003399, 
        #0066cc,
        #003399);
    background-size: 200% 100%;
    transform-origin: 0 50%;
    transform: scaleX(0);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    animation: gradientShift 5s linear infinite;
}
@keyframes gradientShift {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* Navegación Moderna */
nav {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(0, 48, 130, 0.95);
}

nav.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00ccff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Search styles */
.search-container {
    position: fixed;
    top: 20px;
    right: 150px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-toggle {
    background: #f8f9ff;
    border: 2px solid #003399;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.search-toggle:hover {
    transform: scale(1.1);
}

.search-input {
    width: 0;
    padding: 0;
    border: none;
    background: white;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.search-input.active {
    width: 200px;
    padding: 0 20px;
    opacity: 1;
    visibility: visible;
    border: 2px solid #003399;
}

.search-highlight {
    background-color: #00ccff;
    color: #333;
    padding: 2px 0;
    border-radius: 3px;
    transition: background-color 0.3s;
}

/* Progress bar styles */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 1001;
}

.progress-bar {
    height: 100%;
    background: #00ccff;
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 2px 4px rgba(0, 204, 255, 0.3);
}

/* Efectos de hover modernos */
.hover-float {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.hover-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.hover-glow {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.hover-glow:hover {
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.3);
}
.hover-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(45deg, transparent, rgba(0, 204, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.hover-glow:hover::before {
    opacity: 1;
}

.hover-scale {
    transition: transform 0.3s ease;
}
.hover-scale:hover {
    transform: scale(1.05);
}

/* Gradientes modernos */
.gradient-bg {
    background: linear-gradient(135deg, 
        #003399, 
        #0066cc,
        #003399);
    background-size: 200% 200%;
    animation: gradientMove 20s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    position: relative;
    overflow: hidden;
}
.gradient-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.2));
    opacity: 0.5;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Efecto de brillo en bordes */
.glow-border {
    position: relative;
    overflow: hidden;
}
.glow-border::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}




/* Loader styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #003399;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #00ccff;
    border-radius: 50%;
    animation: spin 1s linear infinite, pulse 1s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

/* Estilos del segundo bloque <style> */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7fc;
    line-height: 1.6;
    overflow-x: hidden;
    color: #333;

}
header {
    background: #003399;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.logo {
    font-size: 2.5rem;
    font-weight: 600;
    animation: slideInLeft 1s ease-out;
    position: relative;
    z-index: 1001;
}
.menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}
.menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}
.menu a:hover {
    color: #00ccff;
    transform: scale(1.1);
}
.btn-app {
    background-color: #0055cc;
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
    animation: bounceIn 1s ease-out 0.5s;
}
.btn-app:hover {
    background-color: #003d99;
    transform: scale(1.05);
}
.hero {
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 6rem 1rem;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: fadeIn 1.5s ease-in;
    position: relative;
    background-size: 120%;
    animation: moveBackground 40s ease-in-out infinite;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.hero h1, .hero p, .hero .btn {
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    animation: slideInDown 1s ease-out;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: slideInUp 1s ease-out 0.3s;
}
.hero .btn {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.2s, background-color 0.3s, border-color 0.3s;
    animation: bounceIn 1s ease-out 0.6s;
    margin-bottom: 2rem;
}
.hero .btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    border-color: #00ccff;
}
.services, .team, .platforms {
    padding: 3rem 1rem;
    text-align: center;
}
.services h2, .team h2, .platforms h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}
.service-cards, .team-cards, .platform-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.card {
    background: #f8f9ff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 300px;
    transition: transform 0.3s;
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: backwards;
}
.services .card:nth-child(1), .team .card:nth-child(1), .platforms .card:nth-child(1) { animation-delay: 0.2s; }
.services .card:nth-child(2), .team .card:nth-child(2), .platforms .card:nth-child(2) { animation-delay: 0.4s; }
.services .card:nth-child(3), .team .card:nth-child(3), .platforms .card:nth-child(3) { animation-delay: 0.6s; }
.card:hover {
    transform: translateY(-5px);
}
.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
/* Sección SeaWorld */
.product-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.product-card {
    background: #f8f9ff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    background: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, #ffffff 0%, #f0f4f8 100%);
    opacity: 0.8;
}

.product-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,51,153,0.05) 0%, rgba(0,204,255,0.05) 100%);
}

.product-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    height: 65%;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 15px rgba(0, 51, 153, 0.15));
    padding: 1rem;
}

.product-card:hover .product-image {
    transform: translate(-50%, -50%) scale(1.08);
    filter: drop-shadow(0 15px 20px rgba(0, 51, 153, 0.2));
}

.product-card:hover .product-image-wrapper::before {
    opacity: 0.9;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #003399;
}

.product-description {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.product-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-features li i {
    color: #ffffff;
    font-size: 1rem;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 204, 255, 0.3);
}
.seeworld-section {
    background: linear-gradient(135deg, #003399 0%, #0066cc 100%);
    padding: 4rem 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

.seeworld-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.seeworld-logo {
    width: 60px;
    height: auto;
}

.seeworld-title {
    font-size: 2.5rem;
    color: white;
    font-weight: 600;
    margin: 0;
}

.seeworld-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.seeworld-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    color: #00ccff;
    font-size: 1.2rem;
}

.seeworld-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

@media (min-width: 1200px) {
    .seaworld-products {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 8px;
    margin: 0 auto 1.5rem;
    display: block;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    transition: transform 0.3s;
}

.product-card img:hover {
    transform: scale(1.05);
}

.product-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: white;
    font-weight: 600;
}

.product-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Sistema de Rastreo GPS Styles */
.seeworld-tracking-system {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tracking-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.tracking-description {
    font-size: 1.4rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
}

.tracking-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.video-showcase {
    margin: 2rem auto 5rem;
    max-width: 1000px;
    padding: 0 1rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2.5rem;
    color: #00ccff;
    margin-bottom: 1.5rem;
}

.feature-box h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.tracking-capabilities {
    margin-bottom: 5rem;
}

.tracking-capabilities h3 {
    font-size: 2rem;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.capability-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.capability-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.capability-item i {
    font-size: 1.5rem;
    color: #00ccff;
}

.capability-item span {
    color: white;
    font-size: 1.1rem;
}

.tracking-applications {
    margin-top: 5rem;
}

.tracking-applications h3 {
    font-size: 2rem;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

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

.application-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
}

.application-item:hover {
    transform: translateY(-5px);
}

.application-item i {
    font-size: 2.5rem;
    color: #00ccff;
    margin-bottom: 1.5rem;
}

.application-item h4 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1rem;
}

.application-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.product-card h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.product-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.seeworld-cta {
    display: inline-block;
    background: #00ccff;
    color: #003399;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 2rem;
}

.seeworld-cta:hover {
    background: white;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .seaworld-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .seaworld-content {
        text-align: center;
    }

    .seaworld-features {
        justify-content: center;
    }
}

.contact-section {
    background: linear-gradient(135deg, #003399 0%, #0066cc 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-heading {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.contact-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

.contact-info {
    margin-bottom: 4rem;
    position: relative;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem 3rem;
    margin: 0 auto;
    flex-wrap: wrap;
    max-width: 900px;
    padding: 1.5rem;
    position: relative;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.7rem 1.2rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    letter-spacing: 0.5px;
}

.contact-link:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.contact-link:hover::after {
    width: 80%;
}

.app-store-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
}

.store-badge {
    transition: all 0.3s ease;
    opacity: 0.9;
    display: inline-block;
}

.store-badge:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.store-badge img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}
.app-store-badge:hover {
    transform: translateY(-3px) scale(1.05);
    filter: drop-shadow(0 6px 8px rgba(0,0,0,0.15));
}

.app-gallery-badge {
    height: 35px;
}

@media (max-width: 768px) {
    .contact-heading {
        font-size: 2.5rem;
    }

    .contact-links {
        gap: 1rem 2rem;
        padding: 0.8rem;
    }

    .contact-link {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }

    .app-store-badges {
        padding: 1.5rem;
        gap: 1rem;
    }

    .app-store-badge {
        height: 40px;
    }

    .app-gallery-badge {
        height: 30px;
    }
}

.contact {
    padding: 3rem 1rem;
    background: #003399;
    color: white;
    text-align: center;
    animation: slideInRight 1s ease-out;
}
.contact h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}
.contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out 0.3s;
    animation-fill-mode: backwards;
}
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #003399;
    outline: none;
}

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

.submit-button {
    background: #003399;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background: #0055cc;
}
footer {
    padding: 4rem 2rem 2rem;
    background: #003399;
    color: white;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo .logo {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.footer-column h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #00ccff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #e6eeff 0%, #f0f4ff 100%);
    position: relative;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    font-size: 2.2rem;
    color: #003399;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-content h3 {
    font-size: 1.4rem;
    color: #0055cc;
    margin-bottom: 3rem;
    font-weight: 500;
}

.contact-info-grid {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 600px;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.contact-phone i {
    font-size: 1.8rem;
    color: #003399;
}

.phone-details {
    display: flex;
    flex-direction: column;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #003399;
}

.phone-option {
    font-size: 0.9rem;
    color: #666;
}

.social-media {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #003399;
    color: white;
    border-radius: 50%;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background: #0055cc;
}

.app-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.app-badge img {
    height: 40px;
    transition: opacity 0.3s;
}

.app-badge:hover img {
    opacity: 0.9;
}

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: transform 0.3s, box-shadow 0.3s;
}

.floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp {
    background-color: #25d366;
    animation: pulse 2s infinite;
}

.phone {
    background-color: #003399;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.scroll-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #003399;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    cursor: pointer;
}

.scroll-top:hover {
    background: #0055cc;
    transform: translateY(-3px);
}

.scroll-top.visible {
    display: flex;
    animation: fadeIn 0.5s ease-out;
}

/* Estilos para testimonios */
.testimonials {
    background: linear-gradient(135deg, #f4f7fc 0%, #e6eeff 100%);
    padding: 4rem 1rem;
    text-align: center;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-button {
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-button:hover,
.filter-button.active {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .filter-buttons {
        gap: 0.5rem;
    }
    .filter-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

.testimonials h2 {
    color: #003399;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    padding: 0 1rem;
    box-sizing: border-box;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 1rem;
    max-width: 600px;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--primary-color);
    color: white;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.testimonial-rating {
    margin-bottom: 1rem;
    color: #ffd700;
}

.testimonial-rating i {
    margin: 0 2px;
}

.testimonial-content {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    color: #003399;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-company {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccd6e6;
    cursor: pointer;
    transition: background-color 0.3s;
}

.testimonial-dot.active {
    background: #003399;
}

/* Estilos para FAQ */
.faq-section {
    padding: 4rem 1rem;
    background: #ffffff;
}

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

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

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 1.2rem;
    background: #f8f9ff;
    color: #003399;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background: #eef1ff;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    padding: 1.2rem;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Estilos para lazy loading */
.lazy-image {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.lazy-image.loaded {
    opacity: 1;
}

.image-placeholder {
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
    border-radius: 5px;
}

@keyframes shimmer {
    to {
        background-position-x: -200%;
    }
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes slideInDown {
    from { transform: translateY(-50%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes slideInUp {
    from { transform: translateY(50%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes bounceIn {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); }
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
@keyframes moveBackground {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .logo {
        font-size: 1.8rem;
        z-index: 10;
    }

    .hamburger {
        display: flex;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        align-items: center;
        padding: 0 1rem;
    }
    
    .social-media, .app-badges {
        justify-content: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-logo {
        align-items: center;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-logo p {
        text-align: center;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content h2 {
        font-size: 1.8rem;
    }
    
    .contact-content h3 {
        font-size: 1.2rem;
    }
    
    .contact-phone {
        justify-content: center;
    }
    
    .social-media, .app-badges {
        justify-content: center;
    }
    
    .contact-info {
        text-align: center;
    }

    .hamburger.active span:first-child {
        transform: rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:last-child {
        transform: rotate(-45deg);
    }

    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 51, 153, 0.98);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 5;
    }

    nav.active {
        transform: translateX(0);
    }

    .menu {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .menu a {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
    }
    .btn-app {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        width: auto;
    }
    .hero {
        padding: 3rem 1rem;
        min-height: 50vh;
    }
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .hero .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    .service-cards, .team-cards, .platform-cards {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .card {
        max-width: 100%;
        padding: 1.2rem;
        margin: 0 1rem;
    }
    .seaworld-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    .seeworld-title {
        font-size: 1.5rem;
    }
    .tracking-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .feature-box {
        padding: 1.2rem;
    }
    .contact form {
        width: 90%;
        padding: 0 1rem;
    }
    .contact button {
        padding: 0.6rem 1.2rem;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    .whatsapp {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
}