/* Reset e configurações base - Compatível com Bootstrap 5.3 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

:root {
    --primary-blue: #193447;
    --accent-orange: #F39C12;
    --accent-yellow: #FFD700;
    --white: #FFFFFF;
    --black: #000000;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
}

.color-white {
    color: #ffffff !important;
}

/* Override Bootstrap container para manter largura máxima */
.container {
    max-width: 1200px !important;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--accent-orange), #E67E22);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
    animation: slideDown 0.8s ease-out;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.top-bar-left i {
    font-size: 16px;
    animation: pulse 2s infinite;
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.boleto-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.boleto-link:hover {
    color: var(--accent-yellow);
    transform: translateY(-2px);
}

.login-form {
    display: flex;
    align-items: center;
}

.login-input {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    width: 100px;
    transition: all 0.3s ease;
}

.login-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--accent-yellow);
    transform: scale(1.05);
}

.login-btn {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

/* Main Header */
.main-header {
    background: var(--primary-blue);
    padding: 20px 0;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.header-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    align-items: center;
}

/* Logo Section */
.logo-section {
    animation: slideInLeft 1s ease-out 0.5s both;
}

.logo-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.logo-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
    transition: all 0.5s ease;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-image:hover {
    transform: rotate(2deg) scale(1.1);
}

/* Cotações Section */
.cotacao-section {
    display: flex;
    align-items: center;
    animation: slideInUp 1s ease-out 0.7s both;
}

.cotacao-icon {
    background: var(--accent-orange);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

.cotacao-icon i {
    font-size: 18px;
    color: var(--white);
}

.cotacao-text h2 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.online-badge {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    animation: glow 2s ease-in-out infinite alternate;
}

/* Cliente Section */
.cliente-section {
    display: flex;
    align-items: center;
    animation: slideInUp 1s ease-out 0.9s both;
}

.cliente-icon {
    background: var(--accent-orange);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite 0.5s;
}

.cliente-icon i {
    font-size: 18px;
    color: var(--white);
}

.cliente-text h2 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.click-badge {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    animation: glow 2s ease-in-out infinite alternate 0.5s;
}

/* WhatsApp Section */
.whatsapp-section {
    animation: slideInRight 1s ease-out 1.1s both;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: var(--white);
    text-decoration: none;
}

.whatsapp-btn i {
    font-size: 18px;
    animation: whatsappPulse 2s infinite;
}

/* Navigation Bar */
.navigation-bar {
    background: var(--primary-blue);
    padding: 15px 0;
    border-top: 2px solid var(--accent-orange);
    animation: slideInUp 1s ease-out 1.3s both;
    position: relative;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 0;
}

.mobile-menu-checkbox {
    display: none;
}

.mobile-menu-label {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger Animation */
#mobile-menu-checkbox:checked~.mobile-menu-label .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

#mobile-menu-checkbox:checked~.mobile-menu-label .hamburger-line:nth-child(2) {
    opacity: 0;
}

#mobile-menu-checkbox:checked~.mobile-menu-label .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-menu .nav-item {
    position: relative;
}

.nav-menu .nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: none;
    border: none;
}

.nav-menu .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    transition: left 0.5s ease;
}

.nav-menu .nav-link:hover::before {
    left: 100%;
}

.nav-menu .nav-link:hover {
    color: var(--accent-yellow);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
    background: none;
}

.nav-menu .nav-link.parceiros {
    color: var(--accent-yellow);
    font-weight: 700;
    animation: parceirosGlow 2s ease-in-out infinite alternate;
}

/* Mobile Menu */
.mobile-nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-blue);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin: 0;
    padding: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

/* Checkbox hack para controlar o menu mobile */
#mobile-menu-checkbox:checked~.mobile-nav-menu {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-menu .nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-menu .nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 20px;
    display: block;
    transition: all 0.3s ease;
    background: none;
    border: none;
    position: relative;
    overflow: hidden;
}

.mobile-nav-menu .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-menu .nav-link:hover::before {
    left: 100%;
}

.mobile-nav-menu .nav-link:hover {
    color: var(--accent-yellow);
    background: rgba(243, 156, 18, 0.1);
    transform: translateX(10px);
}

.mobile-nav-menu .nav-link.parceiros {
    color: var(--accent-yellow);
    font-weight: 700;
    animation: parceirosGlow 2s ease-in-out infinite alternate;
}

/* Main Content */
.main-content {
    padding: 60px 0;
    background: var(--light-gray);
    animation: fadeIn 1s ease-out 1.5s both;
}

.main-content h1 {
    color: var(--primary-blue);
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.main-content .lead {
    color: var(--dark-gray);
    font-size: 18px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    animation: fadeInUp 1s ease-out 1.7s both;
}

.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.about-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
    border-radius: 20px;
}

.about-image:hover {
    transform: scale(1.05);
}

.about-content {
    padding: 20px 0;
    animation: slideInRight 1s ease-out 1.9s both;
}

.about-title {
    color: var(--primary-blue);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-yellow));
    border-radius: 2px;
    animation: slideInLeft 1s ease-out 2.1s both;
}

.about-description {
    color: var(--dark-gray);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
    animation: fadeIn 1s ease-out 2.3s both;
}

