@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
}

.hero-gradient {
    background: linear-gradient(135deg, rgba(255,122,0,0.9) 0%, rgba(255,154,64,0.8) 100%);
}

.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-icon {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: #FF7A00;
}

.benefit-card {
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    color: #FF7A00;
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #FF7A00;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Solar Animation */
.solar-animation {
    animation: float 6s ease-in-out infinite;
}

.solar-animation g {
    animation: pulse 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.alert-success {
    background-color: #2b982b;
}
.alert {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
    border: none;
    color: #fff !important;
}

.alert-success {
    background-color: #3c763d;
    color: #dff0d8;
    border-color: #d6e9c6;
    padding: 15px;
}

.alert-danger {
    background-color: #fb483a !important;
    color: white;
    padding: 15px;
}

.bg-bravon-gray {
    background-color: black!important;
}

.img-pronto {
    height: 100%!important;
}

.opacity-10 {
    opacity: 0.8!important;
}

.elemento-com-fundo {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/banner-fundo-bravon-solar.jpg");
    background-size: cover; /* Ajusta a imagem para cobrir o elemento */
    background-position: center; /* Centraliza a imagem */
    /* Outras propriedades de estilo, como altura, largura, etc. */
}

.imagem-p-destaque {
    width: 100%;
    /*max-height: 260px;*/
    object-fit: cover;
}

.paginacao [aria-current] span {
    background-color: #FF7A00;
    color: white;
}

#page-header.visual {
    min-height: auto;
    max-height: auto;
    padding: 10px 0 0;
}

.visual {
    min-height: 760px;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #8d81ac;
    font-size: 0;
    letter-spacing: -4px;
    padding: 104px 0 0;
    background-color: #FF7A00;
}

.visual>.container {
    display: inline-block;
    vertical-align: top;
    line-height: 1.5;
    letter-spacing: 0;
}

#cta, .visual>.container {
    z-index: 1;
    position: relative;
}

#page-header.visual .text-block, .visual .text-block {
    padding: 90px 0;
    margin-top: 50px;
}

.visual h1 {
    margin: 0 0 20px;
    font-size: 3.6rem;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.visual p.tagline {
    line-height: 1.1;
    font-size: 21px;
    padding: 10px;
}

.element, .visual p {
    color: white;
    font-size: 21px !important;
    line-height: 1.1;
    display: inline-block;
    margin: 0 0 15px;
}
.element, .milestone-counter p, .portfolio-filter ul li, .portfolio-title small, .pricing-box-06-body ul li, .text-box h2, .visual .info, .visual p {
    text-transform: uppercase;
}

#projeto {

}

#projeto .img-principal {
    display: flex;
    justify-content: center;
    align-content: center;
}

#projeto .img-principal img {
    width: 50%;
}

#projeto .observacoes {
    text-align: justify;
    line-height: 1.8rem;
}

#projeto .heading-partileinfo {
    font-weight: 600;
    letter-spacing: .5px;
    font-size: 40px;
    margin-bottom: 1.9em;
    text-align: center;
    color: #FF7A00;
    text-transform: uppercase;
    position: relative;
    margin-top: 0;
}

@media (max-width: 720px) {
    #projeto .img-principal img {
        width: 90%;
    }

    .visual h1 {
        font-size: 2.0rem;
        margin: 10px;
    }
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.my-table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border-collapse: collapse;
}

.my-table th,
.my-table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.my-table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

.my-table tbody + tbody {
    border-top: 2px solid #dee2e6;
}

.my-table-bordered {
    border: 1px solid #dee2e6;
}

.my-table-bordered th,
.my-table-bordered td {
    border: 1px solid #dee2e6;
}

.my-table-striped tbody tr:nth-of-type(odd) {
    background-color: #f8f9fa;
}

.my-table-hover tbody tr:hover {
    background-color: #f1f1f1;
}

.text-right {
    text-align: right!important;
}

/*.accordion {
    background-color: #f8f9fa;
}

.accordion:hover {
    background-color: #f1f1f1;
}*/

.link-anexo {
    color: blue!important;
    text-decoration: underline!important;
}

.link-anexo {
    text-decoration-thickness: 2px;
}


.link-anexo:visited {
    color: purple;
}

.link-anexo:active {
    color: navy;
}

.link-anexo:focus {
    outline: 2px solid rgba(0, 0, 255, 0.5);
}

.accordion-header {
    background-color: #FF7A00!important;
}

.accordion-header span, .accordion-header svg {
    color: white!important;
}

.description {
    max-width: 600px;
    position: relative;
    font-family: sans-serif;
    line-height: 1.5;
}

.description .content {
    overflow: hidden;
    transition: max-height 0.3s ease;
}

/* Altura do preview (ajuste conforme necessidade) */
.description .collapsed {
    max-height: 150px;
}

.description .fade {
    content: "";
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    height: 3rem;
    background: linear-gradient(rgba(255,255,255,0), #fff);
    pointer-events: none;
}

.read-more {
    display: inline-block;
    margin-top: .5rem;
    color: #0066cc;
    cursor: pointer;
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0;
    font: inherit;
}

.painel-titulos h2 {
    font-size: 2.25rem!important;
    font-weight: bold!important;
    color: black!important;
    margin: 10px;
    text-align: center;
}

.painel-titulos span {
    color: #FF7A00!important;
}

.painel-titulos p {
    color: grey;
    margin-bottom: 2rem;
}

@media (max-width: 640px) {
    a.whatsapp-btn {
        display: block;
        max-width: 90%;
        margin: 0 auto;
        padding-left: 1.5rem; /* ~px-6 */
        padding-right: 1.5rem;
        font-size: 0.875rem;  /* ~text-sm */
        word-break: break-word;
        text-align: center;
    }
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin: 2rem 0;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-whatsapp {
    background-color: #25D366;
    color: white;
}

.share-facebook {
    background-color: #1877F2;
    color: white;
}

.share-twitter {
    background-color: #000000; /* Preto do X */
    color: white;
}

.share-linkedin {
    background-color: #0077B5;
    color: white;
}

.conteudo-postagem p {
    margin-bottom: 10px;
}

.conteudo-postagem {
    text-align: left!important;
} 

.conteudo-postagem h3 {
    font-weight: bold;
    font-size: 20px;
}