
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

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

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
}

.btn.btn-secondary:hover {
    background:#f29209;
    border: 1px solid#f29209;
}

.btn.btn-light {
    color:#f29209;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background:#f29209;
    border: 1px solid#f29209;
}

/*** Icon Animation Start ***/
@keyframes icon-animat {
    0%  {border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;}

    25% {border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;}

    50% {border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;}

    75% {border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;}

    100% {border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;}
}
/*** Icon Animation End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
}

.sticky-top {
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: #f29209;
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #f29209;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background:#f29209;
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 8px !important;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}



@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    margin-top: 8px !important;
    transition: .5s;
    opacity: 0;
    }
}

@media (max-width: 991px) {
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid #000000;
        color: #f29209;
    }

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }
}
/*** Navbar End ***/

/*** Carousel Header Start ***/
.carousel .carousel-item img {
    object-fit: cover;
}

.carousel .carousel-item,
.carousel .carousel-item img {
    height: 700px;
}

.carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
    display: flex;
    align-items: center;
}

.carousel .carousel-indicators {
    left: 75%;
    top: 50%;
    margin-right: 25%;
    transform: translateY(-50%);
    flex-direction: column;
}

.carousel-indicators [data-bs-target] {
    display: flex;
    width: 15px;
    height: 15px;
    border: 6px solid var(--bs-white);
    border-radius: 15px;
    padding: 0;
    margin-top:10px;
    margin-bottom:10px;
    background-color: var(--bs-secondary);
    opacity: 1;
    transition: 0.5s;
}

.carousel-indicators [data-bs-target].active {
    background-color:#f29209;
}

@media (max-width: 992px) {
    .carousel-indicators [data-bs-target] {
        display: none;
    }
}
/*** Carousel Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)), url(../img/fact-bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Features Start ***/
.feature {
    background: var(--bs-light);
}

.feature .feature-item {
    display: flex;
    border-radius: 10px;
}

.feature .feature-item .feature-icon span {
    width: 90px; 
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: #f29209;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;;
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Features End ***/

/*** About Start ***/
.about .about-item .about-item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
}

.about .about-item .about-item-inner .about-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: #f29209;
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

.about .about-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    
}

.about .about-img .img-1 {
    height: 85%;
    margin-right: 50px;
}

.about .about-img .img-2 {
    position: absolute;
    width: 100%; 
    bottom: 0; 
    right: 0;
    padding-left: 50px;
    border-radius: 10px;
}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 98%;
    top: 0;
    right: 0;
    border-radius: 10px;
    background:#f29209;
    z-index: -1;
}

.about .about-item .text-item {
    position: relative;
    padding-left: 25px;
}

.about .about-item .text-item::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
}
/*** About End ***/


/*** Fact Counter Start ***/
.counter {
    background: linear-gradient(rgba(0, 12, 33, 0.9), rgba(31, 46, 78, 0.9)), url(../img/fact-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter .counter-item .counter-item-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background:#f29209;
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Fact Counter End ***/

/*** Services Start ***/
.service .service-item {
    position: relative;
    display: flex;

/* ============================================
   Rastreadora - Tela inicial (index.html)
   Estilos isolados para não quebrar o resto.
============================================ */
}

:root {
    --rr-bg-0: #b9b9b9;
    --rr-bg-1: #d2d2d3;
    --rr-accent: #d1d1d1; /* laranja */
    --rr-accent-2: #ffffff; /* verde */
    --rr-text: #f29209;
    --rr-muted: rgba(0, 27, 90, 0.75);
}

/* Base da tela */
.presentation-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 18px;
    position: relative;
    overflow: hidden;

}

.presentation-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    background:
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.10), transparent 40%),
        radial-gradient(circle at 85% 35%, rgba(255, 255, 255, 0.08), transparent 40%);
    filter: blur(18px);
    opacity: 0.75;
    animation: rrAurora 14s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Spotlight interativo (JS atualiza --rr-spot-x/y) */