.about-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange), #E67E22);
    color: var(--white);
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
    position: relative;
    overflow: hidden;
    animation: slideInUp 1s ease-out 2.5s both;
}

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

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.5);
    background: linear-gradient(135deg, #E67E22, var(--accent-orange));
    color: var(--white);
    text-decoration: none;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--white);
    animation: fadeInUp 1s ease-out 2.7s both;
}

.services-header {
    margin-bottom: 60px;
    animation: slideInUp 1s ease-out 2.9s both;
}

.services-subtitle {
    color: var(--accent-orange);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    animation: fadeIn 1s ease-out 3.1s both;
}

.services-title {
    color: var(--primary-blue);
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: slideInUp 1s ease-out 3.3s both;
}

.service-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
    animation: fadeInUp 1s ease-out 3.5s both;
}

.service-card:nth-child(2) {
    animation-delay: 3.7s;
}

.service-card:nth-child(3) {
    animation-delay: 3.9s;
}

.service-card:nth-child(4) {
    animation-delay: 4.1s;
}

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

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
    border-radius: 15px;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 15px;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-name {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    padding: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.service-card:hover .service-name {
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    animation: fadeInUp 1s ease-out 4.3s both;
}

.testimonials-header {
    margin-bottom: 60px;
    animation: slideInUp 1s ease-out 4.5s both;
}

.testimonials-title {
    color: var(--primary-blue);
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: slideInUp 1s ease-out 4.7s both;
}

.testimonials-subtitle {
    color: var(--accent-orange);
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    animation: fadeIn 1s ease-out 4.9s both;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    animation: fadeInUp 1s ease-out 5.1s both;
}

.testimonials-track {
    display: flex;
    animation: carouselScroll 30s linear infinite;
    width: calc(400px * 10);
    /* 5 depoimentos duplicados */
}

.testimonial-item {
    flex: 0 0 400px;
    padding: 0 15px;
    animation: fadeInUp 1s ease-out 5.3s both;
}

.testimonial-content {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    color: var(--accent-orange);
    opacity: 0.1;
    font-family: serif;
}

.testimonial-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-orange);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    animation: starGlow 2s ease-in-out infinite alternate;
}

.testimonial-stars i {
    color: var(--accent-yellow);
    font-size: 18px;
    animation: starPulse 1.5s ease-in-out infinite;
}

.testimonial-stars i:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-stars i:nth-child(3) {
    animation-delay: 0.4s;
}

.testimonial-stars i:nth-child(4) {
    animation-delay: 0.6s;
}

.testimonial-stars i:nth-child(5) {
    animation-delay: 0.8s;
}

.testimonial-text {
    color: var(--dark-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: avatarPulse 3s ease-in-out infinite;
}

.author-avatar i {
    color: var(--white);
    font-size: 20px;
}

.author-info {
    flex: 1;
}

.author-name {
    color: var(--primary-blue);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.author-company {
    color: var(--accent-orange);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animações CSS */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

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

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {

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

    50% {
        transform: scale(1.1);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px var(--accent-yellow);
    }

    to {
        box-shadow: 0 0 20px var(--accent-yellow), 0 0 30px var(--accent-yellow);
    }
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

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

    50% {
        transform: scale(1.2);
    }

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

@keyframes parceirosGlow {
    from {
        text-shadow: 0 0 5px var(--accent-yellow);
    }

    to {
        text-shadow: 0 0 20px var(--accent-yellow), 0 0 30px var(--accent-yellow);
    }
}

/* Carousel Animation */
@keyframes carouselScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-400px * 5));
    }
}

/* Star Animations */
@keyframes starPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes starGlow {
    0% {
        filter: drop-shadow(0 0 2px var(--accent-yellow));
    }

    100% {
        filter: drop-shadow(0 0 8px var(--accent-yellow));
    }
}

@keyframes avatarPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(243, 156, 18, 0);
    }
}

/* Responsividade - Compatível com Bootstrap 5.3 */
@media (max-width: 991.98px) {

    .cotacao-section,
    .cliente-section {
        justify-content: center;
    }

    .whatsapp-section {
        justify-content: center !important;
    }
}

