/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* COLORES */
:root {
    --azul-oscuro: #272B36;
    --azul-profundo: #143D5B;
    --gris: #595D66;
    --claro: #F4F6F8;
    --blanco: #ffffff;
    --naranja: #ff7a00;
}
.float-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px; /* espacio entre botones */
    z-index: 1000;
}

/* estilo general */
.float-buttons a {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    text-decoration: none;
    color: white;
    background: #25D366; /* verde */
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: 0.3s;
}

/* hover */
.float-buttons a:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

/* BODY */
body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: var(--claro);
    color: var(--azul-oscuro);
    line-height: 1.6;
}

/* CONTENEDOR */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */
.Navegacion {
    background: white;
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.Navegacion .container {
    display: flex;
    align-items: center;
}

/* LOGO */
.Navegacion img {
    width: 70px;
    margin-right: 8px;
}

/* TEXTO LOGO */
.Navegacion h1 {
    font-size: 18px;
    color: var(--azul-profundo);
    margin-right: auto;
}

/* MENÚ */
nav {
    margin: 0 auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    color: var(--azul-profundo);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: var(--naranja);
}

/* BOTÓN */
.btn {
    background: var(--naranja);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-left: auto;
    transition: 0.3s;
}

.btn:hover {
    background: #e66a00;
    transform: translateY(-2px);
}

.btn-call {
    background: white;
    color: var(--azul-profundo);
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 10px;
    border: 2px solid var(--azul-profundo);
    transition: 0.3s;
    display: inline-block;
    }
.btn-call:hover {
    background: var(--azul-profundo);
    color: white;
    transform: translateY(-2px);
}
.btn-call {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
}

/*HERO */
.principal {
    background: linear-gradient(120deg, #143D5B, #272B36);
    color: white;
    padding: 100px 0;
}

.principal-text {
    max-width: 600px;
}

.principal h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.principal p {
    font-size: 18px;
    color: #ddd;
}
.principal {
    background: linear-gradient(rgba(20,61,91,0.7), rgba(39,43,54,0.8)),
        url("Fotos/principal.png") center/120% no-repeat;
}
/* BOTÓN PRINCIPAL */
.btn-primary {
    display: inline-block;
    background: var(--naranja);
    color: white;
    padding: 14px 25px;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #e66a00;
    transform: translateY(-3px);
}
/*SERVICIOS */
.services {
    padding: 80px 0;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.cards {
    display: flex;
    gap: 25px;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
}

.card h3 {
    margin-bottom: 10px;
}

/* Precios */
.precios {
    padding: 30px 0;
}

.precio-item {
    display: flex;
    align-items: center;
    background: white;
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.precio-item:hover {
    transform: scale(1.02);
}

.precios h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 35px;
}
/* imagen */
.precio-item img {
    width: 300px;
    height: 180px;
    object-fit: cover;
}

/* texto */
.precio-info {
    padding: 20px;
}

.precio-info h3 {
    margin-bottom: 10px;
    color: var(--azul-profundo);
}

.precio-info .precio {
    font-size: 28px;
    font-weight: bold;
    color: var(--naranja);
    margin-bottom: 10px;
}

/* Destacado */
.destacado {
    transform: scale(1.05);
}
/*Cobertura*/
.cobertura-grid {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    align-items: center;
}

.info {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    width: 40%;
    background: rgba(20, 61, 91, 0.1); 
    color: var(--azul-profundo);
}

.mapa {
    width: 60%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
/* SOPORTES */
.soportes {
    padding: 80px 0;
    text-align: center;
}

.soportes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* tarjetas */
.soporte-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.soporte-card:hover {
    transform: translateY(-6px);
}

/* imagen */
.soporte-card {
    background: rgba(20, 61, 91, 0.08); /* azul traslúcido */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.soporte-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(20, 61, 91, 0.15);
}

/* texto */
.soporte-card h3 {
    margin: 15px 0 10px;
    color: var(--azul-profundo);
}

.soporte-card p {
    padding: 0 15px 20px;
    color: var(--gris);
}

/* items */
.item {
    background: rgba(20,61,91,0.05);
    padding: 20px;
    border-radius: 12px;
    width: 250px;
    transition: 0.3s;
}

.item:hover {
    transform: translateY(-5px);
}
.soporte-card img {
    width: 100%;
    height: 180px;
    object-fit: contain; 
    background: white;  
    padding: 10px;
}
/* títulos */
.item h3 {
    color: var(--azul-profundo);
    margin-bottom: 8px;
}


/*CTA */
.cta {
    background: var(--azul-profundo);
    color: white;
    padding: 80px 0;
}

/* contenedor */
.cta .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* logo */
.cta img {
    width: 156px; 
    height: auto;
}

/* lado derecho */
.cta-content {
    display: flex;
    flex-direction: column;
}

/* título arriba */
.cta h2 {
    margin-bottom: 15px;
}

/* botones en fila */
.cta-buttons {
    display: flex;
    gap: 10px;
}

/* botón llamar */
.btn-call {
    background: white;
    color: var(--azul-profundo);
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-call:hover {
    background: #e6e6e6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cards {
        flex-direction: column;
    }

    nav ul {
        display: none;
    }

    .principal h2 {
        font-size: 28px;
    }
}