/* Base Styles */
html { 
    scroll-behavior: smooth; 
    scroll-padding-top: 70px; /* Ajustar para altura da navbar compactada */
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

:root {
    --primary-color: #25419c;
    --primary-dark: #0f2670;
    --white: #ffffff;
    --light-blue: #BEF4F6;
    --gray: #888;
    --hover-shadow: rgba(0, 0, 0, 0.2);
    --modal-overlay: rgba(0, 0, 0, 0.4);
}

body {
    font-family: 'Roboto', 'Open Sans', Helvetica, sans-serif;
    background-color: var(--white);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

a {
    text-decoration: none; 
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--light-blue);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    overflow-x: hidden;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
}

#mainNav .navbar-nav .nav-item .btn-login,
button.btn.btn-login,
.btn.btn-login {
    background-color: #ffffff !important;
    color: var(--primary-color) !important;
    padding: 10px 22px !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) !important;
    border: 2px solid #ffffff !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    font-size: 0.9rem !important;
}

#mainNav .navbar-nav .nav-item .btn-login:hover,
button.btn.btn-login:hover,
.btn.btn-login:hover {
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: var(--primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
    border-color: var(--light-blue) !important;
}

/* Navbar Styles */
#mainNav {
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1030;
}

#mainNav .navbar-brand {
    font-weight: 700;
    color: var(--white);
}

.logo-img {
    height: 55px; /* Increased from 40px */
    transition: all 0.3s ease;
}

.navbar-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-text-img {
    height: 40px;
    transition: all 0.3s ease;
}

#mainNav .navbar-toggler {
    border: none;
    color: var(--white);
}

#mainNav .nav-link {
    color: var(--white);
    margin: 0 15px;
    font-weight: 600;
    position: relative;
    padding: 12px 5px;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
}

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

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
    width: 100%;
}

#mainNav .nav-link.active {
    color: var(--white);
    font-weight: 700;
}

.navbar-scrolled {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0 !important;
    background-color: var(--primary-dark) !important;
}

.navbar-scrolled .logo-img {
    height: 45px; /* Increased from 35px */
}

/* Botão de contato na navbar */
.btn.btn-contact,
a.btn.btn-contact {
    background-color: var(--white) !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-size: 1rem !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25) !important;
}

.btn.btn-contact:hover,
a.btn.btn-contact:hover {
    background-color: var(--white) !important;
    color: var(--primary-dark) !important;
    border-color: var(--light-blue) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3) !important;
}

/* Botão área do cliente na navbar */
.btn.btn-client,
a.btn.btn-client {
    background-color: var(--light-blue) !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--light-blue) !important;
    padding: 10px 22px !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-size: 1rem !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25) !important;
    margin-right: 10px !important;
}

.btn.btn-client:hover,
a.btn.btn-client:hover {
    background-color: var(--white) !important;
    color: var(--primary-dark) !important;
    border-color: var(--white) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3) !important;
}

/* Melhorias para navegação mobile */
@media (max-width: 991.98px) {
    #mainNav .navbar-collapse {
        background-color: var(--primary-dark);
        padding: 15px;
        border-radius: 5px;
        margin-top: 10px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }
    
    #mainNav .nav-link {
        padding: 12px 15px;
        margin: 5px 0;
        border-radius: 4px;
    }
    
    #mainNav .nav-link:hover,
    #mainNav .nav-link.active {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    #mainNav .nav-cta {
        margin-top: 10px;
        text-align: center;
    }
    
    .navbar-nav {
        margin-bottom: 15px;
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 85px; /* Base padding para desktop */
    padding-bottom: 50px;
    margin-top: -1px; /* Eliminar qualquer gap potencial */
    position: relative;
    z-index: 10;
}

/* Ajustar o padding para dispositivos móveis */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 130px; /* Aumentado de 100px para 130px */
    }
}

/* Ajuste específico para iPhones mais recentes com notch/Dynamic Island */
@media only screen and (device-width: 390px) and (device-height: 844px),
       only screen and (device-width: 428px) and (device-height: 926px),
       only screen and (device-width: 430px) and (device-height: 932px) {
    .hero-section {
        padding-top: 170px; /* Aumentado de 120px para 170px */
    }
}