@media (max-width: 767.98px) {
    .navigation-bar {
        position: relative;
    }

    .mobile-nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
    }

    /* Forçar exibição do menu mobile quando checkbox estiver marcado */
    #mobile-menu-checkbox:checked~.mobile-nav-menu {
        max-height: 500px !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }

    .top-bar .row {
        text-align: center;
    }

    .top-bar-right {
        justify-content: center !important;
        margin-top: 10px;
    }

    .login-form {
        justify-content: center;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .cotacao-text h2,
    .cliente-text h2 {
        font-size: 16px;
    }

    .whatsapp-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* About Section Responsive */
    .about-section {
        padding: 60px 0;
    }

    .about-title {
        font-size: 32px;
        text-align: center;
    }

    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-description {
        font-size: 16px;
        text-align: center;
    }

    .about-content {
        text-align: center;
    }

    .about-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    /* Services Section Responsive */
    .services-section {
        padding: 60px 0;
    }

    .services-title {
        font-size: 36px;
    }

    .services-subtitle {
        font-size: 14px;
    }

    .service-image img {
        height: 200px;
    }

    .service-name {
        font-size: 20px;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding: 0 10px;
    }

    .login-input {
        width: 80px;
        font-size: 11px;
    }

    .login-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .whatsapp-btn {
        padding: 10px 15px;
        font-size: 12px;
    }

    .main-content h1 {
        font-size: 28px;
    }

    .main-content .lead {
        font-size: 16px;
    }

    /* About Section Mobile */
    .about-section {
        padding: 40px 0;
    }

    .about-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .about-description {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .about-btn {
        padding: 10px 25px;
        font-size: 13px;
    }

    .about-image-container {
        border-radius: 15px;
        margin-bottom: 20px;
    }

    /* Services Section Mobile */
    .services-section {
        padding: 40px 0;
    }

    .services-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .services-subtitle {
        font-size: 12px;
    }

    .service-image img {
        height: 180px;
    }

    .service-name {
        font-size: 18px;
        padding: 15px;
    }

    .service-card {
        margin-bottom: 20px;
    }

    /* Testimonials Section Responsive */
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-title {
        font-size: 36px;
    }

    .testimonials-subtitle {
        font-size: 16px;
    }

    .testimonial-item {
        flex: 0 0 350px;
    }

    .testimonials-track {
        width: calc(350px * 10);
    }

    .testimonial-content {
        padding: 25px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .author-name {
        font-size: 16px;
    }

    .author-company {
        font-size: 13px;
    }

    /* Testimonials Section Mobile */
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .testimonials-subtitle {
        font-size: 14px;
    }

    .testimonial-item {
        flex: 0 0 300px;
    }

    .testimonials-track {
        width: calc(300px * 10);
    }

    .testimonial-content {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .testimonial-stars i {
        font-size: 16px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
    }

    .author-avatar i {
        font-size: 16px;
    }

    .author-name {
        font-size: 15px;
    }

    .author-company {
        font-size: 12px;
    }

    /* Blog Section Responsive */
    .blog-section {
        padding: 60px 0;
    }

    .blog-title {
        font-size: 36px;
    }

    .blog-subtitle {
        font-size: 16px;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 25px;
    }

    .blog-post-title a {
        font-size: 18px;
    }

    .blog-excerpt {
        font-size: 15px;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* Blog Section Mobile */
    .blog-section {
        padding: 40px 0;
    }

    .blog-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .blog-subtitle {
        font-size: 14px;
    }

    .blog-image {
        height: 180px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-post-title a {
        font-size: 16px;
    }

    .blog-excerpt {
        font-size: 14px;
        line-height: 1.5;
    }

    .blog-category {
        font-size: 11px;
        padding: 6px 12px;
    }

    .blog-view-all-btn {
        padding: 15px 30px;
        font-size: 14px;
    }

    /* Footer Section Responsive */
    .footer-top {
        padding: 60px 0 30px;
    }

    .footer-title {
        font-size: 20px;
    }

    .footer-description {
        font-size: 15px;
    }

    .footer-logo img {
        max-width: 180px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .contact-item {
        margin-bottom: 15px;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
    }

    .contact-icon i {
        font-size: 14px;
    }

    .contact-info p {
        font-size: 13px;
    }

    .footer-bottom-links {
        gap: 20px;
    }

    .footer-bottom-links a {
        font-size: 13px;
    }

    /* Footer Section Mobile */
    .footer-top {
        padding: 40px 0 20px;
    }

    .footer-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .footer-logo img {
        max-width: 150px;
    }

    .footer-social {
        gap: 10px;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .footer-links a {
        font-size: 13px;
        gap: 8px;
    }

    .footer-links a i {
        font-size: 10px;
    }

    .contact-item {
        margin-bottom: 12px;
        gap: 12px;
    }

    .contact-icon {
        width: 30px;
        height: 30px;
    }

    .contact-icon i {
        font-size: 12px;
    }

    .contact-info p {
        font-size: 12px;
        line-height: 1.5;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .copyright {
        font-size: 12px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }

    .footer-bottom-links a {
        font-size: 12px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top i {
        font-size: 16px;
    }
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: var(--white);
    animation: fadeInUp 1s ease-out 5.5s both;
}

.blog-header {
    margin-bottom: 60px;
    animation: slideInUp 1s ease-out 5.7s both;
}

.blog-title {
    color: var(--primary-blue);
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: slideInUp 1s ease-out 5.9s both;
}

.blog-subtitle {
    color: var(--accent-orange);
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    animation: fadeIn 1s ease-out 6.1s both;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    animation: fadeInUp 1s ease-out 6.3s both;
    border: 2px solid transparent;
}

.blog-card:nth-child(2) {
    animation-delay: 6.5s;
}

.blog-card:nth-child(3) {
    animation-delay: 6.7s;
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-orange);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    animation: categoryGlow 2s ease-in-out infinite alternate;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--dark-gray);
}

.blog-date,
.blog-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-date i,
.blog-author i {
    color: var(--accent-orange);
    font-size: 16px;
}

.blog-post-title {
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-post-title a {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: block;
}

.blog-post-title a:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

.blog-excerpt {
    color: var(--dark-gray);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.blog-read-more::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-yellow));
    transition: width 0.3s ease;
}

.blog-read-more:hover {
    color: var(--primary-blue);
    transform: translateX(10px);
}

.blog-read-more:hover::after {
    width: 100%;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

.blog-cta {
    margin-top: 60px;
    animation: fadeInUp 1s ease-out 6.9s both;
}

.blog-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    color: var(--white);
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
    position: relative;
    overflow: hidden;
}

.blog-view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.blog-view-all-btn:hover::before {
    left: 100%;
}

.blog-view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(243, 156, 18, 0.5);
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
    color: var(--white);
    text-decoration: none;
}

.blog-view-all-btn i {
    transition: transform 0.3s ease;
}

.blog-view-all-btn:hover i {
    transform: translateX(8px);
}

/* Category Glow Animation */
@keyframes categoryGlow {
    0% {
        box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    }

    100% {
        box-shadow: 0 4px 25px rgba(243, 156, 18, 0.6);
    }
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a252f 100%);
    color: var(--white);
    position: relative;
    animation: fadeInUp 1s ease-out 7.1s both;
}

.footer-top {
    padding: 80px 0 40px;
    animation: slideInUp 1s ease-out 7.3s both;
}

.footer-widget {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 7.5s both;
}

.footer-widget:nth-child(2) {
    animation-delay: 7.7s;
}

.footer-widget:nth-child(3) {
    animation-delay: 7.9s;
}

.footer-widget:nth-child(4) {
    animation-delay: 8.1s;
}

.footer-logo {
    margin-bottom: 25px;
    animation: slideInLeft 1s ease-out 7.5s both;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    transition: all 0.3s ease;
    animation: logoFloat 3s ease-in-out infinite;
}

.footer-logo img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    animation: fadeIn 1s ease-out 7.7s both;
}

.footer-social {
    display: flex;
    gap: 15px;
    animation: slideInUp 1s ease-out 7.9s both;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    color: var(--white);
    text-decoration: none;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.5);
    color: var(--white);
    text-decoration: none;
}

.footer-title {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: slideInUp 1s ease-out 8.1s both;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-yellow));
    border-radius: 2px;
    animation: slideInLeft 1s ease-out 8.3s both;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    animation: fadeInUp 1s ease-out 8.5s both;
}

