body {
    background-color: #f8f9fa;
    color: #212529;

}

.navbar {
    background-color: #c1d7ec;
}

.navbar-brand,
.nav-link {
    color: #002244 !important;
}

.btn-primary {
    background-color: #3782cc;
    border: none;
}

.btn-primary:hover {
    background-color: #002244;
}

.footer {
    background-color: #052441;
    color: #cedff0;
    padding: 30px 0 15px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}


/* Container para os links sociais */
.social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

/* Estilo para os links */
.footer a {
    color: #cedff0;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Separador entre os links sociais */
.brand-separator {
    color: #cedff0;
    margin: 0 0.5rem;
}

/* Estilo para a seção de serviços */
.services-col {
    text-align: left;
}

.services-col h5 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.services-col ul {
    padding-left: 0;
}

.services-col li {
    margin-bottom: 5px;
}

/* Copyright */
.copyright {
    width: 100%;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(206, 223, 240, 0.2);
}

/* Estilo para telas maiores (acima de 768px) */
@media (min-width: 768px) {
    .social-links {
        flex-direction: row;
    }
}

/* Estilo para telas menores (abaixo de 768px) */
@media (max-width: 767px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-links {
        flex-direction: column;
        gap: 1rem;
    }

    .brand-separator {
        display: none;
    }

    .services-col {
        text-align: center;
    }
}

p {
    font-size: large;
}

.text_bold {
    font-weight: bold;
}

li {
    line-height: 2.5em;
}

.bi {
    color: #3782cc;
}

.bi-instagram {
    font-size: 1.5em;
    color: #cedff0;
}

.text_card {
    padding-left: 1.5em;
}

.instagram a,
a:link,
a:visited,
a:active {
    color: #cedff0
}

.bi-linkedin {
    font-size: 1.5em;
    color: #cedff0;
}

.linkedin a,
a:link,
a:visited,
a:active {
    color: #cedff0
}

.btn-outline-primary,
.btn-outline-primary:link,
.btn-outline-primary:visited,
.btn-outline-primary:active {
    border-color: #3782cc;
    color: #004aad;
}

.btn-outline-primary:hover {
    background-color: #002244;
    border-color: #002244;
    color: #fff;
}

.card-title {
    font-size: larger;
    font-weight: bolder;
}

.titulos,
.titulos * {
    font-size: 2em !important;
    font-weight: bold !important;
}


/* Estilos botão voltar ao topo */
#btnVoltarAoTopo {
    display: none;
    /* Oculta o botão inicialmente */
    position: fixed;
    /* Fixa o botão na tela */
    bottom: 20px;
    /* Distância do fundo */
    right: 20px;
    /* Distância da direita */
    z-index: 99;
    /* Garante que o botão fique acima de outros elementos */
    border: none;
    /* Remove borda */
    outline: none;
    /* Remove contorno */
    background-color: #021830;
    /* Cor de fundo */
    color: white;
    /* Cor do ícone */
    cursor: pointer;
    /* Muda o cursor para pointer */
    padding: 10px;
    /* Espaçamento interno */
    border-radius: 50%;
    /* Deixa o botão redondo */
    font-size: 24px;
    /* Tamanho do ícone */
    transition: background-color 0.3s;
    /* Efeito de transição suave */
}

#btnVoltarAoTopo:hover {
    background-color: #0056b3;
    /* Muda a cor ao passar o mouse */
}


