/*--------------------------------------------------------------
# MAIN.CSS - PREV INCÊNDIOS - MODELO TIKITO TATTOO
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Bloco 1 - VARIÁVEIS GLOBAIS (Cores Vermelhas)
--------------------------------------------------------------*/
:root {
    --primary-red: #DC2626;
    --dark-red: #B91C1C;
    --light-red: #EF4444;
    --deep-black: #0A0A0A;
    --charcoal: #1C1C1C;
    --soft-white: #F8F8F8;
    --pure-white: #FFFFFF;
    --gray-medium: #999999;
    --border-red: rgba(220, 38, 38, 0.2);
    --muted-red: rgba(220, 38, 38, 0.1);
    --shadow-red: rgba(220, 38, 38, 0.3);
    --gradient-red: linear-gradient(135deg, var(--primary-red) 0%, var(--light-red) 50%, var(--primary-red) 100%);
    --gradient-dark: linear-gradient(135deg, var(--deep-black) 0%, var(--charcoal) 100%);
    --gradient-card: linear-gradient(135deg, var(--charcoal) 0%, var(--deep-black) 100%);
}

/*--------------------------------------------------------------
# Bloco 2 - RESET E BODY
--------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--gradient-dark);
    color: var(--soft-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Bloco 3 - HEADER
--------------------------------------------------------------*/
.header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 20px 0;
    border-bottom: 2px solid var(--primary-red);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1000;
}

.logo-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.main-logo {
    max-width: 180px;
    height: auto;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.2rem;
    background: var(--gradient-red);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    margin: 0;
}

.brand-subtitle {
    font-size: 0.9rem;
    color: var(--soft-white);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 5px;
    white-space: nowrap; /* MANTER NA MESMA LINHA */
}

.header-decorative {
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    margin: 25px 0;
}

/*--------------------------------------------------------------
# Bloco 4 - USER DROPDOWN DESKTOP
--------------------------------------------------------------*/
.user-area {
    position: relative;
    z-index: 1001;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.login-buttons {
    display: flex;
    gap: 10px;
}

.user-dropdown {
    position: relative;
}

.user-dropdown-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(220, 38, 38, 0.1));
    border: 2px solid rgba(220, 38, 38, 0.4);
    border-radius: 50px;
    color: var(--soft-white);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.user-dropdown-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.3), transparent);
    transition: left 0.6s ease;
}

.user-dropdown-btn:hover::before {
    left: 100%;
}

.user-dropdown-btn:hover {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.25), rgba(220, 38, 38, 0.15));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.user-dropdown-btn i:first-child {
    font-size: 1.3rem;
    color: var(--primary-red);
    filter: drop-shadow(0 0 8px rgba(220, 38, 38, 0.5));
}

.user-dropdown-btn i:last-child {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: var(--primary-red);
}

.user-dropdown.active .user-dropdown-btn i:last-child {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 2px solid rgba(220, 38, 38, 0.4);
    border-radius: 20px;
    padding: 8px;
    min-width: 280px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(220, 38, 38, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    backdrop-filter: blur(20px);
}

.user-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 30px;
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-top: 2px solid rgba(220, 38, 38, 0.4);
    border-left: 2px solid rgba(220, 38, 38, 0.4);
    transform: rotate(45deg);
}

.user-dropdown.active .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-header {
    padding: 16px 18px;
    background: rgba(220, 38, 38, 0.08);
    border-radius: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(220, 38, 38, 0.15);
}

.dropdown-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #000;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.dropdown-user-info {
    flex: 1;
    min-width: 0;
}

.dropdown-user-name {
    font-weight: 700;
    color: var(--soft-white);
    font-size: 1rem;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-user-email {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-item {
    padding: 14px 18px;
    color: var(--soft-white);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 12px;
    margin: 2px 0;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-red), var(--light-red));
    transform: translateX(-4px);
    transition: transform 0.3s ease;
}

.dropdown-item:hover::before {
    transform: translateX(0);
}