.footer-links li {
    margin-bottom: 12px;
    animation: slideInLeft 1s ease-out 8.7s both;
}

.footer-links li:nth-child(2) {
    animation-delay: 8.9s;
}

.footer-links li:nth-child(3) {
    animation-delay: 9.1s;
}

.footer-links li:nth-child(4) {
    animation-delay: 9.3s;
}

.footer-links li:nth-child(5) {
    animation-delay: 9.5s;
}

.footer-links li:nth-child(6) {
    animation-delay: 9.7s;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding: 5px 0;
}

.footer-links a i {
    color: var(--accent-orange);
    font-size: 12px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-yellow);
    transform: translateX(10px);
}

.footer-links a:hover i {
    transform: translateX(5px);
    color: var(--accent-yellow);
}

.footer-contact {
    animation: fadeInUp 1s ease-out 8.9s both;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    animation: slideInRight 1s ease-out 9.1s both;
}

.contact-item:nth-child(2) {
    animation-delay: 9.3s;
}

.contact-item:nth-child(3) {
    animation-delay: 9.5s;
}

.contact-item:nth-child(4) {
    animation-delay: 9.7s;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    border-radius: 50%;
    flex-shrink: 0;
    animation: contactPulse 3s ease-in-out infinite;
}

.contact-icon i {
    color: var(--white);
    font-size: 16px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out 9.9s both;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
    animation: slideInLeft 1s ease-out 10.1s both;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    animation: slideInRight 1s ease-out 10.3s both;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-yellow));
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-yellow);
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.3);
    animation: backToTopFloat 3s ease-in-out infinite;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.5);
}

.back-to-top i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

/* Contact Pulse Animation */
@keyframes contactPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(243, 156, 18, 0);
    }
}

/* Back to Top Float Animation */
@keyframes backToTopFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ========================================
   PÁGINA EMPRESA - ESTILOS ESPECÍFICOS
   ======================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a252f 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    animation: fadeInDown 1s ease-out 0.5s both;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: slideInUp 1s ease-out 0.7s both;
}

.page-title {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: slideInDown 1s ease-out 0.9s both;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb-item a {
    color: var(--accent-yellow);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: ">";
    margin: 0 10px;
}

/* Apresentação Institucional */
.institutional-presentation {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    animation: fadeInUp 1s ease-out 1.3s both;
}

.presentation-image {
    position: relative;
    animation: slideInLeft 1s ease-out 1.5s both;
}

.presentation-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.presentation-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.presentation-content {
    padding-left: 40px;
    animation: slideInRight 1s ease-out 1.7s both;
}

.presentation-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out 1.9s both;
}

.presentation-text strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.presentation-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    animation: slideInUp 1s ease-out 2.1s both;
}

.stat-item {
    text-align: center;
    flex: 1;
    animation: fadeInUp 1s ease-out 2.3s both;
}

.stat-item:nth-child(2) {
    animation-delay: 2.5s;
}

.stat-item:nth-child(3) {
    animation-delay: 2.7s;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 10px;
    animation: pulse 2s ease-in-out infinite;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    animation: fadeInUp 1s ease-out 2.9s both;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-orange) 0%, var(--accent-yellow) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    animation: slideInDown 2s ease-out 3.1s both;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 3.3s both;
}

.timeline-item:nth-child(2) {
    animation-delay: 3.5s;
}

.timeline-item:nth-child(3) {
    animation-delay: 3.7s;
}

.timeline-item:nth-child(4) {
    animation-delay: 3.9s;
}

.timeline-item:nth-child(5) {
    animation-delay: 4.1s;
}

