/* ===================================
   EMPRESA SECTION STYLES
   =================================== */

.empresa-section {
    background-color: #f5f5f5;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.empresa-title {
    color: #5a7c8f;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.title-underline {
    width: 120px;
    height: 4px;
    background-color: #5a7c8f;
    margin: 0 auto;
}

.empresa-description {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Responsivo */
@media (max-width: 768px) {
    .empresa-title {
        font-size: 1.8rem;
    }
    
    .empresa-description {
        font-size: 1rem;
    }
    
    .title-underline {
        width: 80px;
    }
}

/* ===================================
   BENEFÍCIOS SECTION STYLES
   =================================== */

.beneficios-section {
    background-color: #5a7c8f;
    padding: 4rem 0;
}

.beneficio-card {
    padding: 2rem 1.5rem;
}

.beneficio-icon-wrapper {
    width: 150px;
    height: 150px;
    background-color: #ff8c42;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px dotted rgba(255, 255, 255, 0.5);
    position: relative;
}

.beneficio-icon {
    font-size: 4rem;
    color: #fff;
}

.beneficio-icon-small {
    font-size: 2rem;
    color: #fff;
    position: absolute;
    bottom: 35px;
    right: 45px;
}

.beneficio-title {
    color: #ff8c42;
    font-size: 1.75rem;
    font-weight: 600;
}

.beneficio-description {
    color: #fff;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 350px;
}

/* Responsivo */
@media (max-width: 992px) {
    .beneficio-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .beneficio-icon-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .beneficio-icon {
        font-size: 3rem;
    }
    
    .beneficio-icon-small {
        font-size: 1.5rem;
        bottom: 25px;
        right: 35px;
    }
    
    .beneficio-title {
        font-size: 1.5rem;
    }
    
    .beneficio-description {
        font-size: 0.95rem;
    }
}

/* ===================================
   PARCEIROS SECTION STYLES
   =================================== */

.parceiros-section {
    background-color: #f5f5f5;
    padding: 4rem 0;
}

.parceiros-title {
    color: #5a7c8f;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.parceiro-logo {
    max-width: 180px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 1rem;
}

.parceiro-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Customização dos controles do carousel */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: #5a7c8f;
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -30px;
}

.carousel-control-next {
    right: -30px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #ff8c42;
}

/* Responsivo */
@media (max-width: 992px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: -10px;
    }
    
    .carousel-control-next {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .parceiros-title {
        font-size: 1.8rem;
    }
    
    .parceiro-logo {
        max-width: 120px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 15px;
        height: 15px;
    }
}

/* ===================================
   COTAÇÃO SECTION STYLES
   =================================== */

.cotacao-section {
    background-color: #5a7c8f;
    padding: 4rem 0 0 0 !important;
    overflow: hidden;
}

.cotacao-content {
    padding: 2rem 1rem;
}

.cotacao-title {
    color: #ff8c42;
    font-size: 2.5rem;
    font-weight: 600;
}

.cotacao-underline {
    width: 120px;
    height: 4px;
    background-color: #ff8c42;
    margin: 0 auto;
}

