* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    background: #ffffff;
    color: #111;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
    border-bottom: 1px solid #eee;
}

.navbar nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #0D47A1;
    font-weight: 500;
}

/* BOTONES NUEVOS */
.btn-primary,
.btn-secondary,
.btn-outline {
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 26px;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: 0.25s ease;
}

/* Botón principal */
.btn-primary {
    background: #0D47A1;
    color: white;
    box-shadow: 0 4px 14px rgba(13, 71, 161, 0.25);
}

.btn-primary:hover {
    background: #08306E;
    box-shadow: 0 6px 18px rgba(13, 71, 161, 0.35);
}

/* Botón outline */
.btn-outline {
    border: 2px solid #0D47A1;
    color: #0D47A1;
    background: transparent;
}

.btn-outline:hover {
    background: #0D47A1;
    color: white;
}

/* Botón secundario soft */
.btn-secondary {
    background: #e5eaff;
    color: #0D47A1;
}

.btn-secondary:hover {
    background: #d4dcff;
}


/* HERO */
.hero {
    text-align: center;
    padding: 160px 20px 120px;
}

.hero-logo {
    width: 160px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 32px;
    font-weight: 600;
    color: #0D47A1;
}

.hero p {
    margin: 10px 0 30px;
    font-size: 18px;
}

.hero-buttons a {
    margin: 0 8px;
}

/* SECTIONS */
.section {
    padding: 80px 40px;
    text-align: center;
}

.section h2 {
    font-size: 28px;
    color: #0D47A1;
    margin-bottom: 35px;
}

/* CARDS */
.cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: #fafafa;
    padding: 30px;
    border-radius: 10px;
    width: 320px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.card h3 {
    color: #0D47A1;
    margin-bottom: 10px;
}

/* BENEFICIOS */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.beneficios-grid div {
    padding: 20px;
    background: #eef2ff;
    border-radius: 8px;
    font-weight: 500;
}

/* TESTIMONIOS */
.testimonio-slider {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.testimonio {
    min-width: 100%;
    font-style: italic;
    padding: 20px;
    transition: transform 0.5s ease-in-out;
}

/* CONTACTO */
.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 380px;
    margin: 20px auto;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* FOOTER */
.footer {
    text-align: center;
    background: #0D47A1;
    color: white;
    padding: 25px;
    margin-top: 40px;
}
.testimonios-container {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 1000px;
    margin: 0 auto;
}

.testimonio-card {
    background: #fafafa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
    text-align: left;
    transition: 0.25s ease;
}

.testimonio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.testimonio-text {
    font-size: 17px;
    line-height: 1.6;
    font-style: italic;
    color: #444;
}

.testimonio-author {
    margin-top: 15px;
    font-weight: 600;
    color: #0D47A1;
    text-align: right;
}
