.elementor-7 .elementor-element.elementor-element-71d3ab1{--display:flex;}/* Start custom CSS for html, class: .elementor-element-186417c */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #f5f5f5;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
}

/* HERO */

.hero {
    background: url('images/hero.jpg') center/cover no-repeat;
    height: 90vh;
    position: relative;
}

.overlay {
    background: rgba(0,0,0,0.55);
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 20px;
}

.overlay h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.overlay p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-primary {
    background: #000;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 40px;
}

.btn-dark {
    background: #222;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 40px;
}

.section {
    padding: 80px 10%;
    text-align: center;
    background: #eee;
}

.subtitle {
    margin-bottom: 50px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3 {
    margin: 15px 0;
}

.card p {
    padding: 0 15px 20px;
}

.center {
    margin-top: 40px;
}

.why {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 80px 10%;
    background: white;
}

.why-img {
    flex: 1;
}

.why-img img {
    width: 100%;
    border-radius: 15px;
}

.why-content {
    flex: 1;
    padding: 30px;
}

.why-content ul {
    list-style: none;
    margin: 20px 0;
}

.why-content li {
    margin-bottom: 10px;
}

.payment {
    font-weight: bold;
    margin-top: 20px;
}

footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 40px;
}

/* WHATSAPP */

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 28px;
    padding: 15px;
    border-radius: 50%;
    text-decoration: none;
}

/* RESPONSIVO */

@media(max-width:768px){
    .overlay h1 {
        font-size: 28px;
    }

    .why {
        flex-direction: column;
    }
}/* End custom CSS */