.timeline-item:nth-child(6) {
    animation-delay: 4.3s;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    z-index: 2;
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px rgba(243, 156, 18, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.marker-line {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent-orange), transparent);
}

.timeline-item:last-child .marker-line {
    display: none;
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: auto;
    animation: slideInLeft 1s ease-out 3.5s both;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    animation: slideInRight 1s ease-out 3.7s both;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.timeline-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* Missão, Visão e Valores */
.mission-vision-values {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a252f 100%);
    position: relative;
    animation: fadeInUp 1s ease-out 4.5s both;
}

.mv-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 4.7s both;
}

.mv-card:nth-child(2) {
    animation-delay: 4.9s;
}

.mv-card:nth-child(3) {
    animation-delay: 5.1s;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mv-card:hover::before {
    transform: scaleX(1);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: float 4s ease-in-out infinite;
}

.card-icon i {
    font-size: 32px;
    color: var(--white);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.card-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 0;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-muted);
}

.values-list li i {
    color: var(--accent-orange);
    font-size: 14px;
}

/* Galeria de Fotos */
.photo-gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    animation: fadeInUp 1s ease-out 5.3s both;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 5.5s both;
}

.gallery-item:nth-child(2) {
    animation-delay: 5.7s;
}

.gallery-item:nth-child(3) {
    animation-delay: 5.9s;
}

.gallery-item:nth-child(4) {
    animation-delay: 6.1s;
}

.gallery-item:nth-child(5) {
    animation-delay: 6.3s;
}

.gallery-item:nth-child(6) {
    animation-delay: 6.5s;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 37, 47, 0.9) 0%, rgba(243, 156, 18, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overlay-content p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* Responsividade da Página Empresa */
@media (max-width: 991.98px) {
    .page-title {
        font-size: 2.5rem;
    }

    .presentation-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .presentation-stats {
        gap: 20px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-marker {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }

    .mv-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 60px 0 40px;
    }

    .page-title {
        font-size: 2rem;
    }

    .institutional-presentation {
        padding: 60px 0;
    }

    .presentation-text {
        font-size: 16px;
    }

    .presentation-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item {
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
    }

    .timeline-section {
        padding: 60px 0;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        padding: 20px;
    }

    .mission-vision-values {
        padding: 60px 0;
    }

    .mv-card {
        padding: 30px 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon i {
        font-size: 24px;
    }

    .photo-gallery {
        padding: 60px 0;
    }

    .gallery-image img {
        height: 200px;
    }
}

@media (max-width: 575.98px) {
    .page-title {
        font-size: 1.5rem;
    }

    .breadcrumb-item {
        font-size: 14px;
    }

    .presentation-text {
        font-size: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px !important;
        padding: 15px;
    }

    .timeline-title {
        font-size: 18px;
    }

    .timeline-description {
        font-size: 14px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-description {
        font-size: 14px;
    }

    .values-list li {
        font-size: 14px;
    }

    .gallery-image img {
        height: 180px;
    }

    .overlay-content h4 {
        font-size: 16px;
    }

    .overlay-content p {
        font-size: 12px;
    }
}

/* ========================================
   PÁGINA CONTATO - ESTILOS ESPECÍFICOS
   ======================================== */

/* Informações de Contato */
.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    animation: fadeInUp 1s ease-out 1.3s both;
}

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.contact-card:nth-child(2) {
    animation-delay: 1.7s;
}

.contact-card:nth-child(3) {
    animation-delay: 1.9s;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: float 4s ease-in-out infinite;
}

.contact-icon i {
    font-size: 18px;
    color: var(--white);
}

.contact-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.contact-details {
    margin-bottom: 25px;
}

.contact-details p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.contact-details strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.4);
    color: var(--white);
    text-decoration: none;
}

/* Breadcrumb Navigation */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
}

.breadcrumb-nav {
    margin: 0;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: #6c757d;
    font-weight: 400;
}

.breadcrumb-link {
    color: #0066cc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #004499;
    text-decoration: none;
}

.breadcrumb-current {
    color: #6c757d;
    font-weight: 500;
}

.breadcrumb-item.active .breadcrumb-current {
    color: #0066cc;
    font-weight: 600;
}

/* Formulário de Contato */
.contact-form-section {
    padding: 80px 0;
    background: var(--white);
    animation: fadeInUp 1s ease-out 2.1s both;
}

.contact-form-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: slideInUp 1s ease-out 2.3s both;
}

.contact-form {
    animation: fadeInUp 1s ease-out 2.5s both;
}

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

.form-label {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
    display: block;
}

.form-control,
.form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: #6c757d;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.form-check-input {
    margin-top: 4px;
}

.form-check-label {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.privacy-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
}

.privacy-link:hover {
    color: var(--accent-yellow);
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

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

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(243, 156, 18, 0.4);
}

/* Horário de Funcionamento */
.business-hours-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a252f 100%);
    color: var(--white);
    animation: fadeInUp 1s ease-out 2.7s both;
}

.business-hours-container {
    animation: slideInUp 1s ease-out 2.9s both;
}

.hours-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    animation: fadeInUp 1s ease-out 3.1s both;
}

.hours-card:nth-child(2) {
    animation-delay: 3.3s;
}

.hours-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.hours-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: float 4s ease-in-out infinite;
}

.hours-icon i {
    font-size: 28px;
    color: var(--white);
}