.presentation-container {
    --rr-spot-x: 50%;
    --rr-spot-y: 40%;
}

.presentation-container .container::before {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(420px 260px at var(--rr-spot-x) var(--rr-spot-y), rgba(255,255,255,0.14), transparent 62%);
    opacity: 0.85;
    pointer-events: none;
    transition: background-position 120ms linear;
    filter: blur(2px);
}

.presentation-container::after {
    /* grain/noise sutil */
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.20'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
    opacity: 0.22;
    pointer-events: none;
}

@keyframes rrAurora {
    0% { transform: translate3d(-10px, -12px, 0) scale(1); }
    100% { transform: translate3d(12px, 10px, 0) scale(1.03); }
}

/* Container central (apenas nesta tela) */
.presentation-container > .container {
    width: min(980px, 100%);
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Logo */
.presentation-container .logo-section {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(12px);
    animation: rrReveal 800ms cubic-bezier(.2,.9,.2,1) forwards;
}

.presentation-container .logo-image {
    max-width: 360px;
    width: clamp(220px, 42vw, 360px);
    height: auto;
    filter: drop-shadow(0 16px 28px rgba(0,0,0,0.35));
}

/* Texto */
.presentation-container .main-content {
    margin: 12px auto 26px;
    opacity: 0;
    transform: translateY(14px);
    animation: rrReveal 850ms cubic-bezier(.2,.9,.2,1) 120ms forwards;
}

.presentation-container .main-heading {
    font-size: clamp(28px, 4.2vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 800;
    margin: 0 0 12px;
    color: var(--rr-text);
    text-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

.presentation-container .main-description,
.presentation-container .subtitle {
    margin: 0 auto;
    max-width: 760px;
    font-size: clamp(14px, 1.5vw, 18px);
    color: var(--rr-muted);
    line-height: 1.6;
}

/* CTA */
.presentation-container .cta-section {
    opacity: 0;
    transform: translateY(14px);
    animation: rrReveal 900ms cubic-bezier(.2,.9,.2,1) 260ms forwards;
}

.presentation-container .cta-buttons-grid {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.presentation-container .cta-button {
    position: relative;
    border: 0;
    border-radius: 16px;
    padding: 14px 18px;
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #0b1220;
    cursor: pointer;
    transform: translateZ(0);
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
    transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.22);
    isolation: isolate;
}

.presentation-container .cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(120px 80px at 20% 20%, rgba(255,255,255,0.45), transparent 60%);
    opacity: 0;
    transition: opacity 240ms ease;
}

/* sheen sweep */
.presentation-container .cta-button::after {
    content: '';
    position: absolute;
    top: -40%;
    left: -60%;
    width: 60%;
    height: 180%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
    transform: rotate(18deg);
    opacity: 0.0;
    transition: opacity 240ms ease;
    z-index: 0;
}

.presentation-container .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 60px rgba(0,0,0,0.36);
    filter: brightness(1.02);
}

.presentation-container .cta-button:hover::before {
    opacity: 1;
}

.presentation-container .cta-button:hover::after {
    opacity: 0.9;
    animation: rrSheen 900ms ease-out;
}

.presentation-container .cta-button:active {
    transform: translateY(-1px) scale(0.99);
}

.presentation-container .cta-button i {
    font-size: 18px;
    transform: translateY(0.5px);
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.22));
}

.presentation-container .cta-button span {
    position: relative;
    z-index: 1;
}

.presentation-container .cta-button i {
    position: relative;
    z-index: 1;
}

