/* ===== HERO TOPO ===== */

.hero-caraiva {
    position: relative;
    width: 100%;
    height: 150px;

    background-image: url('../images/topo-caraiva.jpg');

    background-size: cover;
    background-position: center;

    overflow: hidden;
}

/* ESCURECE LEVEMENTE A FOTO */

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.20);
}

/* CONTEÚDO */

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 1200px;
    height: 100%;

    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    padding: 35px;
    box-sizing: border-box;
}

/* LOGO */

.logo-area h1 {
    font-size: 45px;
    color: #fff;

    font-family: Georgia, serif;
    font-style: italic;

    margin: -32px 0 0 8px;
    line-height: 1;
}
.logo-area h2 {
    font-size: 45px;
    color: #fff;

    font-family: Georgia, serif;
    font-style: italic;

    margin: -20px 0 0 8px;
    line-height: 1;
}
.logo-area p {
    color: #fff;
    font-size: 12px;
    letter-spacing: 1px;

    margin-top: 15px;
}

/* GUIA */

.guia-area {
    text-align: right;
    max-width: 420px;
	
	padding-left: 35px;
    border-left: 1px solid rgba(255,255,255,0.35);
	margin: -5px 0 0 8px;

}

.guia-area h2 {
    color: #fff;
    font-size: 48px;

    font-family: Georgia, serif;
    font-style: italic;

    margin: -8px 0 0 8px;
    line-height: 1.1;
}

.guia-area p {
    color: #fff;
    font-size: 20px;

    margin-top: 10px;
    line-height: 1.4;
}

/* ===== MENU ===== */

.menu-caraiva {

    width: 100%;

    background: #f6f6f6;

    padding: 8px 0;

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 30px;

    border-bottom: 1px solid #ddd;

    text-transform: uppercase;

    box-sizing: border-box;
}

.menu-caraiva a {

    position: relative;

    color: #005d78;

    text-decoration: none;

    font-size: 14px;

    font-family: 'Montserrat', Arial, sans-serif;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    transition: all 0.3s ease;

    display: flex;

    align-items: center;

    padding: 0 8px;
}

.menu-caraiva a:hover {
    color: #0ba6c9;
}

.menu-home img {

    width: 24px;

    opacity: 0.8;

    transition: 0.3s;
}

.menu-home img:hover {
    opacity: 1;
}

.menu-caraiva a:not(:last-child)::after {

    content: "";

    position: absolute;

    right: -21px;

    top: 50%;

    transform: translateY(-50%);

    width: 1px;

    height: 24px;

    background: #d7d7d7;
}

/* ===== RESPONSIVO ===== */

@media (max-width: 900px) {

    .hero-caraiva {
        height: 500px;
    }

    .hero-content {

        flex-direction: column;

        justify-content: center;

        padding: 30px;
    }

    .logo-area h1 {
        font-size: 42px;
    }

    .logo-area p {
        font-size: 18px;
    }

    .guia-area {

        text-align: left;

        margin-top: 40px;
    }

    .guia-area h2 {
        font-size: 36px;
    }

    .guia-area p {
        font-size: 22px;
    }

    .menu-caraiva {
        gap: 15px;
        padding: 15px;
    }

    .menu-caraiva a {
        font-size: 17px;
    }

}

/* ===== SIDEBAR ===== */

.sidebar-caraiva {

    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 22px;
}

/* ===== BOXES ===== */

.box-vivencias,
.box-transfer {

    background: #f7f3ea;

    padding: 12px;

    border-radius: 4px;

    box-sizing: border-box;
}

.box-transfer {
    background: #f8f8f8;
}

/* ===== TÍTULOS ===== */

.box-vivencias h3,
.box-transfer h3 {

    font-family: 'Dancing Script', cursive;

    font-size: 32px;

    font-weight: normal;

    color: #0d6677;

    margin: 0 0 22px;

    line-height: 1;
}

/* LINHA DECORATIVA */

.box-vivencias h3::after {

    content: "";

    display: block;

    width: 100%;

    height: 2px;

    background: #8cc2c8;

    margin-top: 12px;
}

/* ===== LISTAS ===== */

.lista-vivencias,
.lista-transfer {

    list-style: none;

    padding: 0;

    margin: 0;
}

.lista-vivencias li,
.lista-transfer li {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 24px;

    color: #1d5560;

    font-size: 18px;

    line-height: 0.8;
}

/* ===== ÍCONES ===== */

.icone {

    width: 32px;

    min-width: 32px;

    font-size: 24px;

    text-align: center;

    opacity: 0.8;
}

/* ===== BANNER TEMPLO ===== */