.dropdown-item:hover {
    background: rgba(220, 38, 38, 0.12);
    color: var(--primary-red);
    padding-left: 24px;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

.dropdown-item:hover i {
    transform: scale(1.2);
}

.dropdown-item.text-danger {
    color: #ff6b6b;
}

.dropdown-item.text-danger i {
    color: #ff6b6b;
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.3), transparent);
    margin: 8px 12px;
}

/*--------------------------------------------------------------
# Bloco 5 - BOTÕES GERAIS
--------------------------------------------------------------*/
.btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border: none;
    color: var(--pure-white);
    box-shadow: 0 4px 12px var(--shadow-red);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-red);
    color: var(--pure-white);
}

.btn-outline-red {
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    padding: 6px 12px;
    font-size: 0.8rem;
}

.btn-outline-red:hover {
    background: var(--primary-red);
    color: var(--pure-white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.75rem;
}

/*--------------------------------------------------------------
# Bloco 6 - CAROUSEL
--------------------------------------------------------------*/
.carousel-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
}

.carousel-item img,
.carousel-video {
    height: 600px; /* AUMENTADO DE 450px */
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
    width: 100%;
}

@media (max-width: 768px) {
    .carousel-item img,
    .carousel-video {
        height: 280px; /* AUMENTADO DE 220px */
    }
}

/*--------------------------------------------------------------
# Bloco 7 - SCROLL INDICATOR
--------------------------------------------------------------*/
.scroll-indicator {
    position: relative;
    margin: 40px auto 20px;
    text-align: center;
    z-index: 3;
    animation: bounce 2s infinite;
    cursor: pointer;
    display: none; /* OCULTAR NO DESKTOP */
    width: fit-content;
}