.presentation-container .cta-button-seguro {
    background: linear-gradient(135deg, #ffd08a, var(--rr-accent));
}

.presentation-container .cta-button-rastreador {
    background: linear-gradient(135deg, #8ff0c8, var(--rr-accent-2));
}

@keyframes rrSheen {
    0% { transform: translateX(0) rotate(18deg); }
    100% { transform: translateX(260%) rotate(18deg); }
}

@keyframes rrReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Login (login.html)
   Mantém identidade visual da tela inicial.
============================================ */

.rr-login-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 18px;
    padding: 22px 18px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.22);
    backdrop-filter: blur(10px);
    text-align: left;
}

.rr-login-title {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 800;
    color: #0b1220;
}

.rr-login-subtitle {
    margin: 0 0 16px;
    color: rgba(11, 18, 32, 0.7);
    font-size: 14px;
}

.rr-login-form .form-group {
    margin-bottom: 14px;
}

.rr-login-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: rgba(11, 18, 32, 0.85);
}

.rr-login-form input {
    width: 100%;
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid rgba(11, 18, 32, 0.14);
    background: rgba(255, 255, 255, 0.85);
    outline: none;
    transition: box-shadow 180ms ease, border-color 180ms ease;
}

.rr-login-form input:focus {
    border-color: rgba(242, 146, 9, 0.55);
    box-shadow: 0 0 0 4px rgba(242, 146, 9, 0.16);
}

.rr-password-wrapper {
    position: relative;
}

.rr-password-wrapper input {
    padding-right: 44px;
}

.rr-toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: rgba(11, 18, 32, 0.6);
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
}

.rr-toggle-password:hover {
    background: rgba(11, 18, 32, 0.06);
    color: rgba(11, 18, 32, 0.85);
}

.rr-error {
    margin-top: 14px;
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid rgba(220, 38, 38, 0.25);
    background: rgba(254, 226, 226, 0.85);
    color: #991b1b;
    font-weight: 600;
    font-size: 14px;
}

@media (max-width: 520px) {
    .rr-login-card {
        padding: 18px 14px;
        border-radius: 16px;
    }
}

@media (max-width: 520px) {
    .presentation-container .cta-buttons-grid {
        width: 100%;
        gap: 12px;
        flex-direction: column;
        align-items: stretch;
        padding: 0 10px;
    }

    .presentation-container .cta-button {
        width: 100%;
        min-width: 0;
        padding: 16px 16px;
        border-radius: 14px;
    }

    .presentation-container .cta-button span {
        white-space: nowrap;
    }
}

/* Mantém o estilo original de serviços (foi removido sem querer em uma edição anterior) */
.service .service-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.service .service-item:hover {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 60px;
    background: var(--bs-light);
}

.service .service-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: #f29209;
    border-radius: 10px;
    z-index: -1;
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover::after {
    opacity: 1;
}

.service .service-item .service-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: #f29209;
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}
/*** Service End ***/