.hours-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span:first-child {
    font-weight: 600;
    color: var(--accent-yellow);
}

.hours-list li span:last-child {
    color: rgba(255, 255, 255, 0.9);
}

/* Mapa do Google Maps */
.map-section {
    padding: 80px 0;
    background: var(--white);
    animation: fadeInUp 1s ease-out 3.5s both;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: slideInUp 1s ease-out 3.7s both;
}

.map-container iframe {
    display: block;
    transition: all 0.3s ease;
}

.map-container:hover iframe {
    transform: scale(1.02);
}

/* Redes Sociais */
.social-media-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    animation: fadeInUp 1s ease-out 3.9s both;
}

.social-media-container {
    animation: slideInUp 1s ease-out 4.1s both;
}

.social-media-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-dark);
    display: block;
    height: 100%;
    animation: fadeInUp 1s ease-out 4.3s both;
}

.social-media-card:nth-child(2) {
    animation-delay: 4.5s;
}

.social-media-card:nth-child(3) {
    animation-delay: 4.7s;
}

.social-media-card:nth-child(4) {
    animation-delay: 4.9s;
}

.social-media-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: var(--text-dark);
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.social-media-card.facebook .social-icon {
    background: linear-gradient(135deg, #1877f2, #0d6efd);
}

.social-media-card.instagram .social-icon {
    background: linear-gradient(135deg, #e4405f, #f77737);
}

.social-media-card.linkedin .social-icon {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
}

.social-media-card.youtube .social-icon {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-icon i {
    font-size: 24px;
    color: var(--white);
}

.social-media-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.social-media-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.social-media-card:hover .social-icon {
    transform: scale(1.1);
}

/* Responsividade da Página Contato */
@media (max-width: 991.98px) {
    .contact-form-container {
        padding: 40px 30px;
    }

    .hours-card {
        margin-bottom: 30px;
    }

    .social-media-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .contact-info-section {
        padding: 60px 0;
    }

    .contact-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-icon i {
        font-size: 24px;
    }

    .contact-title {
        font-size: 20px;
    }

    .contact-details p {
        font-size: 14px;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .business-hours-section {
        padding: 60px 0;
    }

    .hours-card {
        padding: 30px 20px;
    }

    .hours-icon {
        width: 50px;
        height: 50px;
    }

    .hours-icon i {
        font-size: 20px;
    }

    .hours-card h3 {
        font-size: 18px;
    }

    .hours-list li {
        font-size: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .map-section {
        padding: 60px 0;
    }

    .social-media-section {
        padding: 60px 0;
    }

    .social-media-card {
        padding: 25px 15px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }

    .social-icon i {
        font-size: 20px;
    }

    .social-media-card h4 {
        font-size: 16px;
    }

    .social-media-card p {
        font-size: 12px;
    }
}

@media (max-width: 575.98px) {
    .contact-card {
        padding: 25px 15px;
    }

    .contact-title {
        font-size: 18px;
    }

    .contact-details p {
        font-size: 13px;
    }

    .contact-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .contact-form-container {
        padding: 25px 15px;
    }

    .form-control,
    .form-select {
        padding: 10px 12px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 12px 30px;
        font-size: 16px;
    }

    .hours-card {
        padding: 25px 15px;
    }

    .hours-card h3 {
        font-size: 16px;
    }

    .hours-list li {
        font-size: 13px;
    }

    .social-media-card {
        padding: 20px 10px;
    }

    .social-media-card h4 {
        font-size: 14px;
    }

    .social-media-card p {
        font-size: 11px;
    }
}

/* ========================================
   PÁGINA RASTREADOR PARA CARRO - ESTILOS ESPECÍFICOS
   ======================================== */

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a252f 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    animation: fadeInDown 1s ease-out 0.5s both;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: slideInLeft 1s ease-out 0.7s both;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: slideInDown 1s ease-out 0.9s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.hero-features {
    margin-bottom: 40px;
    animation: slideInUp 1s ease-out 1.3s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    animation: fadeInLeft 1s ease-out 1.5s both;
}

.feature-item:nth-child(2) {
    animation-delay: 1.7s;
}

.feature-item:nth-child(3) {
    animation-delay: 1.9s;
}

.feature-item i {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 2.1s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    color: var(--white);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button.large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

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

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.cta-button.primary:hover {
    color: var(--white);
    box-shadow: 0 15px 35px rgba(243, 156, 18, 0.4);
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.hero-image {
    position: relative;
    z-index: 2;
    animation: slideInRight 1s ease-out 1.1s both;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Benefícios Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    animation: fadeInUp 1s ease-out 2.3s both;
}

.benefit-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 2.5s both;
}

.benefit-card:nth-child(2) {
    animation-delay: 2.7s;
}

.benefit-card:nth-child(3) {
    animation-delay: 2.9s;
}

.benefit-card:nth-child(4) {
    animation-delay: 3.1s;
}

.benefit-card:nth-child(5) {
    animation-delay: 3.3s;
}

.benefit-card:nth-child(6) {
    animation-delay: 3.5s;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: float 4s ease-in-out infinite;
}

.benefit-icon i {
    font-size: 32px;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* Prova Social Section */
.social-proof-section {
    padding: 100px 0;
    background: var(--white);
    animation: fadeInUp 1s ease-out 3.7s both;
}

.testimonial-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    animation: fadeInUp 1s ease-out 3.9s both;
}

.testimonial-card:nth-child(2) {
    animation-delay: 4.1s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 4.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 5px 0;
}

.author-info span {
    font-size: 14px;
    color: var(--text-muted);
}

.rating {
    display: flex;
    gap: 5px;
}

.rating i {
    color: var(--accent-yellow);
    font-size: 16px;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 4.5s both;
}

.stat-item {
    text-align: center;
    animation: fadeInUp 1s ease-out 4.7s both;
}

.stat-item:nth-child(2) {
    animation-delay: 4.9s;
}

.stat-item:nth-child(3) {
    animation-delay: 5.1s;
}

.stat-item:nth-child(4) {
    animation-delay: 5.3s;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 10px;
    animation: pulse 2s ease-in-out infinite;
}

.stat-label {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Objeções Section */
.objections-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a252f 100%);
    color: var(--white);
    animation: fadeInUp 1s ease-out 5.5s both;
}

.objection-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    animation: fadeInUp 1s ease-out 5.7s both;
}

.objection-card:nth-child(2) {
    animation-delay: 5.9s;
}

.objection-card:nth-child(3) {
    animation-delay: 6.1s;
}

.objection-card:nth-child(4) {
    animation-delay: 6.3s;
}

.objection-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.objection-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    animation: float 4s ease-in-out infinite;
}

.objection-icon i {
    font-size: 24px;
    color: var(--white);
}

.objection-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.objection-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--white);
    animation: fadeInUp 1s ease-out 6.5s both;
}

.faq-container {
    animation: slideInUp 1s ease-out 6.7s both;
}

.faq-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 6.9s both;
}

