/* 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: 10px;
    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);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

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

/* Estados do Accordion */
.faq-item.faq-open .faq-question {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    color: var(--white);
}

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

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

.faq-item.faq-closed .faq-answer {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.faq-item.faq-open .faq-answer {
    max-height: 500px;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* 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;
}

/* Interações do FAQ (Assistência 24h) */
.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

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

.faq-item.faq-open .faq-question h3,
.faq-item.faq-open .faq-question i {
    color: var(--white);
}

.faq-item.faq-open .faq-answer {
    max-height: 500px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.faq-item .faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.faq-open .faq-question i {
    transform: rotate(180deg);
}

/* 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;
    }
}

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

/* Inner Header */
.inner-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a252f 100%);
    padding: 40px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.inner-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;
}

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

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    animation: slideInRight 1s ease-out 0.7s 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;
}

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

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

.blog-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 1.4s both;
}

.blog-title {
    color: var(--primary-blue);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: slideInUp 1s ease-out 1.6s both;
}

.blog-description {
    color: var(--dark-gray);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeIn 1s ease-out 1.8s both;
}

/* Blog Cards */
.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;
    height: 100%;
    border: 2px solid transparent;
    animation: fadeInUp 1s ease-out 2s both;
}

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

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

.blog-card:nth-child(4) {
    animation-delay: 2.6s;
}

.blog-card:nth-child(5) {
    animation-delay: 2.8s;
}

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

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

/* Blog Image */
.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 */
.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 Overlay */
.blog-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.4s ease;
}

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

.blog-overlay .blog-read-more {
    color: var(--white);
    font-size: 24px;
    transition: all 0.3s ease;
}

.blog-overlay .blog-read-more:hover {
    transform: scale(1.2);
    color: var(--accent-yellow);
}

/* Blog Content */
.blog-content {
    padding: 30px;
}

/* Blog Meta */
.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 */
.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 */
.blog-excerpt {
    color: var(--dark-gray);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Blog Read More */
.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);
}

/* No Posts Found */
.no-posts-found {
    padding: 80px 0;
}

.no-posts-icon {
    font-size: 4rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-posts-title {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.no-posts-description {
    color: var(--dark-gray);
    font-size: 18px;
    max-width: 400px;
    margin: 0 auto;
}

/* Blog Pagination */
.blog-pagination {
    animation: fadeInUp 1s ease-out 3.2s both;
}

.pagination {
    gap: 10px;
}

.page-link {
    border: none;
    color: var(--primary-blue);
    background: var(--white);
    border-radius: 10px;
    padding: 12px 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-link:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

.page-item.disabled .page-link {
    background: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

/* Blog CTA */
.blog-cta {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    border-radius: 20px;
    animation: fadeInUp 1s ease-out 3.4s both;
}

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

.cta-description {
    color: var(--dark-gray);
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.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);
}

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

.newsletter-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;
}

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

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.newsletter-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-features .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

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

.newsletter-form-container {
    position: relative;
    z-index: 2;
    animation: slideInRight 1s ease-out 4s both;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 16px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.newsletter-form .form-control:focus {
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.3);
    outline: none;
}

.newsletter-form .form-control::placeholder {
    color: var(--dark-gray);
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.4);
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
}

.newsletter-privacy {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.newsletter-privacy i {
    color: var(--accent-yellow);
}

/* 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);
    }
}

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

    .blog-title {
        font-size: 2.5rem;
    }

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

    .newsletter-form {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .inner-header {
        padding: 30px 0;
    }

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

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

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

    .blog-description {
        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;
    }

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

    .cta-description {
        font-size: 16px;
    }

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

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

    .newsletter-description {
        font-size: 16px;
    }

    .newsletter-form {
        padding: 25px;
    }

    .newsletter-features .feature-item {
        font-size: 14px;
    }
}

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

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

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

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

    .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;
    }

    .cta-title {
        font-size: 1.5rem;
    }

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

    .newsletter-title {
        font-size: 1.5rem;
    }

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

    .newsletter-form {
        padding: 20px;
    }

    .newsletter-form .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }

    .newsletter-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .newsletter-privacy {
        font-size: 12px;
    }
}

/* ========================================
   PÁGINA BLOG INTERNO - ESTILOS ESPECÍFICOS
   ======================================== */

/* Blog Post Section */
.blog-post-section {
    padding: 80px 0;
    background: var(--white);
}

/* ========================================
   PLANOS - INDEX
   ======================================== */
.plans-section {
    padding: 80px 0;
    background: var(--white);
}

.plans-title {
    color: var(--primary-blue);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.plans-subtitle {
    color: var(--dark-gray);
    font-size: 18px;
    margin: 0 0 40px 0;
}

.plans-grid .plan-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.plan-card.featured {
    border: 2px solid var(--accent-orange);
}

.plan-header {
    margin-bottom: 16px;
}

.plan-name {
    color: var(--primary-blue);
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 8px 0;
}

.plan-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-orange);
}

.plan-price span { font-size: 18px; margin-right: 6px; }
.plan-price small { font-size: 14px; color: var(--dark-gray); font-weight: 600; }

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-gray);
    padding: 8px 0;
    border-bottom: 1px dashed #edf2f7;
}

