 :root {
    --primary: #0056b3;
    --primary-dark: #003d82;
    --secondary: #f8f9fa;
    --accent: #ffc107;
    --accent-dark: #e6ac00;
    --accent-red: #D40000;
    --dark: #0056b3;
    --light: #ffffff;
    --text: #343a40;
    --text-light: #6c757d;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--text);
    overflow-x: hidden;
}


.form-select-lg {
    font-size: 1rem !important;
}

.footer {
    background-color: #0056b3;
    color: white;
    padding: 20px 0;
}

.social-icon {
    color: #0056b3;
    text-decoration: none;
    font-size: 1.25rem;
    margin-left: 8px;
     background: white !important;
}

.social-icon:hover {
    color: #e6ac00;
    text-decoration: none;
}

.hero-section {
    background: url('img/banner-topo.png');
    background-size: cover;
    background-position: center;
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg, rgba(0, 86, 179, 0.7) 0%, rgba(33, 37, 41, 0.9) 100%);*/
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.title-section {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

/* MODIFICAÇÃO: Altura inicial fixa para os cards */
.card-depoimento {
    height: 450px;
    /* Altura inicial */
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
    background: white;
    margin: 0 15px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Classe para quando o card está expandido */
.card-depoimento.expandido {
    height: auto;
    min-height: 450px;
}

.card-depoimento:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.depoimento-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    object-fit: cover;
}

.depoimento-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-title {
    color: var(--primary);
    font-weight: 700;
}

.depoimento-text {
    font-style: italic;
    position: relative;
    padding: 0 20px;
    color: var(--text);
    max-height: 150px;
    /* Altura inicial do texto */
    overflow: hidden;
    transition: max-height 0.4s ease;
}

/* Texto expandido */
.depoimento-text.expandido {
    max-height: 1000px;
    /* Valor alto o suficiente para mostrar todo o texto */
}

/* Gradiente para indicar que há mais texto */
.texto-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3em;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Esconder o gradiente quando expandido */
.depoimento-text.expandido .texto-gradient {
    opacity: 0;
}

.depoimento-text::before,
.depoimento-text::after {
    content: """;
 font-size: 3rem;
    position: absolute;
    color: var(--accent);
    opacity: 0.3;
}

.depoimento-text::before {
    top: -15px;
    left: -10px;
}

.depoimento-text::after {
    bottom: -40px;
    right: -10px;
    transform: rotate(180deg);
}

/* Botão Leia Mais */
.btn-leia-mais {
    align-self: flex-start;
    margin-top: 10px;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-leia-mais:hover {
    text-decoration: underline;
}

.btn-leia-mais i {
    transition: transform 0.3s ease;
}

.btn-leia-mais.expandido i {
    transform: rotate(180deg);
}

.contact-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    margin-top: -25px;
    position: relative;
    z-index: 10;
}

.btn-primary {
    background: var(--primary);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
}

.footer {
    background: var(--dark);
    color: white;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
}

.testimonial-section {

    background-size: cover;
    background-attachment: fixed;
    padding: 5rem 0;
    position: relative;
}

.testimonial-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0056b3;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.offer-card {


    background: #0177D8;
    background: linear-gradient(90deg, rgba(1, 119, 216, 1) 0%, rgba(3, 137, 248, 1) 50%, rgba(9, 112, 203, 1) 100%);

    border-radius: 15px;
    padding: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    margin: 3rem 0;
}

.offer-title {
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.coupon-code {
    background: white;
    color: #343a40;


    font-size: 2rem;
    font-weight: 800;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    display: inline-block;
    margin: 1rem 0;
    border: 3px dashed #343a40;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 1.5rem 0;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px 20px;
    min-width: 85px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    z-index: 10;
}

.slick-prev:before,
.slick-next:before {
    color: var(--accent) !important;
    font-size: 40px !important;
    opacity: 1 !important;
}

.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}

.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    font-size: 12px !important;
}

.slick-dots li.slick-active button:before {
    color: var(--accent) !important;
}

.benefits-section {
    padding: 5rem 0;
    background: white;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 2rem;
}

.inclusive-text {
    background: rgba(0, 86, 179, 0.1);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: 0 10px 10px 0;
    margin: 2rem 0;
}

.gift-ideas {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
    padding: 4rem 0;
}

.gift-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.gift-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .depoimentos-carousel {
        margin: 0 -15px;
    }

    .slick-prev {
        left: 0px;
    }

    .slick-next {
        right: 0px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0 2rem;
    }

    .contact-card {
        margin-top: -40px;
        padding: 1.5rem;
    }

    .countdown-item {
        min-width: 70px;
        padding: 10px 15px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .coupon-code {
        font-size: 1.5rem;
        padding: 0.5rem 1rem;
    }

    /* Ajuste de altura do card em dispositivos móveis */
    .card-depoimento {
        height: auto;
        min-height: 400px;
    }
}

/* Estilo para mensagens de carregamento */
.loading-message {
    text-align: center;
    color: white;
    padding: 2rem;
    font-style: italic;
}

.api-status {
    position: fixed;
    bottom: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 1000;
}

.api-status.success {
    background: #28a745;
    color: white;
}

.api-status.error {
    background: #dc3545;
    color: white;
}

.display-5 {
    font-size: 2.5rem !important;
}


@media only screen and (max-width: 600px) {
    .slide-desk {
        display: none !important;
    }

}


@media only screen and (min-width: 601px) {
    .slide-mobi {
        display: none !important;
    }

}


.slick-dots {

    display: none !important;
}


.copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: #28a745;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-weight: 500;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 1000;
    white-space: nowrap;
}

.copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.coupon-code {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.coupon-code:hover {
    transform: scale(1.03);
}

.coupon-code:active {
    transform: scale(0.98);
}