.faq-item:nth-child(2) {
    animation-delay: 7.1s;
}

.faq-item:nth-child(3) {
    animation-delay: 7.3s;
}

.faq-item:nth-child(4) {
    animation-delay: 7.5s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    color: var(--white);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.faq-question:hover h3 {
    color: var(--white);
}

.faq-question i {
    font-size: 16px;
    color: var(--accent-orange);
    transition: all 0.3s ease;
}

.faq-question:hover i {
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px 25px;
    background: var(--white);
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* CTA Final Section */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a252f 100%);
    color: var(--white);
    text-align: center;
    animation: fadeInUp 1s ease-out 7.7s both;
}

.final-cta-content {
    animation: slideInUp 1s ease-out 7.9s both;
}

.final-cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.final-cta-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.urgency-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-yellow);
    animation: pulse 2s ease-in-out infinite;
}

.urgency-message i {
    font-size: 1.2rem;
}

/* Responsividade da Página Rastreador para Carro */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .stats-container {
        gap: 40px;
    }

    .final-cta-content h2 {
        font-size: 2.5rem;
    }
}

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

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .feature-item {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .cta-button.large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .benefits-section {
        padding: 60px 0;
    }

    .benefit-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
    }

    .benefit-icon i {
        font-size: 24px;
    }

    .benefit-card h3 {
        font-size: 18px;
    }

    .social-proof-section {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 25px 20px;
        margin-bottom: 30px;
    }

    .stats-container {
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 14px;
    }

    .objections-section {
        padding: 60px 0;
    }

    .objection-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .objection-icon {
        width: 50px;
        height: 50px;
    }

    .objection-icon i {
        font-size: 20px;
    }

    .objection-card h3 {
        font-size: 18px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-question {
        padding: 20px 25px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 25px 20px;
    }

    .final-cta-section {
        padding: 60px 0;
    }

    .final-cta-content h2 {
        font-size: 2rem;
    }

    .final-cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .feature-item {
        font-size: 0.9rem;
        gap: 10px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .cta-button.large {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .benefit-card {
        padding: 25px 15px;
    }

    .benefit-card h3 {
        font-size: 16px;
    }

    .benefit-card p {
        font-size: 14px;
    }

    .testimonial-card {
        padding: 20px 15px;
    }

    .testimonial-content p {
        font-size: 14px;
    }

    .author-info h4 {
        font-size: 16px;
    }

    .stats-container {
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 12px;
    }

    .objection-card {
        padding: 25px 15px;
    }

    .objection-card h3 {
        font-size: 16px;
    }

    .objection-card p {
        font-size: 14px;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question h3 {
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 20px 15px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .final-cta-content h2 {
        font-size: 1.5rem;
    }

    .final-cta-content p {
        font-size: 1rem;
    }

    .urgency-message {
        font-size: 1rem;
    }
}

/* ========================================
   PÁGINA ASSISTÊNCIA 24H
   ======================================== */

/* Hero Section da Assistência */
.assistance-hero-section {
    background: linear-gradient(135deg, var(--primary-blue), #1a4a6b);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.assistance-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.assistance-hero-section .hero-content {
    position: relative;
    z-index: 2;
}

.assistance-hero-section .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 1s ease-out 0.5s both;
}

.assistance-hero-section .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: slideInLeft 1s ease-out 0.7s both;
}

.assistance-hero-section .hero-features {
    margin-bottom: 40px;
    animation: slideInLeft 1s ease-out 0.9s both;
}

.assistance-hero-section .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.assistance-hero-section .feature-item i {
    color: var(--accent-yellow);
    font-size: 1.3rem;
    animation: pulse 2s infinite;
}

.assistance-hero-section .hero-cta {
    animation: slideInLeft 1s ease-out 1.1s both;
}

.assistance-hero-section .hero-image {
    position: relative;
    z-index: 2;
    animation: slideInRight 1s ease-out 0.8s both;
}

.assistance-hero-section .hero-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.assistance-hero-section .hero-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Como Funciona Section */
.how-it-works-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-yellow));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

.step-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: bounce 2s infinite;
}

