/* Estilos específicos da tela de início, inspirados em style.css */

/* Container principal */
body {
    justify-content: center;
}

.inicio-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(180deg, #f9f9fb 0%, #ffffff 100%);
    align-items: center;
    padding: 30px 20px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.inicio-header {
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.inicio-logo{
    height: 56px;
}

.inicio-nav{ display:flex; gap:12px; }

.btn-cta{
    display:inline-block;
    padding:10px 16px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    color:#fff;
    transition:0.2s ease;
}

.btn-cadastrar{ background: #ff355d; }
.btn-cadastrar:hover{ filter:brightness(0.95); }
.btn-entrar{ background: #3b82f6; }
.btn-entrar:hover{ filter:brightness(0.95); }

.large{ padding:14px 20px; font-size:1.05rem; border-radius:12px }

.inicio-hero{
    width:100%;
    max-width:1100px;
    display:flex;
    flex-direction:column;
    gap:24px;
    align-items:stretch;
}

.hero-info{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.image-slot{
    height:320px;
    border-radius:12px;
    background: #fff;
    border: 1px dashed #e6e6e6;
    display:flex; align-items:center; justify-content:center;
    color:#7a7a7a;
}

/* Carousel */
.carousel{
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.carousel .slides{ display:flex; transition:transform 0.6s ease; }
.carousel .slide{ min-width:100%; display:flex; align-items:center; justify-content:center; background:#f7f7f7; padding:16px; }
.carousel .slide-media{ position:relative; width:100%; display:flex; align-items:center; justify-content:center; }
.carousel .slide img{ width:auto; max-width:100%; height:auto; max-height:520px; object-fit:contain; display:block; background:#f7f7f7; }
.carousel .slide-overlay{
    position:absolute;
    left:24px;
    bottom:24px;
    background:rgba(255, 53, 93, 0.9);
    color:#fff;
    padding:10px 16px;
    border-radius:999px;
    font-weight:700;
    font-size:1.1rem;
    letter-spacing:0.04em;
    box-shadow:0 6px 18px rgba(0,0,0,0.18);
}
.carousel-control{ position:absolute; top:50%; transform:translateY(-50%); background:rgba(0,0,0,0.45); color:#fff; border:none; width:44px; height:44px; border-radius:22px; cursor:pointer; display:flex; align-items:center; justify-content:center; font-size:24px; backdrop-filter: blur(2px); }
.carousel-control.prev{ left:14px }
.carousel-control.next{ right:14px }
.carousel-indicators{ position:absolute; bottom:14px; left:50%; transform:translateX(-50%); display:flex; gap:8px; }
.carousel-indicators button{ width:11px; height:11px; border-radius:50%; border:none; background:rgba(255,255,255,0.8); cursor:pointer; box-shadow: 0 0 0 1px rgba(0,0,0,0.15); }
.carousel-indicators button.active{ background:#ff355d; transform:scale(1.1); }

.ad-slot{
    min-height:140px;
    border-radius:12px;
    background:#fff;
    border:1px solid #ececec;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    gap:8px;
    padding:8px;
}

.ad-slot-triple{
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap:8px;
}

.ad-image{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
    border-radius:8px;
    background:#f7f7f7;
    padding:6px;
}

.hero-text h1{ font-size:1.9rem; margin-bottom:6px; color:#222 }
.hero-text p{ color:#555; line-height:1.4 }

.inicio-actions{ width:100%; max-width:1100px; display:flex; gap:12px; margin:26px 0; justify-content:center }

.inicio-footer{
    margin-top:auto;
    width:100%;
    max-width:1100px;
    padding:18px 8px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:6px;
    color:#666;
    font-size:0.95rem;
    text-align:center;
}

@media (max-width: 800px){
    .inicio-hero{ flex-direction:column }
    .inicio-header{ padding: 0 8px }
    .inicio-footer{ flex-direction:column; align-items:center; gap:6px }
}