.scroll-indicator i {
    font-size: 2.5rem;
    color: var(--primary-red);
    display: block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

/*--------------------------------------------------------------
# Bloco 8 - DIFERENCIAIS
--------------------------------------------------------------*/
.amenities-section {
    background: var(--gradient-card);
    padding: 30px;
    border: 2px solid var(--primary-red);
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.amenities-title {
    color: var(--primary-red);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.amenities-subtitle {
    color: var(--gray-medium);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.amenities-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.amenity-item {
    padding: 15px 20px;
    background: var(--charcoal);
    border: 2px solid var(--primary-red);
    border-radius: 12px;
    color: var(--soft-white);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.amenity-item:hover {
    background: var(--muted-red);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px var(--shadow-red);
}

.amenity-item i {
    color: var(--primary-red);
    font-size: 1.2rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .amenities-container {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 10px;
        scrollbar-width: none;
    }
    
    .amenities-container::-webkit-scrollbar {
        display: none;
    }
    
    .amenity-item {
        flex: 0 0 auto;
        min-width: 85px;
        max-width: 100px;
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }
}

/*--------------------------------------------------------------
# Bloco 9 - MENU DE NAVEGAÇÃO
--------------------------------------------------------------*/
.menu-sections {
    margin: 0;
    background: var(--gradient-card);
    padding: 25px;
    border-radius: 15px 15px 0 0;
    border: 2px solid var(--primary-red);
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.menu-sections::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.menu-items-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 5px 0;
    scrollbar-width: none;
}

.menu-items-container::-webkit-scrollbar {
    display: none;
}

.menu-item {
    flex: 0 0 auto;
    min-width: 150px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--soft-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    border: 1px solid rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
    background: transparent;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    transition: left 0.5s ease;
    opacity: 0.1;
}

.menu-item:hover::before,
.menu-item.active::before {
    left: 100%;
}

.menu-item:hover,
.menu-item.active {
    color: var(--primary-red);
    border-color: var(--primary-red);
    background: var(--muted-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-red);
}

@media (max-width: 768px) {
    .menu-items-container {
        -webkit-overflow-scrolling: touch;
    }
    
    .menu-item {
        min-width: 140px;
        font-size: 0.8rem;
        padding: 12px 16px;
    }
}

/*--------------------------------------------------------------
# Bloco 10 - SEÇÕES DE CONTEÚDO
--------------------------------------------------------------*/
.content-section {
    display: none;
    background: var(--gradient-card);
    padding: 30px 25px;
    border: 2px solid var(--primary-red);
    border-top: none;
    border-radius: 0 0 15px 15px;
    min-height: 400px;
    position: relative;
    margin-bottom: 40px;
}

.content-section.active {
    display: block;
    animation: fadeInContent 0.4s ease;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    color: var(--soft-white);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: left;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
}

.section-title i {
    color: var(--primary-red);
    margin-right: 10px;
}

/*--------------------------------------------------------------
# Bloco 11 - CARDS DE LAUDOS
--------------------------------------------------------------*/
.laudos-pricing-info {
    background: var(--deep-black);
    border: 2px solid var(--primary-red);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.pricing-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--soft-white);
    font-size: 0.9rem;
}

.pricing-notice i {
    color: var(--primary-red);
    font-size: 1.3rem;
}

.laudos-showcase {
    margin-bottom: 40px;
}

.laudo-card {
    background: var(--gradient-card);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.laudo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
    border-color: var(--primary-red);
}

.laudo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px var(--shadow-red);
}

.laudo-icon i {
    font-size: 1.5rem;
    color: var(--pure-white);
}

.laudo-card h4 {
    color: var(--primary-red);
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.laudo-card p {
    color: var(--soft-white);
    font-size: 0.85rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.info-badge {
    background: var(--primary-red);
    color: var(--pure-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/*--------------------------------------------------------------
# Bloco 12 - DOCUMENTOS
--------------------------------------------------------------*/
.documents-section {
    background: var(--deep-black);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 15px;
    padding: 30px;
}

.documents-section h3 {
    color: var(--primary-red);
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
}

.document-list {
    background: var(--charcoal);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.document-list h5 {
    color: var(--primary-red);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.document-list ul {
    list-style: none;
    padding: 0;
}

.document-list li {
    padding: 10px 0;
    color: var(--soft-white);
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.document-list li:last-child {
    border-bottom: none;
}

.document-list li::before {
    content: '▶';
    color: var(--primary-red);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

/*--------------------------------------------------------------
# Bloco 13 - SERVIÇOS
--------------------------------------------------------------*/
.services-main-carousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
}

.additional-services {
    margin-top: 40px;
    padding: 30px;
    background: var(--deep-black);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 15px;
}

.additional-services h3 {
    color: var(--primary-red);
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.5rem;
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    padding: 12px 0;
    color: var(--soft-white);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.services-list li:hover {
    color: var(--primary-red);
    padding-left: 10px;
    background: var(--muted-red);
    border-radius: 8px;
}

.services-list i {
    color: var(--primary-red);
    font-size: 0.9rem;
}

.electrical-service {
    background: rgba(255, 165, 0, 0.1) !important;
    border: 2px solid #FFA500 !important;
    border-radius: 8px;
    padding: 12px !important;
    margin: 8px 0;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.electrical-service i.fas {
    color: #FFA500 !important;
}

.electrical-whatsapp-btn {
    background: linear-gradient(135deg, #FFA500, #CC8400);
    color: white !important;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 32px;
}

.electrical-whatsapp-btn:hover {
    background: linear-gradient(135deg, #CC8400, #FFA500);
    transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Bloco 14 - PROJETOS
--------------------------------------------------------------*/
.projects-gallery {
    margin-bottom: 40px;
}

.project-showcase {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.project-showcase:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
}

.project-image,
.project-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-showcase:hover .project-image {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
}

.project-overlay h4 {
    color: var(--pure-white);
    font-family: 'Playfair Display', serif;
    margin: 0;
}

.project-types {
    background: var(--deep-black);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.project-types h3 {
    color: var(--primary-red);
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
}

.project-types-container {
    display: grid;
    gap: 25px;
}

@media (min-width: 769px) {
    .project-types-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .project-types-container {
        grid-template-columns: 1fr;
    }
}

.project-type-card {
    background: var(--charcoal);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.project-type-card:hover {
    transform: translateY(-5px);
    background: var(--muted-red);
    box-shadow: 0 8px 25px var(--shadow-red);
    border-color: var(--primary-red);
}

.project-type-card i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.project-type-card h5 {
    color: var(--primary-red);
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.project-type-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    background: var(--deep-black);
    border-radius: 8px;
    padding: 15px;
}

.project-type-card li {
    padding: 8px 0;
    color: var(--soft-white);
    position: relative;
    padding-left: 25px;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.project-type-card li:last-child {
    border-bottom: none;
}

.project-type-card li::before {
    content: '•';
    color: var(--primary-red);
    position: absolute;
    left: 8px;
    font-weight: bold;
}

/*--------------------------------------------------------------
# Bloco 15 - SIDEBAR
--------------------------------------------------------------*/
.info-sidebar {
    background: var(--gradient-card);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid var(--primary-red);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.info-title {
    color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item {
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
    color: var(--soft-white);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    color: var(--primary-red);
    margin-right: 10px;
    width: 20px;
}

.info-item strong {
    color: var(--primary-red);
}

.contact-link {
    color: var(--soft-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-red);
}

/*--------------------------------------------------------------
# Bloco 16 - VÍDEOS PROMOCIONAIS
--------------------------------------------------------------*/
.videos-promo {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--primary-red);
}

.videos-promo-title {
    color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.videos-promo-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.video-promo-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    aspect-ratio: 16/9;
    background: var(--deep-black);
}

.promo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0,0,0,0.8));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
}

.video-promo-item:hover .video-promo-overlay {
    opacity: 1;
}

.promo-fullscreen-btn {
    background: rgba(220, 38, 38, 0.9);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-end;
}

.promo-fullscreen-btn:hover {
    background: var(--primary-red);
    transform: scale(1.1);
}

.video-promo-title {
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    background: rgba(0,0,0,0.8);
    padding: 8px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .videos-promo-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .video-promo-item {
        aspect-ratio: 9/16;
    }
}

/*--------------------------------------------------------------
# Bloco 17 - FOOTER
--------------------------------------------------------------*/
.footer-profissional {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 3px solid var(--primary-red);
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-logo-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 80px;
    height: 80px;
}

.footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-red);
    margin: 0;
}

.footer-text {
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-red);
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow-red);
}

.footer-title {
    color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-red);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-links i {
    width: 20px;
    color: var(--primary-red);
}

.footer-horarios {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.footer-horarios li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.horario-dia {
    color: var(--soft-white);
    font-weight: 500;
}

.horario-hora {
    color: var(--primary-red);
    font-weight: 600;
}

.footer-contato {
    list-style: none;
    padding: 0;
}

.footer-contato li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contato i {
    color: var(--primary-red);
    font-size: 1.3rem;
    min-width: 25px;
}

.footer-contato strong {
    color: var(--soft-white);
    display: block;
    margin-bottom: 5px;
}

.footer-contato a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contato a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding: 25px 0;
}

.footer-copyright,
.footer-dev {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.footer-copyright strong,
.footer-dev strong {
    color: var(--primary-red);
}

/*--------------------------------------------------------------
# Bloco 18 - MOBILE NAV
--------------------------------------------------------------*/
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0A0A0A;
    border-top: 2px solid var(--primary-red);
    padding: 12px 0;
    z-index: 1000;
    display: none;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.8);
    padding-bottom: max(12px, env(safe-area-inset-bottom));
}

.mobile-nav-item {
    text-align: center;
    color: var(--soft-white);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 4px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 55px;
    background: none;
    border: none;
    width: 100%;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--primary-red);
    background: var(--muted-red);
}

.mobile-nav-item i {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.mobile-nav-item span {
    font-size: 0.75rem;
    font-weight: 500;
}

.mobile-user-dropdown {
    position: relative;
    width: 100%;
}

.mobile-user-btn {
    cursor: pointer;
}

.mobile-user-menu {
    position: fixed;
    bottom: 70px;
    right: 10px;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 16px;
    padding: 8px;
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.mobile-user-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-user-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 12px;
    margin-bottom: 8px;
}

.mobile-user-header i {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.mobile-user-header span {
    color: #F9FAFB;
    font-weight: 600;
}

.mobile-user-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    color: #E5E7EB;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-user-link:hover {
    background: rgba(220, 38, 38, 0.2);
    color: var(--primary-red);
}

.mobile-user-link i {
    width: 20px;
    text-align: center;
    color: var(--primary-red);
}

.mobile-user-link.text-danger {
    color: #EF4444 !important;
}

.mobile-user-link.text-danger i {
    color: #EF4444 !important;
}

.mobile-user-divider {
    height: 1px;
    background: rgba(220, 38, 38, 0.2);
    margin: 8px 0;
}

/*--------------------------------------------------------------
# Bloco 19 - WHATSAPP FLOAT
--------------------------------------------------------------*/
.whatsapp-float {
    display: none !important; /* REMOVER EM TODAS AS VERSÕES */
}
/*--------------------------------------------------------------
# Bloco 20 - EMPTY STATE
--------------------------------------------------------------*/
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-medium);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.6;
    color: var(--primary-red);
}

.empty-state h4 {
    margin-bottom: 10px;
    color: var(--soft-white);
    font-weight: 600;
    font-size: 1.5rem;
}

/*--------------------------------------------------------------
# Bloco 21 - RESPONSIVO MOBILE
--------------------------------------------------------------*/
@media (max-width: 768px) {
    body {
        padding-bottom: calc(70px + env(safe-area-inset-bottom));
    }

    .mobile-nav {
        display: block;
    }

    .user-area {
        display: none !important;
    }

    .scroll-indicator {
        display: block; /* MOSTRAR SETA NO MOBILE */
    }

    .header {
    padding: 20px 0; /* AUMENTADO PARA 20px */
}

.brand-title {
    font-size: 1.5rem; /* AJUSTADO PARA 1.5rem */
    letter-spacing: 1px;
}

.brand-subtitle {
    font-size: 0.75rem; /* AJUSTADO PARA 0.75rem */
    letter-spacing: 1px;
    margin-top: 3px;
}

.main-logo {
    max-width: 130px; /* AJUSTADO PARA 130px */
}

    .info-sidebar {
        margin-top: 30px;
        padding: 20px;
    }

    .section-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .section-title::after {
        margin: 15px auto 0;
    }
}

/*--------------------------------------------------------------
# ANIMAÇÕES SUAVES DE TRANSIÇÃO ENTRE SEÇÕES
--------------------------------------------------------------*/
.content-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.content-section.active {
    opacity: 1;
    transform: translateY(0);
}

/* Animação dos cards dentro das seções */
.content-section.active .laudo-card,
.content-section.active .project-showcase,
.content-section.active .additional-services,
.content-section.active .project-types {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: calc(var(--item-index, 0) * 0.1s);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Transição suave do menu */
.menu-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Prevenir flash durante transição */
.content-section:not(.active) {
    pointer-events: none;
}

.content-section.active {
    pointer-events: all;
}

/*--------------------------------------------------------------
# CAROUSEL - SETA CUSTOMIZADA
--------------------------------------------------------------*/
.carousel-indicators {
    display: none !important; /* REMOVER INDICATORS/BOLINHAS */
}

/* Seta customizada no canto direito inferior */
.carousel-control-custom {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    border: none;
}

.carousel-control-custom:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

.carousel-control-custom i {
    color: white;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .carousel-control-custom {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }
    
    .carousel-control-custom i {
        font-size: 1rem;
    }
}
/*--------------------------------------------------------------
# LOADING SCREEN ULTRA PREMIUM
--------------------------------------------------------------*/
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    overflow: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    position: relative;
    text-align: center;
    z-index: 10;
}

/* LOGO ANIMADO */
.loading-logo {
    position: relative;
    margin-bottom: 40px;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-pulse {
    width: 150px;
    height: 150px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(220, 38, 38, 0.8));
    animation: logoPulse 2s ease-in-out infinite;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, 
        rgba(220, 38, 38, 0.4) 0%,
        rgba(220, 38, 38, 0.2) 40%,
        transparent 70%
    );
    animation: glowPulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 30px rgba(220, 38, 38, 0.8));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 50px rgba(220, 38, 38, 1));
    }
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

/* TEXTO */
.loading-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, 
        var(--primary-red) 0%,
        #FF6B35 25%,
        #FFA500 50%,
        #FF6B35 75%,
        var(--primary-red) 100%
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 3s linear infinite;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.loading-subtitle {
    color: var(--soft-white);
    font-size: 1rem;
    opacity: 0.8;
    animation: textBlink 2s ease-in-out infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes textBlink {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* PROGRESS BAR */
.progress-container {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.progress-bar {
    width: 300px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.2);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        var(--primary-red) 0%,
        #FF6B35 50%,
        var(--primary-red) 100%
    );
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.8);
}

.progress-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    animation: shineMove 2s ease-in-out infinite;
}

@keyframes shineMove {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.progress-percent {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.2rem;
    min-width: 50px;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

/* PARTICLES */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.8);
    animation: particleFloat 5s ease-in-out infinite;
    opacity: 0;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 0.5s; }
.particle:nth-child(3) { left: 30%; animation-delay: 1s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1.5s; }
.particle:nth-child(5) { left: 50%; animation-delay: 2s; }
.particle:nth-child(6) { left: 60%; animation-delay: 2.5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 3s; }
.particle:nth-child(8) { left: 80%; animation-delay: 3.5s; }
.particle:nth-child(9) { left: 90%; animation-delay: 4s; }
.particle:nth-child(10) { left: 15%; animation-delay: 4.5s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1.5);
        opacity: 0;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .loading-title {
        font-size: 1.8rem;
    }
    
    .logo-pulse {
        width: 120px;
        height: 120px;
    }
    
    .progress-bar {
        width: 250px;
    }
}

/*--------------------------------------------------------------
# NOTIFICAÇÃO ELÉTRICA
--------------------------------------------------------------*/
.electrical-notification {
    position: fixed;
    bottom: 90px; /* Acima da mobile nav */
    left: 20px;
    width: 320px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #FFA500;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(255, 165, 0, 0.4), 
                0 0 60px rgba(255, 165, 0, 0.2);
    z-index: 9998;
    opacity: 0;
    transform: translateX(-400px);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
}

.electrical-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.electrical-notification.hide {
    opacity: 0;
    transform: translateX(-400px);
}

.notification-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 165, 0, 0.2);
    border: 1px solid #FFA500;
    color: #FFA500;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.notification-close:hover {
    background: #FFA500;
    color: #000;
    transform: rotate(90deg);
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.notification-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.5);
    animation: pulseElectrical 2s ease-in-out infinite;
}

@keyframes pulseElectrical {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 165, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(255, 165, 0, 0.8);
    }
}