.step-icon i {
    font-size: 2rem;
    color: var(--white);
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Situações de Emergência Section */
.emergency-situations-section {
    padding: 80px 0;
    background: var(--white);
}

.situation-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.situation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.situation-card:hover::before {
    opacity: 0.1;
}

.situation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-orange);
}

.situation-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), #1a4a6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.situation-card:hover .situation-icon {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    transform: scale(1.1);
}

.situation-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.situation-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.situation-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Canais de Atendimento Section */
.contact-channels-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.channel-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.channel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.channel-card:hover::before {
    opacity: 0.1;
}

.channel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.channel-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.channel-card.primary .channel-icon {
    background: linear-gradient(135deg, var(--primary-blue), #1a4a6b);
}

.channel-card.whatsapp .channel-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.channel-card.app .channel-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.channel-card.web .channel-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.channel-card:hover .channel-icon {
    transform: scale(1.1);
}

.channel-icon i {
    font-size: 2rem;
    color: var(--white);
}

.channel-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.channel-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.channel-card p {
    color: var(--dark-gray);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.channel-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.channel-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
    color: var(--white);
    text-decoration: none;
}

/* Requisitos e Cobertura Section */
.requirements-section {
    padding: 80px 0;
    background: var(--white);
}

.requirements-content h2,
.coverage-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
}

.requirements-content h2::after,
.coverage-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-yellow));
    border-radius: 2px;
}

.requirements-content p,
.coverage-content p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.requirements-list,
.coverage-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.requirement-item,
.coverage-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.requirement-item:hover,
.coverage-item:hover {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    transform: translateX(10px);
}

.requirement-item i,
.coverage-item i {
    font-size: 1.5rem;
    color: var(--accent-orange);
    margin-top: 5px;
    transition: all 0.3s ease;
}

.requirement-item:hover i,
.coverage-item:hover i {
    color: var(--white);
}

.requirement-item h4,
.coverage-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.requirement-item:hover h4,
.coverage-item:hover h4 {
    color: var(--white);
}

.requirement-item p,
.coverage-item p {
    color: var(--dark-gray);
    margin: 0;
    transition: all 0.3s ease;
}

.requirement-item:hover p,
.coverage-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
    transition: all 0.3s ease;
}

.faq-question:hover h3 {
    color: var(--white);
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--accent-orange);
    transition: all 0.3s ease;
}

.faq-question:hover i {
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px 25px;
    background: var(--white);
}

.faq-answer p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue), #1a4a6b);
    color: var(--white);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.urgency-message {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.urgency-message i {
    color: var(--accent-yellow);
    font-size: 1.3rem;
    animation: pulse 2s infinite;
}

/* Responsividade para Assistência 24h */
@media (max-width: 991.98px) {
    .assistance-hero-section .hero-title {
        font-size: 2.5rem;
    }

    .assistance-hero-section .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .requirements-content h2,
    .coverage-content h2 {
        font-size: 1.8rem;
    }

    .final-cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .assistance-hero-section {
        padding: 60px 0;
    }

    .assistance-hero-section .hero-title {
        font-size: 2rem;
    }

    .assistance-hero-section .hero-subtitle {
        font-size: 1rem;
    }

    .assistance-hero-section .feature-item {
        font-size: 1rem;
    }

    .how-it-works-section,
    .emergency-situations-section,
    .contact-channels-section,
    .requirements-section,
    .faq-section,
    .final-cta-section {
        padding: 60px 0;
    }

    .step-card,
    .situation-card,
    .channel-card {
        padding: 30px 20px;
    }

    .step-icon,
    .situation-icon,
    .channel-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon i,
    .situation-icon i,
    .channel-icon i {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .requirements-content h2,
    .coverage-content h2 {
        font-size: 1.6rem;
    }

    .requirement-item,
    .coverage-item {
        padding: 20px;
    }

    .faq-question {
        padding: 20px 25px;
    }

    .faq-answer {
        padding: 0 25px 20px;
    }

    .final-cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .urgency-message {
        font-size: 1rem;
        padding: 15px;
    }
}

@media (max-width: 575.98px) {
    .assistance-hero-section .hero-title {
        font-size: 1.8rem;
    }

    .assistance-hero-section .hero-subtitle {
        font-size: 0.9rem;
    }

    .assistance-hero-section .feature-item {
        font-size: 0.9rem;
        gap: 10px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .step-card h3,
    .situation-card h3,
    .channel-card h3 {
        font-size: 1.2rem;
    }

    .step-card p,
    .situation-card p,
    .channel-card p {
        font-size: 0.9rem;
    }

    .requirements-content h2,
    .coverage-content h2 {
        font-size: 1.4rem;
    }

    .requirement-item h4,
    .coverage-item h4 {
        font-size: 1.1rem;
    }

    .requirement-item p,
    .coverage-item p {
        font-size: 0.9rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .final-cta-content h2 {
        font-size: 1.5rem;
    }

    .final-cta-content p {
        font-size: 1rem;
    }

    .urgency-message {
        font-size: 0.9rem;
    }
}