/* Estilos para botão whatsapp*/
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 15px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
    color: white;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.servico-container {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

.hero-servico {
    text-align: center;
    background: linear-gradient(120deg, #004aad, #00aaff);
    color: white;
    padding: 60px 20px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.hero-servico h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.conteudo-servico h2 {
    color: #004aad;
    margin-top: 20px;
}

.conteudo-servico ul {
    list-style: none;
    padding-left: 0;
}

.conteudo-servico li::before {
    content: "✔ ";
    color: #00aaff;
}

.botao {
    display: inline-block;
    background: #004aad;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.botao:hover {
    background: #0077ff;
}

.servico-destaque img {
    width: 100%;
    border-radius: 12px;
    margin-top: 30px;
}


.certificado-img {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.certificado-img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


.img-sobre {
    max-width: 220px;
    height: auto;
}

@media (max-width: 768px) {
    .img-sobre {
        max-width: 150px;
    }
}

section h2 {
    color: #004aad;
    font-weight: bold;
}

section p {
    line-height: 1.6em;
}

section img {
    transition: transform .3s ease;
}

section img:hover {
    transform: scale(1.03);
}

img.shadow-sm:hover {
    transform: scale(1.03);
    transition: 0.3s ease;
}


.hero-local {
    background: linear-gradient(120deg, #0052cc, #002e8a);
    padding: 60px 20px;
    color: #fff;
    text-align: center;
}

.hero-local h1 {
    font-size: 2.2rem;
    font-weight: 700;
}


.portfolio-grid {
    max-width: 1100px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    padding: 0 15px;
    box-sizing: border-box;
}

.portfolio-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e4e9f2;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    text-align: center;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.portfolio-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.portfolio-card h3 {
    margin: 16px 0 6px;
    font-size: 20px;
    font-weight: 700;
    color: #00316e;
}

.portfolio-card p {
    color: #555;
    font-size: 15px;
    margin-bottom: 18px;
    padding: 0 10px;
}

.portfolio-card a {
    display: inline-block;
    background: #0052cc;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 18px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.portfolio-card a:hover {
    background: #003f9e;
}

.real-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.real-case-card {
    background: #fff;
    border: 1px solid #d8e5f2;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 24px;
}

.real-case-icon {
    align-items: center;
    background: #f3f8fd;
    border: 1px solid #d8e5f2;
    border-radius: 50%;
    color: #0052cc;
    display: flex;
    font-size: 1.7rem;
    height: 54px;
    justify-content: center;
    margin-bottom: 16px;
    width: 54px;
}

.real-case-label {
    color: #4d647a;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.real-case-card h3 {
    color: #00316e;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.real-case-card p {
    color: #555;
    flex: 1;
    line-height: 1.6;
    margin-bottom: 18px;
}

.psychology-ethics-note {
    background: #f8fbff;
    border-left: 4px solid #0052cc;
    color: #4d647a;
    line-height: 1.6;
    margin-top: 24px;
    padding: 16px 18px;
}


/* ===== HERO SECTION ===== */

.hero {
    padding: 120px 0 80px 0;
    text-align: center;
    background: linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
}

.hero-content {
    max-width: 900px;
    margin: auto;
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #607083;
    margin-top: 18px;
    margin-bottom: 40px;
}

/* ===== FORM ===== */

.hero-form {
    background: #3c4657;
    padding: 16px;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-form input {
    padding: 10px 12px;
    border-radius: 6px;
    border: none;
    width: 250px;
    font-size: 15px;
    background: #fff;
}

.hero-form button {
    background: #f4b400;
    color: #000;
    font-weight: 600;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

.hero-form button:hover {
    background: #ca9000;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px 0;
    }

    .hero h1 {
        font-size: 2rem;
        padding: 0 20px;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        padding: 0 25px;
    }

    .hero-form {
        flex-direction: column;
        max-width: 90%;
        margin: auto;
    }

    .hero-form input,
    .hero-form button {
        width: 100%;
    }
}


.ct-header-es .menu a {
    color: #fff !important;
}

.ct-header-es .logo a {
    color: #fff !important;
}


#btnVoltarAoTopo {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 99999 !important;

  width: auto;
  height: auto;

  background: transparent;
  border: none;
  padding: 0;

  font-size: 2.2rem;
  color: #3782cc;
  cursor: pointer;
}

.plans-hero {
    background: linear-gradient(135deg, #052441 0%, #0b5ed7 52%, #67b7ff 100%);
    color: #fff;
    padding: 88px 0 72px;
}

.plans-hero-copy {
    max-width: 760px;
}

.plans-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.plans-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.12;
    margin-bottom: 1rem;
}

.plans-hero p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.9);
}

.plans-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.plans-hero .btn-outline-light {
    border-width: 2px;
}

.plans-hero-highlights {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(6px);
    box-shadow: 0 20px 45px rgba(0, 15, 40, 0.2);
}

.plans-hero-highlights ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.plans-hero-highlights li {
    line-height: 1.7;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.plans-hero-highlights li:last-child {
    border-bottom: 0;
}

.plans-hero-highlights strong {
    display: block;
    color: #fff;
}

.plans-section {
    padding: 72px 0;
}

.plans-section-muted {
    background: linear-gradient(180deg, #ffffff 0%, #f3f8fd 100%);
}

.plans-section-heading {
    max-width: 760px;
    margin-bottom: 2.5rem;
}

.plans-section-heading h2 {
    color: #052441;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 0.8rem;
}

.plans-section-heading p {
    color: #4d647a;
    margin-bottom: 0;
}

.plans-pricing-note {
    max-width: 760px;
    margin: -1rem 0 2rem;
    padding: 0.95rem 1.1rem;
    border-radius: 16px;
    background: #eef6ff;
    border: 1px solid #d3e6fb;
    color: #425466;
}

.plans-pricing-note strong {
    color: #052441;
}

.plans-value-box,
.plans-benefit-card,
.plans-backup-card,
.plans-inline-cta,
.plans-final-cta {
    background: #fff;
    border: 1px solid #d8e5f2;
    border-radius: 22px;
    box-shadow: 0 16px 36px rgba(5, 36, 65, 0.06);
}

.plans-value-box {
    padding: 2rem;
    height: 100%;
}

.plans-value-statement {
    font-size: 1.3rem;
    line-height: 1.55;
    color: #052441;
    margin-bottom: 1.2rem;
}

.plans-value-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plans-value-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.9rem;
    line-height: 1.7;
    color: #425466;
}

.plans-value-list li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #3782cc;
    position: absolute;
    left: 0;
    top: 0.15rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #d8e5f2;
    border-radius: 22px;
    padding: 1.75rem;
    box-shadow: 0 14px 34px rgba(5, 36, 65, 0.08);
}

.plan-card.plan-card-featured {
    border: 2px solid #3782cc;
    transform: translateY(-10px);
    box-shadow: 0 22px 46px rgba(55, 130, 204, 0.18);
}

.plan-card.plan-card-wordpress {
    border-color: #cfe2ff;
}

.plan-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    background: #e8f2fc;
    color: #0b5ed7;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plan-card-featured .plan-badge {
    background: #0b5ed7;
    color: #fff;
}

.plan-card h3 {
    color: #052441;
    margin-bottom: 0.25rem;
}

.plan-audience {
    color: #5f6f82;
    min-height: 72px;
}

.plan-price-group {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.plan-price-box {
    background: #f5f9fd;
    border-radius: 18px;
    padding: 1rem 1.1rem;
}

.plan-price-box span {
    display: block;
    color: #5f6f82;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.plan-price-caption {
    display: block;
    color: #6b7f93;
    font-size: 0.82rem;
    line-height: 1.45;
    margin-top: 0.3rem;
}

.plan-price-box strong {
    display: block;
    color: #052441;
    font-size: 1.65rem;
    line-height: 1.2;
    margin-top: 0.3rem;
}

.plan-price-options {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.9rem;
}

.plan-price-option {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    background: #fff;
    border: 1px solid #d8e5f2;
    border-radius: 14px;
    padding: 0.85rem 0.95rem;
}

.plan-price-option strong {
    font-size: 1.05rem;
    margin-top: 0;
}

.plan-price-option small {
    display: block;
    color: #6b7f93;
}

.plan-price-option-highlight {
    border-color: #3782cc;
    background: #eef6ff;
}

.plan-spotlight {
    margin: 0.25rem 0 1.4rem;
    padding: 0.9rem 1rem;
    border-left: 4px solid #3782cc;
    border-radius: 14px;
    background: #f3f8fd;
    color: #052441;
    font-size: 0.95rem;
    font-weight: 600;
}

.plan-divider-title {
    color: #052441;
    font-size: 0.98rem;
    font-weight: 700;
    margin: 0.4rem 0 0.9rem;
}

.plan-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.plan-feature-list li {
    position: relative;
    padding-left: 1.65rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #425466;
}

.plan-feature-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #0b5ed7;
    position: absolute;
    left: 0;
    top: 0.15rem;
}

.plan-note {
    color: #6b7f93;
    font-size: 0.92rem;
    margin-top: auto;
    margin-bottom: 1.25rem;
}

.plan-card .btn {
    width: 100%;
}

.plans-benefits-grid,
.plans-backup-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.plans-benefit-card,
.plans-backup-card {
    padding: 1.5rem;
    height: 100%;
}

.plans-benefit-card h3,
.plans-backup-card h3 {
    color: #052441;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.plans-benefit-card p,
.plans-backup-card p {
    color: #4d647a;
    margin-bottom: 0;
}

.plans-benefit-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #e8f2fc;
    color: #0b5ed7;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.plans-backup-card-highlight {
    border-color: #3782cc;
    background: linear-gradient(180deg, #ffffff 0%, #eff7ff 100%);
}

.plans-inline-cta,
.plans-final-cta {
    padding: 2rem;
}

.plans-inline-cta h2,
.plans-final-cta h2 {
    color: #052441;
    margin-bottom: 0.75rem;
}

.plans-inline-cta p,
.plans-final-cta p {
    color: #4d647a;
    margin-bottom: 1.25rem;
}

.plans-actions-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.home-plans-cta {
    padding: 0 0 72px;
}

.home-plans-cta .container {
    max-width: 1080px;
}

.home-plans-cta-box {
    background: linear-gradient(135deg, #052441 0%, #0b5ed7 100%);
    color: #fff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(5, 36, 65, 0.16);
}

.home-plans-cta-box p {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0.4rem;
}

.home-plans-cta-box .btn-light {
    color: #052441;
    font-weight: 700;
}

.website-plan-cta {
    margin: 2.5rem 0 1rem;
    padding: 1.5rem;
    border-radius: 20px;
    background: linear-gradient(180deg, #f3f8fd 0%, #ffffff 100%);
    border: 1px solid #d8e5f2;
}

.website-plan-cta h3 {
    color: #052441;
}

.website-plan-cta p {
    color: #4d647a;
    margin-bottom: 1rem;
}

@media (max-width: 1199px) {
    .plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plan-card.plan-card-featured {
        transform: none;
    }

    .plan-audience {
        min-height: 0;
    }
}

@media (max-width: 991px) {
    .plans-pricing-note {
        margin-top: -0.5rem;
    }
}

@media (max-width: 767px) {
    .plans-hero {
        padding: 64px 0 56px;
    }

    .plans-grid,
    .plans-benefits-grid,
    .plans-backup-grid {
        grid-template-columns: 1fr;
    }

    .plans-actions-inline,
    .plans-hero-actions {
        flex-direction: column;
    }

    .plans-hero-actions .btn,
    .plans-actions-inline .btn {
        width: 100%;
    }

    .plan-price-option {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-plans-cta-box,
    .plans-inline-cta,
    .plans-final-cta,
    .plans-value-box,
    .plan-card,
    .plans-benefit-card,
    .plans-backup-card {
        padding: 1.4rem;
    }
}