.banner-templo {

    position: relative;

    display: block;

    width: 100%;

    margin-top: 20px;

    border-radius: 4px;

    overflow: hidden;

    background-image: url('../images/banner-templo.jpg');

    background-size: cover;

    background-position: center;

    text-decoration: none;

    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.banner-overlay {

    position: absolute;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.45);
}

.banner-content {

    position: relative;

    z-index: 2;

    padding: 28px;

    color: #fff;
}

.banner-content h4 {

    font-size: 34px;

    margin: 0 0 14px;

    color: #f6c04d;

    font-family: Arial, sans-serif;

    font-weight: bold;
}

.banner-content p {

    font-size: 20px;

    line-height: 1.5;

    margin-bottom: 22px;
}

.banner-content span {

    font-size: 20px;

    font-weight: bold;

    color: #fff;
}

/* ===== TRANSFER ===== */

.box-transfer h3 {

    font-family: Arial, sans-serif;

    font-size: 24px;

    font-weight: 600;

    color: #0d6677;
	
	margin-top: 16px;

}

.lista-transfer li {

    font-weight: bold;
}

/* ===== RESPONSIVO ===== */

@media (max-width: 768px) {

    .box-vivencias,
    .box-transfer {

        padding: 22px;
    }

    .box-vivencias h3,
    .box-transfer h3 {

        font-size: 40px;
    }

    .lista-vivencias li,
    .lista-transfer li {

        font-size: 17px;
    }

    .banner-templo {

        height: 190px;
    }

}

/* ===== ATALHOS TRANSPORTE ===== */

.atalhos-transporte {

    margin: 25px 0;

    display: flex;
    flex-direction: column;

    gap: 14px;
}

.atalhos-transporte a {

    display: flex;
    align-items: center;

    gap: 12px;

    color: #0d5c63;

    font-size: 16px;
    font-weight: bold;

    text-decoration: none;

    transition: all 0.2s ease;
}

.atalhos-transporte a:hover {

    color: #138496;

    transform: translateX(4px);
}

.atalhos-transporte .icone {

    font-size: 18px;

    width: 22px;

    text-align: center;
}

.dica-guia {

    background: #f7f2e8;

    border-left: 4px solid #0d5c63;

    padding: 16px;

    margin: 20px 0;

    line-height: 1.7;

    font-size: 16px;
}

/* BOXES */

.bus-box,
.horario-box{
    width:100%;
    background:#006633;
    color:#fff;
    min-height: 300px;

    margin-bottom:18px;

    box-sizing:border-box;

    box-shadow:0 2px 8px rgba(0,0,0,0.12);
}

/* TOPO */

.bus-topo{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:16px;
    gap:20px;
}

.bus-logo{
    max-width:230px;
    height:auto;
}

.bus-fones{
    text-align:right;
    line-height:1.7;
    font-size:14px;
}

/* TÍTULOS */

.horario-titulo{
    padding:12px 15px;

    font-size:14px;
    font-weight:bold;

    border-bottom:1px solid rgba(255,255,255,0.2);
}

/* LINHAS */

.linha-horario{
    display:grid;
    grid-template-columns: 1.3fr 1fr;

    border-bottom:1px solid rgba(255,255,255,0.15);
}

.cidade,
.hora{
    padding:14px 15px;
    font-size:14px;
}

.hora{
    border-left:1px solid rgba(255,255,255,0.15);
}

/* OBS */

.obs{
    color:#cfcfcf;
    font-size:12px;
}
.horario-van{
    background:#0f766e;
}
.horario-aguia{
    background:#3050aa;
}

/* RESPONSIVO */

@media(max-width:768px){

    .bus-topo{
        flex-direction:column;
        text-align:center;
    }

    .bus-fones{
        text-align:center;
    }

    .linha-horario{
        grid-template-columns:1fr;
    }

    .hora{
        border-left:0;
        border-top:1px solid rgba(255,255,255,0.15);
    }

}

.transfer-box{

    margin-top:30px;

    background:#f4f1e8;

    border:1px solid #ddd;

    box-shadow:0 2px 8px rgba(0,0,0,0.08);

    overflow:hidden;
}

.transfer-img{
    width:100%;
    display:block;
}

.transfer-texto{
    padding:20px;
}

.transfer-texto h3{

    color:#0d7c86;

    font-size:24px;

    margin-bottom:15px;

    font-family:Georgia, serif;
}

.transfer-texto p{

    line-height:1.7;

    margin-bottom:14px;
}

.transfer-contato{

    background:#fff;

    padding:12px;

    border-left:4px solid #0d7c86;
}
