* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #1e2a3a;
	/*
	background-image: linear-gradient(135deg, #b1dffe, #0b2c55, white);
	 */
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* HEADER */
.header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.hero-contacto {
  padding: 50px;
  text-align: center;
}

.logo {
    height: 80px;
}

.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #1e2a3a;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* BUTTONS */
.btn-primary {
    background: #e53935;
    color: #fff;
    padding: 14px 22px;
    border-radius: 8px;
    text-decoration: none;
}

.btn-secondary {
    border: 2px solid #0057b8;
    color: #0057b8;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
}

/* HERO */
.hero {
/*    background: linear-gradient(135deg, #eaf2ff, #fff);
  */
	background-image: URL("../images/banner2.png");
	padding: 60px 0;
	height: 450px;
    background-size: cover;
    background-position-y: -100px;
}

.hero h1{
	color: #0e204d;
	font-size: 50px;
}

.hero-content {
/*    display: flex;*/
    gap: 40px;
    align-items: center;
	margin-top: 51px;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
}

.hero-text p{
	padding-bottom: 25px;
}

.btn-search{
	grid-column: span 2;
    background: #e53935;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.search-box{
	background: rgba(255, 255, 255, .7);
    max-width: 600px;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid grey;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .25);
}

.search-grid{
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    position: relative;
}

.search-box h1{
	color: #000000;
	font-size: 25px;
	margin-bottom: 10px;
}

.search-grid input{
	padding: 14px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
}

/* SERVICES */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 70px auto;
}

.service-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.service-card img {
    height: 100px;
    margin-bottom: 15px;
}

/* ABOUT */
.about {
    background: #f6f8fb;
    padding: 70px 0;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about img {
    width: 50%;
    border-radius: 14px;
}

/* CTA */
.cta {
    background: #0b2c55;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

/* FOOTER */
.footer {
    background: #0b2c55;
    color: #fff;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.logo-footer {
    height: 45px;
}

.footer-enlases{
	margin-left: 100px;
}

.footer-enlases a{
	text-decoration:none;
	color:#ffffff;
	font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-content,
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .services {
        grid-template-columns: 1fr;
    }

    .about img {
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid #eee;
    }

    .nav a {
        margin: 10px 0;
    }

    .nav.active {
        display: flex;
    }
}