/*** Cars Categories Start ***/
.categories .categories-item {
    position: relative;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item:hover {
    border: 1px solid#f29209;
}

.categories .categories-item .categories-item-inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item .categories-item-inner:hover {
    box-shadow: 0 0 50px rgba(234, 0, 30, .3);
}

.categories .categories-item-inner .categories-img {
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-content {
    border-top: 4px solid var(--bs-white);
    text-align: center;
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-review {
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories-carousel .owl-stage-outer {
    margin-top: 65px;
    margin-right: -1px;
}

.categories-carousel .owl-nav .owl-prev,
.categories-carousel .owl-nav .owl-next {
    position: absolute;
    top: -65px;
    padding: 10px 35px;
    color: var(--bs-white);
    background:#f29209;
    border-radius: 50px;
    transition: 0.5s;
}

.categories-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.categories-carousel .owl-nav .owl-next {
    right: 0;
}

.categories-carousel .owl-nav .owl-prev:hover,
.categories-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** Cars Categories End ***/


/*** Process Start ***/
.steps {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../img/bg-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


.steps .steps-item {
    position: relative;
    background: var(--bs-secondary);
    border-radius: 10px;
}

.steps .steps-item h4,
.steps .steps-item p {
    color: var(--bs-white);
}

.steps .steps-item .setps-number {
    position: absolute;
    width: 64px;
    height: 64px;
    bottom: 0; 
    right: 40px;
    font-weight: 900;
    border: 1px solid var(--bs-white); 
    border-radius: 64px;
    transform: translateY(50%);
    color: var(--bs-white);
    background: var(--bs-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}
/*** Process End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.3);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}  

.blog .blog-item .blog-content {
    position: relative;
    background: var(--bs-light);
}

.blog .blog-item .blog-content .blog-date {
    position: absolute;
    top: 0; 
    left: 25px; 
    transform: translateY(-50%);
    padding: 12px 25px;
    border-radius: 10px;
    color: var(--bs-white);
    background:#f29209;
}

.blog .blog-item .blog-content .blog-comment {
    display: flex;
    justify-content: space-between;
}
/*** Blog End ***/


/*** Banner Start ***/
.banner .banner-item {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.banner .banner-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, .6);
    z-index: 2;
}

.banner .banner-item .banner-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    margin-left: 0;
    margin-bottom: 0;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    z-index: 5;
}

@media (min-width: 992px) {
    .banner .banner-item .banner-content h2 {
        font-size: 45px;
        margin-bottom: 20px;
    }

    .banner .banner-item .banner-content h1 {
        font-size: 72px;
        margin-bottom: 20px;
    }

    .banner .banner-item .banner-content p {
        font-size: 40px;
        margin-bottom: 20px;
    }
}
/*** Banner End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    text-align: center;
    border-radius: 10px;
    margin-top: 100px;
    background: var(--bs-light);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
    z-index: 2;
    transition: 0.5s;
}

.team .team-item:hover::after {
    height: 100%;
}

.team .team-item .team-content {
    position: relative;
    z-index: 5;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-white);
}
.team .team-item:hover .team-content p {
    color: var(--bs-white);
}

.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    top: -100px;
    margin-bottom: -100px;
    border-radius: 10px;
    z-index: 3;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .3);
    z-index: 4;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-right: -1px;
}

.testimonial .testimonial-item {
    position: relative;
    margin-top: 35px;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
}

.testimonial .testimonial-item .testimonial-quote {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    border-radius: 70px;
    color: var(--bs-white);
    background: var(--bs-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    align-items: center;
    background: var(--bs-light);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.testimonial .testimonial-item .testimonial-inner img {
    width: 100px; 
    height: 100px; 
    border-radius: 100px;
    border: 4px solid var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background:#f29209;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-secondary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background:#f29209;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .contact-add-item {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
}

.contact .contact-add-item .contact-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background:#f29209;
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color:#f29209;
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color:#f29209 !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/

/* ===== ESTILOS PERSONALIZADOS DO SITE ===== */

/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 25%, #cbd5e1 75%, #94a3b8 100%);
    min-height: 100vh;
    position: relative;
    line-height: 1.6;
    color: #1e293b;
    font-weight: 400;
}

/* ===== LOGIN: manter layout padrão e alterar apenas o background ===== */
/*
  Observação: `login.html` reutiliza a mesma estrutura do index (`.presentation-container`).
  Aqui a gente aplica alterações APENAS quando estiver no container do login.
*/
#presentation-login {
    /* Manter o fundo antigo (padrão do site) */
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 25%, #cbd5e1 75%, #94a3b8 100%);
}

#presentation-login .rr-login-card {
    background: #ffffff;
    border: 0;
    border-radius: 26px;
    padding: 44px 46px;
    box-shadow: 0 30px 80px rgba(8, 10, 40, 0.28);
    width: min(560px, 100%);
    position: relative;
    z-index: 1;
}

#presentation-login .rr-login-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

#presentation-login .rr-login-logo-img {
    width: min(300px, 90%);
    height: auto;
    display: block;
}

