/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: #ffffff;
    color: #2B2B2B;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: #ffffff;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit; /* para que el texto no se ponga azul */
}


.logo img {
    width: 45px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00267D;
    text-decoration: none;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #2B2B2B;
    font-weight: 600;
}

nav a:hover {
    color: #00267D;
}

/* HERO */
.hero {
    height: 85vh;
    background: linear-gradient(#00267De0, #00267Da8), url('assets/fondo.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 40px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.cta-button {
    background: #00A3FF;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 600;
}

.cta-button:hover {
    background: #1E3FAE;
}

/* SERVICIOS */
.servicios {
    padding: 60px 40px;
    background: #E6E9EF;
}

.servicios h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #00267D;
}

/* GRID */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* CARD */
.servicio-card {
    background: white;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.2s ease;
    border-top: 4px solid #00267D20;
}

.servicio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
}

/* ICON CIRCLE */
.icon-circle {
    width: 80px;
    height: 80px;
    background: #DCE4F5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 15px;
}

/* TITULO */
.servicio-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00267D;
    margin-bottom: 10px;
}

/* PARRAFO */
.servicio-card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}


/* PRECIOS */
.precios {
    padding: 60px 40px;
}

.precios h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #00267D;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    font-size: 1.05rem;
}

table th, table td {
    padding: 14px;
    border-bottom: 1px solid #ccc;
}

table th {
    background: #00267D;
    color: white;
}

.nota {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #555;
}

/* CONTACTO */
/* CONTACTO */
.contacto {
    padding: 60px 40px;
    background: #E6E9EF;
}

.contacto h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #00267D;
}

/* CONTENEDOR DE DOS COLUMNAS */
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

/* COLUMNA IZQUIERDA */
.contact-info {
    flex: 1;
    font-size: 1.1rem;
    min-width: 260px;
}

/* COLUMNA DERECHA */
.contact-form {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-form h3 {
    margin-bottom: 15px;
    color: #00267D;
}

/* FORMULARIO */
#contactForm label {
    font-weight: 600;
    margin-top: 10px;
    display: block;
}

#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    resize: none;
}

.btn-enviar {
    display: block;
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    background: #00267D;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
}

.btn-enviar:hover {
    background: #1E3FAE;
}

/* Mensaje de estado del formulario */
.form-status {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #00267D;
    font-weight: bold;
}


/* FOOTER */
.footer {
    text-align: center;
    padding: 25px;
    background: #00267D;
    color: white;
    margin-top: 40px;
}
