/*====================
  ESTILOS GERAIS
====================*/
body {
    margin: 0;
    font-family: calibri, helvetica, sans-serif;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

h1, h2 {
    font-family: 'Expletus Sans', cursive;
    color: #0785b8;
    font-weight: 400; /* normal */
    margin: 0;
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 22px;
    margin-bottom: 5px;
}

p {
    color: #666;
}

.clearFix {
    clear: both;
}

.botao {
    display: inline-block;
    background-color: #0785b8;
    text-decoration: none;
    padding: 7px 40px;
    color: white;
    border: 1px solid #0785b8;
    border-radius: 3px;
}

/*====================
  HEADER E NAVEGAÇÃO
====================*/
#topo {
    width: 100%;
    border-top: 3px solid #040280;
    background-image: linear-gradient(to right, #04180a, #021841);
}

#topo .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

#logo {
    position: absolute;
    top: 13px;
    left: 0;
    z-index: 1;
}

#menu a {
    font-family: 'Expletus Sans', cursive;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 16px;
    color: rgb(255, 255, 255);
    display: inline-block;
    padding: 30px;
    transition: 0.4s background-color;
}

#menu a:hover {
    background-color: #ffffff;
}

/*====================
  BANNER E SLIDER
====================*/
#banner img {
    width: 100%;
}

.bx-wrapper {
    border: none !important;
    margin: 0;
}

.bx-pager {
    display: none;
}

.bx-wrapper .bx-prev,
.bx-wrapper .bx-next {
    background-image: url(img/controls.png);
}

/*====================
  SEÇÃO PRINCIPAL
====================*/
#depoimento {
    width: 100%;
    min-height: 150px;
    text-align: center;
    background-image: url(img/fundo-destaque.jpg);
    color: white;
    padding: 25px;
    box-sizing: border-box;
    background-size: cover;
    margin: 50px 0;
}

#depoimento p {
    margin: 0;
    font-size: 30px;
    font-style: italic;
    font-family: 'Expletus Sans', cursive;
    padding-top: 30px;
    color: white;
}

.img-left {
    float: left;
    margin-right: 50px;
}

.video-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.video-responsive {
    position: relative;
    padding-bottom: 178%; /* Proporção 9:16 (altura/largura = 476px/267px ≈ 1.78) */
    padding-top: 0;
    height: 0;
    width: 267px;
    max-width: 100%;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/*====================
  COLUNAS DE CONTEÚDO
====================*/
#colunas {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
}

.coluna {
    width: 31%;
    text-align: center;
}

.coluna img {
    border-radius: 5px;
    width: 100%;
}

/*====================
  RODAPÉ
====================*/
#rodape {
    background-color: #f2f2f2;
    color: #333;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

#rodape .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 18px;
    color: #0785b8;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #0785b8;
}

.footer-social-icons a {
    font-size: 24px;
    margin-right: 15px;
    color: #666;
    transition: color 0.3s;
}

.footer-social-icons a:hover {
    color: #0785b8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    margin-top: 20px;
    font-size: 14px;
    color: #999;
}

/*====================
  BOTÃO WHATSAPP FLUTUANTE
====================*/
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    color: #fff;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/*====================
  MEDIA QUERIES (RESPONSIVIDADE)
====================*/
@media screen and (max-width: 1024px) {
    #menu {
        display: none;
        position: absolute;
        top: 70px;
        width: 60%;
        z-index: 10000;
        right: -10%;
        background-image: linear-gradient(#0785b8, #030c8a);
    }
    #topo {
        min-height: 70px;
    }
    .barra {
        width: 40px;
        height: 3px;
        background-color: rgb(13, 75, 146);
        margin-bottom: 4px;
        border-radius: 5px;
        transition: 0.5s;
    }
    #btn-menu {
        position: absolute;
        top: 25px;
    }
    #menu a {
        display: block;
        border-top: 1px solid #666;
    }
    .x .barra:first-child {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .x .barra:nth-child(2) {
        opacity: 0;
        transform: translate(-80px);
    }
    .x .barra:last-child {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    #depoimento p {
        font-size: 20px;
        padding-top: 20px;
    }
    #conteudo-principal {
        text-align: center;
    }
    #conteudo-principal .botao {
        width: 70%;
    }
    .coluna .botao {
        width: 100% !important;
        box-sizing: border-box;
    }
    .img-left {
        width: 40%;
        float: none;
    }
}

@media screen and (max-width: 600px) {
    #menu {
        width: 120%;
        left: -10%
    }
    #menu a {
        text-align: center;
    }
    #logo img {
        width: 150px;
    }
    #depoimento {
        min-height: auto;
    }
    #depoimento p {
        font-size: 18px;
        padding-top: 0px;
    }
    .img-left {
        width: 70%;
    }
    #colunas {
        flex-wrap: wrap;
    }
    .coluna {
        width: 100%;
        margin-bottom: 50px;
    }
    .coluna:last-child {
        margin-bottom: 0px;
    }
    #rodape .container {
        flex-direction: column;
        text-align: center;
    }
    #endereco {
        margin-bottom: 20px;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}