* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.hero {
    background: linear-gradient(135deg, #7b1fa2, #c2185b);
    color: white;
    padding: 80px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 20px;
    margin-bottom: 25px;
}

.small {
    font-size: 13px;
    opacity: 0.8;
    margin-top: 15px;
}

.hero img {
    max-width: 400px;
    width: 100%;
}

.section {
    padding: 80px 0;
}

.gray {
    background: #f7f7f7;
}

.center {
    text-align: center;
}

.lead {
    font-size: 18px;
    max-width: 800px;
    margin: 20px auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.btn-primary {
    background: #ff4081;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: #e91e63;
    transform: translateY(-2px);
}

.btn-primary.large {
    padding: 20px 40px;
    font-size: 18px;
}

.cta {
    background: linear-gradient(135deg, #c2185b, #7b1fa2);
    color: white;
}

footer {
    background: #111;
    color: white;
    padding: 40px 0;
    font-size: 14px;
}

ul.benefits {
    list-style: none;
    margin: 20px 0;
}

ul.benefits li {
    margin-bottom: 10px;
}

@media(max-width: 900px){
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* ====== RESPONSIVIDADE INTELIGENTE DE IMAGENS ====== */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.responsive-img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* Preenche mantendo proporção */
    object-position: center; /* Centraliza automaticamente */
    border-radius: 12px;
}

/* Containers inteligentes para imagens */
.image-wrapper {
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 12px;
}

/* Hero Image */
.hero-image {
    max-width: 450px;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain; /* Produto não pode ser cortado */
}

/* Ajuste mobile */
@media(max-width: 768px){
    .image-wrapper {
        height: 300px;
    }
}