#presentation-login .rr-login-title {
    margin: 0 0 6px 0;
    font-size: 2.2rem;
    font-weight: 800;
    color: #f29209;
    letter-spacing: -0.02em;
    text-align: center;
}

#presentation-login .rr-login-subtitle {
    margin: 0 0 22px 0;
    color: #64748b;
    font-weight: 500;
    text-align: center;
}

#presentation-login .rr-login-form .form-group {
    margin-bottom: 16px;
}

#presentation-login .rr-login-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #334155;
}

#presentation-login .rr-login-form label i {
    color: #f29209;
}

#presentation-login .rr-login-form input {
    width: 100%;
    padding: 16px 16px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    background: #ffffff;
    color: #0f172a;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

#presentation-login .rr-login-form input:focus {
    border-color: rgba(242, 146, 9, 0.9);
    box-shadow: 0 0 0 4px rgba(242, 146, 9, 0.18);
}

#presentation-login .rr-password-wrapper {
    position: relative;
}

#presentation-login .rr-password-wrapper input {
    padding-right: 46px;
}

#presentation-login .rr-toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
}

#presentation-login .rr-toggle-password:hover {
    background: rgba(242, 146, 9, 0.12);
    color: #0f172a;
}

#presentation-login .rr-login-submit {
    border: none;
    cursor: pointer;
    padding: 18px 20px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(90deg, #f29209 0%, #ff9800 50%, #f59e0b 100%);
    box-shadow: 0 16px 40px rgba(242, 146, 9, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

#presentation-login .rr-login-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 55px rgba(242, 146, 9, 0.45);
    filter: brightness(1.03);
}

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

#presentation-login .rr-login-logo-img {
    animation: rr-float 3s ease-in-out infinite;
}

#presentation-login .rr-login-submit:active {
    transform: translateY(0);
}

#presentation-login .rr-login-footer {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #eef2ff;
    color: #64748b;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 520px) {
    #presentation-login .rr-login-card {
        padding: 34px 22px;
        border-radius: 22px;
    }
}

#presentation-login .rr-error {
    margin-top: 14px;
    padding: 12px 12px;
    border-radius: 12px;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.25);
    color: #991b1b;
    font-weight: 600;
}

@keyframes rr-shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

#presentation-login .rr-error.shake {
    animation: rr-shake 0.45s ease;
}

/* ===== APRESENTAÇÃO ===== */
.presentation-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Logo Section */
.logo-section {
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.logo {
    text-align: center;
}

.logo-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.logo-text {
    font-size: 4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f29209, #ff9800);
    border-radius: 2px;
    animation: expandLine 1s ease-out 1.5s both;
}

.logo-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #475569;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 8px;
}