/* Ajuste adicional para garantir compatibilidade com todos iPhones modernos */
@media only screen and (max-width: 480px) {
    .hero-section {
        padding-top: 150px; /* Valor de segurança para todos dispositivos móveis */
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
    position: relative;
}

.hero-image {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    transition: all 0.5s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

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

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Fullscreen Section Base Styles */
.fullscreen-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 80px 0;
    overflow-x: hidden;
}

/* Services Section */
.services-section {
    background-color: var(--white);
    overflow: visible;
    /* Don't need min-height: 100vh here since services-section now uses the fullscreen-section class in HTML */
}

.services-section .container,
.services-section .row {
    overflow: visible;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    cursor: pointer;
    overflow: visible;
    word-wrap: break-word;
}

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

.service-icon {
    height: 60px;
    width: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img, .service-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.service-text {
    font-size: 1rem;
    color: #666;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.service-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.service-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Plans Section */
.plans-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0;
    background-color: var(--primary-color);
    position: relative;
    overflow: visible;
}

.plans-section .container,
.plans-section .row {
    overflow: visible;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: visible;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pricing-featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.pricing-title {
    font-size: 1.8rem;
    margin: 0;
}

.pricing-price {
    padding: 20px;
    text-align: center;
}

.pricing-price h3 {
    font-size: 2.5rem;
    margin: 0;
    color: var(--primary-dark);
}

.pricing-price span {
    font-size: 1rem;
    color: #888;
}

.pricing-features {
    padding: 0 20px 20px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    align-items: center;
}

.pricing-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.pricing-button {
    padding: 20px;
    text-align: center;
}

/* About Section */
.about-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 15px;
    position: relative;
}

.about-image {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-button i {
    font-size: 30px;
    color: white;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 30px;
}

.footer-contact h4, .footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-contact h4::after, .footer-social h4::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--light-blue);
    bottom: -8px;
    left: 0;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.social-icons i {
    font-size: 1.2rem;
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: var(--modal-overlay);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding-top: 60px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modern-modal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    margin: 5% auto;
    padding: 30px;
    width: 95%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close {
    align-self: flex-end;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: var(--primary-dark);
    transform: rotate(90deg);
}

.modal-title {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 30px;
    width: 100%;
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 65, 156, 0.2);
    outline: none;
}

.modal-footer {
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

.alert {
    color: #d9534f;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-featured {
        transform: none;
    }
    
    .pricing-featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card, .pricing-card {
        margin-bottom: 30px;
    }
    
    .modal-content {
        width: 90%;
    }
    
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero-image {
        max-width: 95%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-button img {
        width: 30px;
        height: 30px;
    }
}

/* Legacy compatibility for existing classes */
.box11, .box111, .box112, .box113 {
    display: none;
}

.box12, .box121, .box1211, .box13, .box131, .box1311 {
    display: block;
}

.titles {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    color: inherit;
}

.titles::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.borderP, .textoBoxservico {
    margin: 0;
    padding: 0;
}

.headerPlans, .borderBranco {
    margin: 0;
    padding: 0;
}

.foot, .footitem {
    display: none;
}

.chatBox {
    display: none;
}

.pseudoPadding {
    display: none;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: var(--modal-overlay);
    padding-top: 60px;
}

.modal-content {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    width: 30%;
}

.close {

    align-self: flex-end;
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.body{
    font-family: 'Roboto', 'Open Sans', Helvetica, sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale;
}

.box11{
    background-color: #25419c;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65px;
    width: 100%;
    margin: 0px;
    padding: 0px;
    position: fixed;
    z-index: 1;
}

.box111{

    color: #FFFFFF;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20;
    margin: 10;
}

.box112{
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin: 0px;
    padding-right: 1%;
}

.box113{
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0px;
    padding-left: 1%;
}

.containerLogin{
    display: flex;
    height: 94%;
    justify-content: center;
    align-items: center;
}


.box21{
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #BEF4F6;
    border-radius: 10px;
    padding: 20;
    margin: 10;
    height: 100%;
}
.box22{

    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    border: 1px solid #BEF4F6;
    border-radius: 10px;
    padding: 20;
    margin: 10;
    height: 100%;
}

.box221{

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #BEF4F6;
    border-radius: 10px;
    padding: 20;
    margin: 10;

}

.box12{

    padding-top: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    height: fit-content;
    
}

.box121{

    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 0px;
    padding-top: 0px;
    
}

.box1211{

    flex: 0 1 calc(25%);
    box-sizing: border-box;
    border: 1px solid #888;
    padding: 20px;
    margin: 25px;
    border-radius: 4px;
}

.box1211:hover{

    transition: box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;

}

.box13{

    background-color: #0f2670;
    height: 750px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;

}

.box131{

    flex: 1;
    display: flex;
    width: 100%;
    box-sizing: border-box;
    height: 100%;
    flex-wrap: wrap;
    align-self: center;
    padding-top: 25px;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 25px;


}

.box1311{

    flex: 1 0 calc(20%);
    height: 100%;
    margin-left: 2.5%;
    margin-right: 2.5%;
    border: 1px solid #ffffff;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0px;

}

.box1311:hover{


    background-color: #25419c;

}

.foot{

    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #25419c;
    padding: 20px;
    gap: 10px;
    font-size: 14px;
}

.footitem{

    margin: 0px;
}

.borderP{

    border-bottom: 1px solid black;
    padding: 0 0 4px;
    font-size: 18px;
    line-height: 125%;
    font-weight: 400;

}

.headerPlans{

    width: 100%;
    height: 10%;
    border-bottom: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.borderBranco{
  
    margin: 0;

}

.titles{

    letter-spacing: -.01em;
    font-size: 42px;
    line-height: 125%;
    font-weight: 400;

}

.pseudoPadding{

    width: 100%;
    background-color: white;
    height: 64px;

}

.chatBox{

    position: fixed; 
    bottom: 33px;  
    right: 33px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    height: 48px;
   
}

.chatBox:hover{

    cursor: pointer;

}

.textoBoxservico{

    margin: 8px 0 0;
    font-size: 15px;
    line-height: 150%;
    font-weight: 400;
    color: #69717f;

}

.botaoEntrar{

    background-color: white;
    border: 0px;
    border-radius: 2px;
    font-size: 14px;
    padding: 5px;
}

/* Estilos de seção de altura completa */
.fullscreen-section {
    min-height: 100vh;
    position: relative;
    padding: 80px 0;
}

/* Ajustes específicos para cada seção */
.services-section {
    background-color: var(--white);
}

.plans-section {
    background-color: var(--primary-color);
}

.about-section {
    background-color: var(--white);
}

/* Ajuste para rolagem suave */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px; /* Ajustar para altura da navbar compactada */
}

.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 1;
}

.plans-section .scroll-arrow {
    color: var(--white);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

.footer-contact i {
    margin-right: 10px;
    color: var(--white);
}