.plan-features li i { color: var(--accent-orange); }
.plan-features li:last-child { border-bottom: none; }

.plan-cta {
    margin-top: auto;
}

.btn-whatsapp-plan {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    text-decoration: none;
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: .3px;
    box-shadow: 0 8px 25px rgba(37,211,102,.35);
    transition: transform .3s ease, box-shadow .3s ease;
}

.btn-whatsapp-plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(37,211,102,.45);
    color: #fff;
}

@media (max-width: 991.98px){
    .plans-title{ font-size: 32px; }
}

.blog-post {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

/* Post Header */
.post-header {
    padding: 40px 40px 30px;
    border-bottom: 1px solid #e9ecef;
}

.post-category {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--accent-orange), #E67E22);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.post-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.post-category i {
    margin-right: 8px;
    font-size: 12px;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 25px;
    word-wrap: break-word;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.meta-item {
    display: flex;
    align-items: center;
    color: var(--dark-gray);
    font-size: 14px;
    font-weight: 500;
}

.meta-item i {
    margin-right: 8px;
    color: var(--accent-orange);
    font-size: 16px;
}

/* Post Image */
.post-image {
    position: relative;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

/* Post Content */
.post-content {
    padding: 40px;
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    color: var(--primary-blue);
    margin: 30px 0 15px;
    font-weight: 600;
}

.post-content h1 { font-size: 2rem; }
.post-content h2 { font-size: 1.75rem; }
.post-content h3 { font-size: 1.5rem; }
.post-content h4 { font-size: 1.25rem; }
.post-content h5 { font-size: 1.1rem; }
.post-content h6 { font-size: 1rem; }

.post-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.post-content ul,
.post-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-content blockquote {
    background: linear-gradient(135deg, var(--primary-blue), #2c3e50);
    color: var(--white);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 5px solid var(--accent-orange);
    font-style: italic;
    position: relative;
}

.post-content blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-orange);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.post-content a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.post-content a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Post Footer */
.post-footer {
    padding: 30px 40px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.post-tags,
.post-share {
    margin-bottom: 25px;
}

.post-tags:last-child,
.post-share:last-child {
    margin-bottom: 0;
}

.tags-title,
.share-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.tags-title i,
.share-title i {
    margin-right: 10px;
    color: var(--accent-orange);
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    background: var(--white);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: var(--accent-orange);
    color: var(--white);
    border-color: var(--accent-orange);
    transform: translateY(-2px);
    text-decoration: none;
}

.share-buttons {
    display: flex;
    gap: 15px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

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

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Author Box */
.author-box {
    background: linear-gradient(135deg, var(--primary-blue), #2c3e50);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--accent-orange);
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.author-bio {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: translateY(-2px);
}

/* Related Posts */
.related-posts {
    margin-bottom: 40px;
}

.related-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.related-title i {
    margin-right: 15px;
    color: var(--accent-orange);
    font-size: 24px;
}

.related-post-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.related-post-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.related-post-content {
    padding: 20px;
}

.related-post-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.related-post-title a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-title a:hover {
    color: var(--accent-orange);
}

.related-post-meta {
    font-size: 14px;
    color: var(--dark-gray);
}

.related-post-date {
    display: flex;
    align-items: center;
}

.related-post-date i {
    margin-right: 5px;
    color: var(--accent-orange);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.widget-title i {
    margin-right: 10px;
    color: var(--accent-orange);
    font-size: 18px;
}

/* Search Widget */
.search-form .input-group {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.search-form .form-control {
    border: none;
    padding: 12px 20px;
    font-size: 14px;
}

.search-form .form-control:focus {
    box-shadow: none;
    border-color: var(--accent-orange);
}

.search-form .btn {
    border: none;
    padding: 12px 20px;
    background: var(--accent-orange);
    color: var(--white);
    transition: all 0.3s ease;
}

.search-form .btn:hover {
    background: var(--primary-blue);
    transform: translateX(2px);
}

/* Recent Posts Widget */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content {
    flex: 1;
}

.recent-post-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.recent-post-title a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-title a:hover {
    color: var(--accent-orange);
}

.recent-post-date {
    font-size: 12px;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
}

.recent-post-date i {
    margin-right: 5px;
    color: var(--accent-orange);
    font-size: 12px;
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    margin-bottom: 12px;
}

.category-item:last-child {
    margin-bottom: 0;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #f8f9fa;
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-link:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: translateX(5px);
    text-decoration: none;
}

.category-link i {
    color: var(--accent-orange);
    font-size: 12px;
    transition: color 0.3s ease;
}

.category-link:hover i {
    color: var(--white);
}

.category-count {
    background: rgba(255, 255, 255, 0.2);
    color: var(--dark-gray);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.category-link:hover .category-count {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

/* Newsletter Widget */
.newsletter-description {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form .form-group {
    margin-bottom: 15px;
}

.newsletter-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-form .form-control:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.newsletter-form .btn {
    width: 100%;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, var(--primary-blue), #2c3e50);
    color: var(--white);
    text-align: center;
}

.cta-widget .widget-title {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.cta-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.cta-description {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-widget .btn {
    width: 100%;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 600;
    background: var(--accent-orange);
    border: none;
    transition: all 0.3s ease;
}

.cta-widget .btn:hover {
    background: #E67E22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

/* Blog CTA Section */
.blog-cta-section {
    background: linear-gradient(135deg, var(--primary-blue), #2c3e50);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.blog-cta-section .cta-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.blog-cta-section .cta-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.blog-cta-section .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    background: var(--accent-orange);
    border: none;
    transition: all 0.3s ease;
}

.blog-cta-section .btn:hover {
    background: #E67E22;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

/* Responsividade para Blog Interno */
@media (max-width: 991.98px) {
    .blog-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .post-header {
        padding: 30px 25px 20px;
    }
    
    .post-title {
        font-size: 2rem;
    }
    
    .post-meta {
        gap: 15px;
    }
    
    .post-content {
        padding: 30px 25px;
    }
    
    .post-footer {
        padding: 25px;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .author-avatar {
        margin-bottom: 20px;
    }
    
    .share-buttons {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .blog-post-section {
        padding: 60px 0;
    }
    
    .post-header {
        padding: 25px 20px 15px;
    }
    
    .post-title {
        font-size: 1.8rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .post-content {
        padding: 25px 20px;
        font-size: 15px;
    }
    
    .post-content h1 { font-size: 1.6rem; }
    .post-content h2 { font-size: 1.4rem; }
    .post-content h3 { font-size: 1.2rem; }
    
    .post-footer {
        padding: 20px;
    }
    
    .tags-list {
        gap: 8px;
    }
    
    .tag-item {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .share-buttons {
        gap: 10px;
    }
    
    .share-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .author-box {
        padding: 20px;
    }
    
    .author-avatar img {
        width: 60px;
        height: 60px;
    }
    
    .author-name {
        font-size: 1.3rem;
    }
    
    .author-bio {
        font-size: 15px;
    }
    
    .related-title {
        font-size: 1.5rem;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .widget-title {
        font-size: 1.2rem;
    }
    
    .blog-cta-section {
        padding: 40px 0;
    }
    
    .blog-cta-section .cta-title {
        font-size: 1.6rem;
    }
    
    .blog-cta-section .cta-description {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .post-title {
        font-size: 1.6rem;
    }
    
    .post-content {
        padding: 20px 15px;
        font-size: 14px;
    }
    
    .post-content h1 { font-size: 1.4rem; }
    .post-content h2 { font-size: 1.3rem; }
    .post-content h3 { font-size: 1.1rem; }
    
    .post-footer {
        padding: 15px;
    }
    
    .tags-list {
        flex-direction: column;
        gap: 8px;
    }
    
    .tag-item {
        text-align: center;
    }
    
    .share-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .author-box {
        padding: 15px;
    }
    
    .author-avatar img {
        width: 50px;
        height: 50px;
    }
    
    .author-name {
        font-size: 1.2rem;
    }
    
    .author-bio {
        font-size: 14px;
    }
    
    .related-post-content {
        padding: 15px;
    }
    
    .related-post-title {
        font-size: 14px;
    }
    
    .sidebar-widget {
        padding: 15px;
    }
    
    .widget-title {
        font-size: 1.1rem;
    }
    
    .recent-post-item {
        gap: 10px;
    }
    
    .recent-post-image {
        width: 50px;
        height: 50px;
    }
    
    .recent-post-title {
        font-size: 13px;
    }
    
    .category-link {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .blog-cta-section .cta-title {
        font-size: 1.4rem;
    }
    
    .blog-cta-section .cta-description {
        font-size: 15px;
    }
    
    .blog-cta-section .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* ========================================
   POLÍTICA DE PRIVACIDADE E TERMOS DE USO
   ======================================== */

.privacy-policy,
.terms-of-use {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Header da Política e Termos */
.policy-header,
.terms-header {
    background: linear-gradient(135deg, var(--primary-blue), #2c5aa0);
    color: var(--white);
    padding: 40px 30px;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0 !important;
}

.policy-title,
.terms-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.policy-subtitle,
.terms-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 15px;
    opacity: 0.9;
}

.policy-date,
.terms-date {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Seções da Política e Termos */
.policy-section,
.terms-section {
    padding: 30px;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.policy-section:last-child,
.terms-section:last-child {
    border-bottom: none;
}

.policy-section:hover,
.terms-section:hover {
    background-color: #f8f9fa;
}

.policy-section h2,
.terms-section h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--accent-orange);
    position: relative;
}

.policy-section h2::before,
.terms-section h2::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-yellow);
}

.policy-section h3,
.terms-section h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
    padding-left: 15px;
    border-left: 4px solid var(--accent-orange);
}

.policy-section p,
.terms-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #495057;
}

.policy-section ul,
.terms-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-section li,
.terms-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #495057;
}

.policy-section strong,
.terms-section strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Informações da Empresa */
.company-info {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid var(--accent-orange);
    margin: 20px 0;
}

.company-info p {
    margin-bottom: 8px;
    font-size: 1rem;
}

/* Grid de Direitos */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.right-item {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    text-align: center;
}

.right-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-orange);
}

.right-item h4 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.right-item h4 i {
    color: var(--accent-orange);
    font-size: 1.4rem;
}

.right-item p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Métodos de Contato */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.contact-item {
    background: linear-gradient(135deg, var(--primary-blue), #2c5aa0);
    color: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(25, 52, 71, 0.3);
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-item h4 i {
    color: var(--accent-yellow);
    font-size: 1.3rem;
}

.contact-item p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

/* Footer da Política e Termos */
.policy-footer,
.terms-footer {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 30px;
    border-radius: 0 0 12px 12px;
    border-top: 3px solid var(--accent-orange);
}

.policy-version,
.terms-version {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.policy-effective,
.terms-effective {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
}

/* Links na Política e Termos */
.policy-section a,
.terms-section a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.policy-section a:hover,
.terms-section a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Responsividade para Política de Privacidade e Termos de Uso */
@media (max-width: 768px) {
    .privacy-policy,
    .terms-of-use {
        padding: 20px 0;
        margin: 0 15px;
    }
    
    .policy-header,
    .terms-header {
        padding: 30px 20px;
    }
    
    .policy-title,
    .terms-title {
        font-size: 2rem;
    }
    
    .policy-subtitle,
    .terms-subtitle {
        font-size: 1.1rem;
    }
    
    .policy-section,
    .terms-section {
        padding: 20px;
    }
    
    .policy-section h2,
    .terms-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3,
    .terms-section h3 {
        font-size: 1.2rem;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .company-info {
        padding: 20px;
    }
    
    .right-item,
    .contact-item {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .policy-header,
    .terms-header {
        padding: 25px 15px;
    }
    
    .policy-title,
    .terms-title {
        font-size: 1.8rem;
    }
    
    .policy-section,
    .terms-section {
        padding: 15px;
    }
    
    .policy-section h2,
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .policy-section h3,
    .terms-section h3 {
        font-size: 1.1rem;
    }
    
    .policy-section p,
    .policy-section li,
    .terms-section p,
    .terms-section li {
        font-size: 0.95rem;
    }
    
    .right-item h4,
    .contact-item h4 {
        font-size: 1rem;
    }
    
    .right-item p,
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .policy-footer,
    .terms-footer {
        padding: 20px 15px;
    }
    
    .policy-version,
    .policy-effective,
    .terms-version,
    .terms-effective {
        font-size: 0.9rem;
    }
}

/* Animações para Política de Privacidade e Termos de Uso */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.policy-section,
.terms-section {
    animation: fadeInUp 0.6s ease-out;
}

.policy-section:nth-child(2),
.terms-section:nth-child(2) { animation-delay: 0.1s; }
.policy-section:nth-child(3),
.terms-section:nth-child(3) { animation-delay: 0.2s; }
.policy-section:nth-child(4),
.terms-section:nth-child(4) { animation-delay: 0.3s; }
.policy-section:nth-child(5),
.terms-section:nth-child(5) { animation-delay: 0.4s; }
.policy-section:nth-child(6),
.terms-section:nth-child(6) { animation-delay: 0.5s; }
.policy-section:nth-child(7),
.terms-section:nth-child(7) { animation-delay: 0.6s; }
.policy-section:nth-child(8),
.terms-section:nth-child(8) { animation-delay: 0.7s; }
.policy-section:nth-child(9),
.terms-section:nth-child(9) { animation-delay: 0.8s; }
.policy-section:nth-child(10),
.terms-section:nth-child(10) { animation-delay: 0.9s; }
.policy-section:nth-child(11),
.terms-section:nth-child(11) { animation-delay: 1.0s; }
.policy-section:nth-child(12),
.terms-section:nth-child(12) { animation-delay: 1.1s; }
.policy-section:nth-child(13),
.terms-section:nth-child(13) { animation-delay: 1.2s; }
.policy-section:nth-child(14),
.terms-section:nth-child(14) { animation-delay: 1.3s; }
.policy-section:nth-child(15),
.terms-section:nth-child(15) { animation-delay: 1.4s; }
.policy-section:nth-child(16),
.terms-section:nth-child(16) { animation-delay: 1.5s; }
.policy-section:nth-child(17),
.terms-section:nth-child(17) { animation-delay: 1.6s; }
.policy-section:nth-child(18),
.terms-section:nth-child(18) { animation-delay: 1.7s; }

/* Melhorias de acessibilidade */
.policy-section:focus-within,
.terms-section:focus-within {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
}

.right-item:focus-within,
.contact-item:focus-within {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
}

/* Print styles para Política de Privacidade e Termos de Uso */
@media print {
    .privacy-policy,
    .terms-of-use {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .policy-header,
    .terms-header {
        background: #f8f9fa !important;
        color: #000 !important;
        border: 1px solid #ccc;
    }
    
    .right-item,
    .contact-item {
        border: 1px solid #ccc;
        background: #fff !important;
        color: #000 !important;
    }
    
    .policy-section:hover,
    .terms-section:hover {
        background: #fff !important;
    }
}

/* === form-home === */
.form-home {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('../images/background-form-home.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
}

.form-home-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

.form-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 3;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.form-subtitle {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.form-home-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.form-input {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-input:focus {
    outline: none;
    border-color: #007bff;
    background: rgba(255, 255, 255, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.form-input::placeholder {
    color: #666;
    opacity: 0.8;
}

.form-submit-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    margin-top: 10px;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
}

.form-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.4);
}

.form-image {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.pointing-man {
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    object-fit: contain;
}

/* Responsividade */
@media (max-width: 1199px) {
    .form-home-content {
        max-width: 1000px;
    }
    
    .pointing-man {
        max-width: 350px;
    }
    
    .form-image {
        right: -60px;
    }
    
    .form-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .form-home-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .form-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        order: -1;
    }
    
    .pointing-man {
        max-width: 280px;
    }
    
    .form-card {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .form-home {
        padding: 60px 0;
        min-height: auto;
    }
    
    .form-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .pointing-man {
        max-width: 200px;
    }
    
    .form-input {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .form-submit-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .form-card {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .pointing-man {
        max-width: 150px;
    }
    
    .form-home-form {
        gap: 15px;
    }
    
    .form-input {
        padding: 10px 12px;
    }
}