/* Main Content */
.main-content {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-heading {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
    text-align: center;
    width: 100%;
    color: #fd9701;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: textFillEffect 3s ease-out 3s both;
}

.main-description {
    font-size: 1.3rem;
    font-weight: 500;
    color: #475569;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 3.5s both;
    text-align: center;
    width: 100%;
}

/* CTA Button */
.presentation-container .cta-section {
    opacity: 1 !important;
    transform: translateY(0) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    visibility: visible !important;
    animation: fadeInUp 1s ease-out 2s both;
}

.presentation-container .cta-buttons-wrapper {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 600px;
}

.presentation-container .cta-button {
    background: linear-gradient(135deg, #f29209 0%, #ff9800 100%);
    color: white;
    border: none;
    padding: 18px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(242, 146, 9, 0.35);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    visibility: visible !important;
    opacity: 1 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex: 1 1 auto;
    min-width: 180px;
    max-width: 280px;
    text-decoration: none;
}

.presentation-container .cta-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.presentation-container .cta-button:hover i {
    transform: scale(1.15);
}

.presentation-container .cta-button-seguro {
    background: linear-gradient(135deg, #f29209 0%, #ff9800 100%);
}

.presentation-container .cta-button-rastreador {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

.presentation-container .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.presentation-container .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(242, 146, 9, 0.5);
}

.presentation-container .cta-button-seguro:hover {
    background: linear-gradient(135deg, #ff9800 0%, #f29209 100%);
}

.presentation-container .cta-button-rastreador:hover {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.5);
}

.presentation-container .cta-button:hover::before {
    left: 100%;
}

.presentation-container .cta-button:active {
    transform: translateY(0);
}

@media (max-width: 520px) {
    .presentation-container .cta-buttons-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .presentation-container .cta-button {
        width: 100%;
        max-width: none;
    }
}

/* Dashboard Link */
.dashboard-link {
    margin-top: 20px;
    text-align: center;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.dashboard-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.9);
    color: #2d3748;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.dashboard-btn:hover {
    background: white;
    border-color: #f29209;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(241, 245, 249, 0.6));
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.circle-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.circle-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

/* ===== FORMULÁRIO ===== */
.form-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    text-align: center;
    margin-bottom: 20px;
}

.logo-image-header {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

/* Progress Bar */
.progress-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.progress-step.completed {
    opacity: 0.8;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.progress-step.active .step-number {
    background: #f29209;
    color: white;
}

.progress-step.completed .step-number {
    background: #10b981;
    color: white;
}

.step-label {
    font-size: 0.75rem;
    font-weight: 400;
    color: #9ca3af;
    text-align: center;
}

/* Main Content do Formulário */
.form-container .main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
}

.step {
    display: none;
    max-width: 500px;
    width: 100%;
    animation: fadeInUp 0.5s ease-out;
}

.step.active {
    display: block;
}

.step-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #e5e7eb;
}

.step-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.5;
    font-weight: 400;
}

.question {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 20px;
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
    text-align: left;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.2s ease;
    background: #ffffff;
    color: #1f2937;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #f29209;
    box-shadow: 0 0 0 3px rgba(242, 146, 9, 0.1);
}

.form-group input:hover,
.form-group select:hover {
    border-color: #9ca3af;
}

.form-group input::placeholder {
    color: #9ca3af;
}

.form-group small {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 8px;
    line-height: 1.4;
}

/* Select styling */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

/* Radio and Checkbox Styles */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    padding: 14px 16px;
    font-weight: 400;
    color: #374151;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.radio-label:hover,
.checkbox-label:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #1f2937;
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
    display: none;
}

.radio-custom,
.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 1.5px solid #9ca3af;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
    background: white;
    margin-right: 12px;
}

.radio-custom {
    border-radius: 50%;
}

.checkbox-custom {
    border-radius: 4px;
}

.radio-label input[type="radio"]:checked + .radio-custom,
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    border-color: #f29209;
    background: #f29209;
    border-width: 1.5px;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    display: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    display: none;
}

/* Buttons */
.button-group {
    display: flex !important;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.5s ease;
    visibility: visible !important;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block !important;
    text-align: center;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
}

.btn-primary {
    background: #f29209;
    color: white;
}

.btn-primary:hover {
    background: #e08208;
}

.btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

/* Botão Outline - Melhorado */
.btn-outline {
    background: white;
    border: 2px solid #ff9800;
    color: #ff9800;
    padding: 16px 24px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.4;
    min-width: 160px;
}

.btn-outline:hover {
    background: #ff9800;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.3);
}

/* Estilos específicos para os botões do Step 5 (QAR) */
#step-5 .button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

#step-5 .button-group .btn {
    min-width: 160px;
    max-width: 200px;
    padding: 16px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#step-5 .button-group .btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #e5e7eb;
}

#step-5 .button-group .btn-secondary:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

#step-5 .button-group .btn-outline {
    background: white;
    border: 2px solid #ff9800;
    color: #ff9800;
}

#step-5 .button-group .btn-outline:hover {
    background: #ff9800;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.3);
}

