* {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    color: #333;
    background: #fff;
}
@media (max-width: 768px) {
    .logo {
        max-width: 170px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }
}
.about {
    text-align: center;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 20px auto;
}
.about {
    text-align: center;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 20px auto;
}
.back-btn {
    display: inline-block;
    margin: 15px;
    font-size: 0.9rem;
    text-decoration: none;
    color: #6575ce;
    font-weight: bold;
}
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
}

.whatsapp img {
    width: 28px;
}

.hero {
    background: linear-gradient(rgba(76, 89, 235, 0.6), rgba(0,0,0,.6)), #6575ce;
    color: #fff;
    padding: 90px 20px;
    text-align: center;

}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-card h3 {
    margin: 20px 15px 10px;
    color: #4c59eb;
}

.service-card p {
    margin: 0 15px 25px;
    font-size: 0.95rem;
    line-height: 1.6;
}
.service-card {
    transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.hero h1 {
    font-size: 2.4rem;
}

.hero p {
    font-size: 1.2rem;
    margin: 15px 0;
}

.btn {
    background: #f4b400;
    color: #000;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

section {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: #f2f2f2;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
}

.process {
    background: #f7f8ff;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.process-step {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.process-step span {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: #4c59eb;
    color: #fff;
    border-radius: 50%;
    line-height: 45px;
    font-weight: bold;
    margin-bottom: 15px;

}
.benefits {
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.benefit-item {
    background: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.benefit-item h3 {
    color: #4c59eb;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .process-step span {
        margin-bottom: 10px;
    }
}
.municipios {
    background: #f7f8ff;
}

.municipios-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.municipios-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.municipios-text li {
    margin-bottom: 10px;
    font-weight: 500;
}

.municipios-img img {
    width: 100%;
    border-radius: 12px;
}
@media (max-width: 900px) {
    .municipios-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .municipios-text ul {
        text-align: left;
        display: inline-block;
    }
}

.contacto {
    background: #f7f8ff;
    text-align: center;
}

.contacto-sub {
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-size: 1rem;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4c59eb;

}

button {
    width: 100%;
    padding: 12px;
    background: #f4b400;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.hero-gracias {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
img/og-image.jpg

.logo {
    max-width: 220px;
    margin-bottom: 25px;
}

footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px;
}