.cotacao-description {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.btn-cotacao {
    background-color: #ff8c42;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 3rem;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-cotacao:hover {
    background-color: #ff6b35;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

.cotacao-img {
    max-height: 500px;
    width: auto;
    display: block;
    margin-left: auto;
    margin-bottom: 0;
}

/* Responsivo */
@media (max-width: 992px) {
    .cotacao-section {
        padding: 3rem 0 0 0 !important;
    }
    
    .cotacao-img {
        max-height: 400px;
        margin: 2rem auto 0;
    }
}

@media (max-width: 768px) {
    .cotacao-title {
        font-size: 1.8rem;
    }
    
    .cotacao-underline {
        width: 80px;
    }
    
    .cotacao-description {
        font-size: 1rem;
    }
    
    .btn-cotacao {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
    
    .cotacao-img {
        max-height: 300px;
        margin: 2rem auto 0;
    }
    
    .cotacao-content {
        padding: 1rem;
    }
}

/* ===================================
   DEPOIMENTOS SECTION STYLES
   =================================== */

.depoimentos-section {
    background-color: #f5f5f5;
    padding: 4rem 0;
}

.depoimentos-title {
    color: #5a7c8f;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.depoimento-card {
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.avatar-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px dotted #5a7c8f;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    overflow: hidden;
}

.avatar-icon {
    font-size: 8rem;
    color: #5a7c8f;
    opacity: 0.3;
}

.depoimento-texto {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: center;
    flex-grow: 1;
}

.cliente-nome {
    color: #5a7c8f;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cliente-cargo {
    color: #5a7c8f;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0;
}

/* Responsivo */
@media (max-width: 992px) {
    .depoimento-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .depoimentos-title {
        font-size: 1.8rem;
    }
    
    .avatar-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .avatar-icon {
        font-size: 6rem;
    }
    
    .depoimento-texto {
        font-size: 0.9rem;
    }
    
    .cliente-nome {
        font-size: 1rem;
    }
    
    .cliente-cargo {
        font-size: 0.85rem;
    }
}

/* ===================================
   CONTATO E LOCALIZAÇÃO SECTION STYLES
   =================================== */

.contato-section {
    background-color: #fff;
    padding: 4rem 0;
}

.contato-title {
    color: #5a7c8f;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.contato-info {
    padding: 2rem;
}

.info-item {
    text-align: center;
}

.info-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #5a7c8f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.info-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.info-title {
    color: #5a7c8f;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.info-text a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: #ff8c42;
}

.mapa-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mapa-wrapper iframe {
    display: block;
}

/* Responsivo */
@media (max-width: 992px) {
    .contato-info {
        padding: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .contato-title {
        font-size: 1.8rem;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-icon i {
        font-size: 1.5rem;
    }
    
    .info-title {
        font-size: 1.1rem;
    }
    
    .info-text {
        font-size: 0.95rem;
    }
    
    .mapa-wrapper iframe {
        height: 300px;
    }
}

/* ===================================
   FOOTER STYLES
   =================================== */

/* Footer Principal */
.footer-main {
    background-color: #3d4456;
    color: #fff;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    /* Transforma a logo em branco */
}

.footer-menu {
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: #b8bfcc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #fff;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.footer-contact a:hover {
    color: #fff !important;
}

/* Redes Sociais */
.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #fff;
    color: #3d4456;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #ff6b35;
    color: #fff;
    transform: translateY(-3px);
}

/* Footer Inferior */
.footer-bottom {
    background-color: #5a7c8f;
}

.footer-bottom p,
.footer-bottom a {
    font-size: 0.85rem;
}

.footer-bottom a:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-main {
        text-align: center;
    }
    
    .footer-logo {
        max-width: 150px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
}

/* ===================================
   PRIVACY PAGE STYLES
   =================================== */

.privacy-page {
    min-height: calc(100vh - 200px);
}

.privacy-hero {
    background: linear-gradient(135deg, #5a7c8f 0%, #3d4456 100%);
    color: #fff;
    padding: 3rem 0;
}

.privacy-hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.privacy-hero .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.privacy-content {
    background-color: #fff;
}

.privacy-content h2 {
    color: #5a7c8f;
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ff8c42;
}

.privacy-content h5 {
    color: #5a7c8f;
    font-weight: 600;
    margin-top: 1.5rem;
}

.privacy-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-content ul {
    color: #666;
    line-height: 2;
}

.privacy-content ul li {
    margin-bottom: 0.5rem;
}

.privacy-content a {
    color: #ff8c42;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-content a:hover {
    color: #ff6b35;
    text-decoration: underline;
}

.contact-info-privacy {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-left: 4px solid #ff8c42;
    border-radius: 4px;
}

.contact-info-privacy p {
    margin-bottom: 0.5rem;
}

.contact-info-privacy a {
    color: #ff8c42;
}

.border-left-4 {
    border-left: 4px solid #ff8c42 !important;
}

.bg-light {
    background-color: #f9f9f9 !important;
}

/* Responsivo */
@media (max-width: 768px) {
    .privacy-hero h1 {
        font-size: 1.8rem;
    }
    
    .privacy-content h2 {
        font-size: 1.4rem;
    }
    
    .privacy-content p {
        font-size: 0.95rem;
    }
}