#step-5 .button-group .btn-primary {
    background: linear-gradient(135deg, #ff9800, #ff6b00);
    color: white;
    border: none;
}

#step-5 .button-group .btn-primary:hover {
    background: linear-gradient(135deg, #ff6b00, #ff9800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.4);
}

/* Success Content */
.success-content {
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 20px;
}

.consultant-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    border-radius: 20px;
    padding: 35px 30px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.consultant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #ff9800);
}

.consultant-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    text-align: center;
}

.consultant-card > p {
    color: #64748b;
    margin-bottom: 25px;
    text-align: center;
    font-size: 0.95rem;
}

.consultant-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}

.consultant-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.consultant-avatar:hover {
    transform: scale(1.05);
}

.consultant-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.consultant-details {
    text-align: center;
    width: 100%;
}

.consultant-details h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.consultant-details p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.consultant-details p:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #475569;
    font-weight: 500;
    margin-top: 15px;
}

.consultant-details p:last-child i {
    color: #ffc107;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-btn i {
    font-size: 1.3rem;
}

.whatsapp-btn .whatsapp-label {
    font-weight: 600;
    font-size: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

@keyframes textFillEffect {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-image {
        max-width: 250px;
    }
    
    .logo-image-header {
        max-width: 150px;
    }
    
    .logo-text {
        font-size: 2.8rem;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .main-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .cta-buttons-wrapper {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 0 20px;
    }
    
    .cta-button {
        padding: 16px 28px;
        font-size: 0.95rem;
        max-width: 100%;
        min-width: 100%;
    }
    
    .floating-circle {
        display: none;
    }
    
    .progress-bar {
        gap: 10px;
        padding: 0 10px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .step-label {
        font-size: 0.7rem;
    }
    
    .step-content {
        padding: 30px 20px;
    }
    
    .step-content h2 {
        font-size: 1.6rem;
    }
    
    .consultant-info {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-image {
        max-width: 200px;
    }
    
    .logo-image-header {
        max-width: 120px;
    }
    
    .logo-text {
        font-size: 2.2rem;
    }
    
    .main-heading {
        font-size: 1.6rem;
    }
    
    .main-description {
        font-size: 1rem;
    }
    
    .logo-section {
        margin-bottom: 40px;
    }
    
    .progress-bar {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .step-content {
        padding: 25px 15px;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* Informações da Cotação Bradesco */
.quote-info-section {
    margin: 30px 0;
    animation: fadeIn 0.5s ease;
}

.quote-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.quote-info-card:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
    border-color: #ffc107;
}

.quote-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
}

.quote-info-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quote-info-header h3 i {
    color: #ffc107;
    font-size: 1.4rem;
}

.quote-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 0.9rem;
}

.quote-loading i {
    font-size: 1.2rem;
    color: #ffc107;
}

.quote-info-content {
    min-height: 100px;
}

.quote-result {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote-company {
    text-align: center;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
}

.quote-company h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 10px 0 0 0;
}

.quote-price-section {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    border-radius: 10px;
    color: white;
}

.quote-price-main {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.quote-price-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.quote-price-value {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.quote-installments {
    margin-top: 10px;
    font-size: 0.85rem;
    opacity: 0.95;
}

.quote-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
}

.quote-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #475569;
}

.quote-detail-item i {
    color: #ffc107;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.quote-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: #fef3c7;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.quote-note i {
    color: #f59e0b;
    margin-top: 2px;
}

.quote-note small {
    color: #92400e;
    font-size: 0.85rem;
    line-height: 1.5;
}

.quote-error {
    text-align: center;
    padding: 30px 20px;
    color: #dc2626;
}

.quote-error i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.7;
}

.quote-error p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #991b1b;
}

.quote-error small {
    color: #7f1d1d;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .quote-price-value {
        font-size: 1.8rem;
    }
    
    .quote-info-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .quote-details {
        gap: 10px;
    }
}