.notification-icon i {
    font-size: 1.5rem;
    color: #000;
}

.notification-text h4 {
    color: #FFA500;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    font-family: 'Playfair Display', serif;
}

.notification-text p {
    color: var(--soft-white);
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.9;
}

.notification-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    color: #000;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.notification-cta::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;
}

.notification-cta:hover::before {
    left: 100%;
}

.notification-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 165, 0, 0.5);
    color: #000;
}

.notification-cta i {
    font-size: 1.2rem;
}

/* MOBILE */
@media (max-width: 768px) {
    .electrical-notification {
        left: 10px;
        width: 240px; /* Meio termo - nem muito largo, nem muito quadrado */
        bottom: 80px;
        padding: 14px;
        border-radius: 14px;
    }
    
    .notification-content {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
        margin-bottom: 12px;
    }
    
    .notification-icon {
        width: 48px;
        height: 48px;
    }
    
    .notification-icon i {
        font-size: 1.3rem;
    }
    
    .notification-text h4 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }
    
    .notification-text p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .notification-cta {
        padding: 9px 14px;
        font-size: 0.8rem;
        width: 100%;
        gap: 8px;
    }
    
    .notification-cta i {
        font-size: 1.1rem;
    }
    
    .notification-close {
        width: 26px;
        height: 26px;
        top: 8px;
        right: 8px;
        font-size: 0.75rem;
    }
}

/* TABLETS */
@media (min-width: 769px) and (max-width: 1024px) {
    .electrical-notification {
        width: 280px;
    }
}
/*--------------------------------------------------------------
# FIM DO CSS
--------------------------------------------------------------*/