/* Reset e configuraÃ§Ãµes gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #02093f;
    --secondary-color: #ffc107;
    --success-color: #28a745;
    --dark-color: #212529;
    --light-gray: #f8f9fa;
    --text-color: #333;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Feedback visual - FormulÃ¡rios */
.input-group.focused {
    transform: scale(1.02);
    transition: transform 0.2s ease;
}

.input-group.valid .input-group-text {
    background-color: #d4edda;
    border-color: #28a745;
}

.input-group.invalid .input-group-text {
    background-color: #f8d7da;
    border-color: #dc3545;
}

.input-group.valid .form-control {
    border-color: #28a745;
}

.input-group.invalid .form-control {
    border-color: #dc3545;
}

/* Carrinho Badge */
.carrinho-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Modal do Carrinho */
.carrinho-item {
    transition: all 0.3s ease;
}

.carrinho-item:hover {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 0.5rem;
    margin: 0 -0.5rem;
}

.carrinho-item img {
    transition: transform 0.3s ease;
}

.carrinho-item:hover img {
    transform: scale(1.1);
}

/* BotÃµes com feedback visual */
.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(0.95);
}

.btn-success {
    animation: successPulse 0.5s ease;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Loading states */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Cards com hover melhorado */
.card, .product-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:active, .product-card:active {
    transform: scale(0.98);
}

/* Favicon - OtimizaÃ§Ã£o para mÃ¡xima qualidade */
link[rel="icon"],
link[rel="apple-touch-icon"] {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Navbar */
.navbar {
    transition: var(--transition);
    padding: 0;
    min-height: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 1) !important;
}

.navbar-nav {
    align-items: center;
}

/* Header padrÃ£o - Desktop mostra links, mobile mostra hambÃºrguer */
@media (min-width: 992px) {
    /* Esconder completamente o botÃ£o hambÃºrguer no desktop */
    .navbar .navbar-toggler {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        overflow: hidden !important;
    }
    
    /* Mostrar o menu collapse no desktop */
    .navbar-collapse {
        display: flex !important;
    }
}

@media (max-width: 991px) {
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-item {
        margin: 0.25rem 0;
    }
    
    .navbar-nav .btn {
        margin-top: 0.5rem;
        width: 100%;
        max-width: 200px;
    }
    
    .navbar-brand {
        max-width: 150px;
    }
    
    .navbar-brand img {
        max-height: 50px;
    }
}

#btnCarrinho {
    padding: 0.5rem 0.75rem !important;
    min-width: 45px;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible !important;
}

#btnCarrinho i {
    font-size: 1.1rem;
    display: block;
}

.carrinho-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    border: 2px solid white;
    z-index: 10;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Quando navbar estÃ¡ scrolled e menu estÃ¡ aberto no mobile, manter cor escura para legibilidade */
@media (max-width: 768px) {
    .navbar.scrolled .navbar-collapse.show .nav-link {
        color: var(--text-color) !important;
    }
    
    .navbar.scrolled .navbar-collapse.show .nav-link:hover {
        color: var(--primary-color) !important;
    }
    
    .navbar.scrolled .navbar-collapse.show .btn {
        color: inherit !important;
    }
}

.navbar.scrolled .navbar-brand img {
    filter: brightness(1.1);
}

.navbar-toggler {
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    z-index: 1000;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(2, 9, 63, 0.25);
}

.navbar-toggler-icon {
    display: inline-block !important;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(2, 9, 63, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.navbar.scrolled .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.8);
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-brand img {
    transition: var(--transition);
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    padding: 0;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .navbar {
        min-height: 70px;
        height: 70px;
    }
    
    .navbar-brand img {
        max-height: 50px;
    }
    
    .navbar-toggler {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 1000;
        position: relative;
    }
    
    .navbar-toggler-icon {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .navbar-nav .btn {
        margin: 0.5rem 0;
        width: auto;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .carrinho-badge {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
        top: -6px;
        right: -6px;
    }
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    margin: 0 0.25rem;
    padding: 0 0.75rem !important;
    transition: var(--transition);
    position: relative;
    border-radius: 4px;
    line-height: 1.2;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(2, 9, 63, 0.05);
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.nav-link.active::after {
    width: 80%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #02093f 0%, #010520 100%);
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section .row {
    overflow: visible;
}

.hero-section .col-lg-6 {
    overflow: visible;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    display: block !important;
    visibility: visible !important;
}

.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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-logo {
    max-width: 100%;
    max-height: 450px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
    animation: slideInLeft 1s ease-out;
    display: block !important;
    visibility: visible !important;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Pattern Overlay */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Hero Shapes - Elementos decorativos */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Hero Title */
.hero-title {
    animation: fadeInUp 0.8s ease-out 0.3s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    font-size: 4.5rem;
    display: block !important;
    visibility: visible !important;
    color: white !important;
    text-align: center;
}

/* Hero Subtitle */
.hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.5s both;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block !important;
    visibility: visible !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Hero Description */
.hero-description {
    animation: fadeInUp 0.8s ease-out 0.7s both;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 400px;
    display: block !important;
    visibility: visible !important;
    color: white !important;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem 1.5rem;
    box-sizing: border-box;
}

/* Hero CTA Buttons */
.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.9s both;
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta .btn {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 300px;
    border-width: 2px;
    border-style: solid;
    box-sizing: border-box;
}

.hero-cta .btn-hero-primary {
    background-color: #ffffff;
    color: var(--primary-color);
    border-color: rgba(2, 9, 63, 0.3);
}

.hero-cta .btn-hero-primary:hover {
    background-color: #f8f9fa;
    border-color: var(--primary-color);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    color: #010520;
}

.hero-cta .btn-hero-primary i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.hero-cta .btn-hero-secondary {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-cta .btn-hero-secondary:hover {
    background-color: #010520;
    border-color: #ffffff;
    box-shadow: 0 6px 25px rgba(2, 9, 63, 0.4);
    color: #ffffff;
}

.hero-cta .btn-hero-secondary i {
    color: #ffffff;
    font-size: 1.1rem;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-color);
    box-shadow: 0 4px 15px rgba(2, 9, 63, 0.3);
}

.btn-primary:hover {
    background: #030d5a;
    box-shadow: 0 6px 20px rgba(2, 9, 63, 0.4);
}

.btn-warning {
    background: var(--secondary-color);
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-warning:hover {
    background: #e0a800;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.btn-mercado-livre {
    background: var(--secondary-color) !important;
    color: #ffffff !important;
    border-color: var(--secondary-color) !important;
}

.btn-mercado-livre i,
.btn-mercado-livre {
    color: #ffffff !important;
}

.btn-mercado-livre:hover {
    background: #e0a800 !important;
    color: #ffffff !important;
    border-color: #e0a800 !important;
}

.btn-mercado-livre:hover i {
    color: #ffffff !important;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

/* Cards */
.card {
    transition: var(--transition);
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Product Cards */
.product-card {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-top: 15px;
    margin-bottom: 15px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(2, 9, 63, 0.15);
    border-color: var(--primary-color);
    margin-top: 7px;
    margin-bottom: 23px;
}

.card-img-placeholder {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Imagens dos produtos */
.product-card .card-img-top {
    width: 100%;
    height: 230px;
    object-fit: contain;
    background-color: #f8f9fa;
    padding: 12px;
    transition: transform 0.3s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

.product-card .card-body {
    padding: 1.5rem;
}

.product-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.product-card .card-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.product-card .btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-card .btn:hover {
    box-shadow: 0 4px 12px rgba(2, 9, 63, 0.2);
}

/* Product Section Headers */
.product-section-header {
    padding: 1.5rem 0;
    border-bottom: 2px solid rgba(2, 9, 63, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

@media (max-width: 768px) {
    .product-section-header {
        text-align: center;
        padding: 1.25rem 0;
    }
    
    .product-section-header .d-flex {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .product-section-header h3 {
        text-align: center !important;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .product-section-header p {
        text-align: center !important;
        margin-top: 0.5rem;
    }
    
    .product-section-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

.product-section-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #010520 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(2, 9, 63, 0.3);
}

.product-section-header h3 {
    color: var(--text-color);
    font-size: 1.75rem;
}

/* Produtos Section */
.produtos-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    z-index: 1;
    display: block !important;
    visibility: visible !important;
}

.produtos-title {
    animation: fadeInUp 0.8s ease-out;
    color: var(--text-color);
}

.produtos-subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.featured-product {
    background: linear-gradient(135deg, var(--primary-color) 0%, #010520 100%);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(2, 9, 63, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.featured-product::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.featured-product-content {
    position: relative;
    z-index: 2;
}

.featured-product-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    backdrop-filter: blur(10px);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.featured-product h3 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.featured-product-features {
    list-style: none;
    padding: 0;
}

.featured-product-features li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    opacity: 0.95;
}

.featured-product-features li i {
    color: #ffd700;
}

.featured-product-visual {
    position: relative;
    z-index: 2;
}

.featured-product-visual i {
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.15);
    animation: rotate 15s linear infinite;
}

.featured-product .btn {
    border-radius: 50px;
    padding: 0.875rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.featured-product .btn:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* SeÃ§Ã£o ComparaÃ§Ã£o */
.comparacao-section {
    position: relative;
    overflow: hidden;
}

.comparacao-icon-header {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #010520 100%);
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 15px 40px rgba(2, 9, 63, 0.25);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.comparacao-icon-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: rotate 6s linear infinite;
}

.comparacao-icon-header:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(2, 9, 63, 0.35);
}

.comparacao-icon-header i {
    position: relative;
    z-index: 1;
}

/* Tabela Comparativa */
.comparacao-tabela-wrapper {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.comparacao-tabela-wrapper .table {
    margin-bottom: 0;
}

.comparacao-tabela-wrapper thead th {
    background: linear-gradient(135deg, var(--primary-color) 0%, #010520 100%);
    color: white;
    border: none;
    padding: 1rem;
    font-weight: 600;
    vertical-align: middle;
}

.comparacao-tabela-wrapper tbody td {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparacao-tabela-wrapper tbody tr:hover {
    background-color: rgba(2, 9, 63, 0.03);
}

/* Cards Comparativos */
.comparacao-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    animation: fadeInUp 0.8s ease-out both;
}

.comparacao-card:nth-child(1) {
    animation-delay: 0.3s;
}

.comparacao-card:nth-child(2) {
    animation-delay: 0.5s;
}

.comparacao-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.comparacao-card-isolador {
    border-top: 4px solid var(--primary-color);
}

.comparacao-card-isolador:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(2, 9, 63, 0.2);
}

.comparacao-card-autotransformador {
    border-top: 4px solid var(--secondary-color);
}

.comparacao-card-autotransformador:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 20px 50px rgba(255, 193, 7, 0.2);
}

.comparacao-card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #010520 100%);
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.comparacao-card-autotransformador .comparacao-card-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.comparacao-card-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 8s linear infinite;
}

.comparacao-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.badge-seguranca {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-economia {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.comparacao-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.comparacao-card:hover .comparacao-icon {
    transform: scale(1.1) rotate(5deg);
}

.comparacao-card-header h3 {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.comparacao-card-body {
    padding: 2.5rem 2rem;
    color: var(--text-color);
}

.comparacao-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparacao-features li {
    padding: 0.75rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.comparacao-features li:last-child {
    border-bottom: none;
}

.comparacao-features li:hover {
    padding-left: 0.5rem;
    color: var(--primary-color);
}

.comparacao-features li i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.comparacao-card-autotransformador .comparacao-features li i {
    color: var(--secondary-color);
}

/* Responsividade da SeÃ§Ã£o ComparaÃ§Ã£o */
@media (max-width: 992px) {
    .comparacao-card {
        margin-bottom: 2rem;
    }
    
    .comparacao-tabela-wrapper {
        overflow-x: auto;
    }
    
    .comparacao-tabela-wrapper .table {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .comparacao-section {
        padding: 3rem 0;
    }
    
    .comparacao-icon-header {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .comparacao-card {
        margin-bottom: 2rem;
    }
    
    .comparacao-card-header {
        padding: 1.5rem;
    }
    
    .comparacao-card-body {
        padding: 1.5rem;
    }
    
    .comparacao-features li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
}

@media (max-width: 768px) {
    .comparacao-icon-header {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .comparacao-card-header {
        padding: 2rem 1.5rem;
    }
    
    .comparacao-card-body {
        padding: 2rem 1.5rem;
    }
    
    .comparacao-badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    .comparacao-tabela-wrapper thead th,
    .comparacao-tabela-wrapper tbody td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
}

/* Carousel Container */
#produtosCarousel {
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 40px;
    padding-right: 40px;
    overflow: visible;
    z-index: 1;
    display: block !important;
    visibility: visible !important;
}

#produtosCarousel .carousel-inner {
    overflow: visible;
}

/* Desktop: Centralizar quando hÃ¡ apenas 2 caixas no slide */
@media (min-width: 768px) {
    #produtosCarousel .carousel-item .row {
        justify-content: center;
    }
    
    /* Quando hÃ¡ apenas 2 col-md-4 no slide, garantir que fiquem centralizadas */
    #produtosCarousel .carousel-item .row .col-md-4 {
        flex: 0 0 auto;
        max-width: 33.333333%;
    }
    
    /* Se houver apenas 2 elementos, eles ficarÃ£o centralizados devido ao justify-content: center */
}

@media (max-width: 768px) {
    /* Mobile: estilo similar ao transformadoresCarousel para Caixas */
    #produtosCarousel {
        padding: 0 15px 80px;
        border-radius: 16px;
        overflow: visible;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }
    
    #produtosCarousel .carousel-inner {
        border-radius: 16px;
        overflow: hidden;
    }
    
    /* Transformar cards em estilo transformador-carousel-item no mobile */
    #produtosCarousel .carousel-item .row {
        margin: 0;
    }
    
    /* Mobile: mostrar apenas 1 caixa por vez - esconder outras caixas no mesmo slide */
    #produtosCarousel .carousel-item .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }
    
    #produtosCarousel .carousel-item .col-md-4:not(:first-child) {
        display: none;
    }
    
    /* Cards de Caixas no mobile - manter estilo do desktop (card normal) */
    /* Apenas garantir que mostre 1 produto por vez e botÃµes embaixo */
    
    #transformadoresIsoladoresCarousel,
    #autotransformadoresCarousel {
        padding-top: 15px;
        padding-bottom: 80px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Mobile: botÃµes embaixo centralizados para Transformadores Isoladores e Autotransformadores */
    #transformadoresIsoladoresCarousel .carousel-control-prev,
    #transformadoresIsoladoresCarousel .carousel-control-next,
    #autotransformadoresCarousel .carousel-control-prev,
    #autotransformadoresCarousel .carousel-control-next {
        top: auto;
        bottom: -60px;
        transform: none;
        display: block !important;
    }
    
    #transformadoresIsoladoresCarousel .carousel-control-prev,
    #autotransformadoresCarousel .carousel-control-prev {
        left: calc(50% - 60px);
    }
    
    #transformadoresIsoladoresCarousel .carousel-control-next,
    #autotransformadoresCarousel .carousel-control-next {
        right: calc(50% - 60px);
        left: auto;
    }
    
    #transformadoresIsoladoresCarousel .carousel-control-prev:hover,
    #transformadoresIsoladoresCarousel .carousel-control-next:hover,
    #autotransformadoresCarousel .carousel-control-prev:hover,
    #autotransformadoresCarousel .carousel-control-next:hover {
        transform: scale(1.1);
    }
    
    /* Mobile: botÃµes de Caixas dentro do card, abaixo do botÃ£o Mercado Livre */
    #produtosCarousel {
        position: relative;
        padding-bottom: 0 !important;
    }
    
    #produtosCarousel .carousel-control-prev,
    #produtosCarousel .carousel-control-next {
        position: absolute;
        top: auto;
        bottom: 10px;
        transform: none;
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(2, 9, 63, 0.9);
        border-radius: 50%;
        opacity: 1;
        border: 2px solid white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        z-index: 15;
        margin: 0;
    }
    
    #produtosCarousel .carousel-control-prev {
        left: calc(50% - 50px);
        right: auto;
    }
    
    #produtosCarousel .carousel-control-next {
        right: calc(50% - 50px);
        left: auto;
    }
    
    #produtosCarousel .carousel-control-prev:hover,
    #produtosCarousel .carousel-control-next:hover {
        transform: scale(1.1);
        background-color: rgba(2, 9, 63, 1);
    }
    
    /* Ajustar padding do card-body para acomodar os botÃµes */
    #produtosCarousel .product-card {
        position: relative;
        overflow: visible;
        margin-bottom: 60px;
    }
    
    #produtosCarousel .product-card .card-body {
        padding-bottom: 1rem;
        padding-top: 1rem;
        position: relative;
    }
    
    /* Subir os botÃµes dentro do card */
    #produtosCarousel .product-card .card-body .mt-auto {
        margin-top: 0.5rem !important;
    }
    
    /* Mobile: mostrar apenas 1 produto por vez em TODOS os carrossÃ©is */
    #transformadoresIsoladoresCarousel .carousel-item .row .col-md-4,
    #autotransformadoresCarousel .carousel-item .row .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Carousel Controls - Setas - Desktop: nas laterais */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    background-color: rgba(2, 9, 63, 0.9);
    border-radius: 50%;
    opacity: 1;
    transition: var(--transition);
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
    left: auto;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(2, 9, 63, 0.4);
}

/* Esconder botÃµes de navegaÃ§Ã£o nos carrossÃ©is de Transformadores Isoladores e Autotransformadores */
#transformadoresIsoladoresCarousel .carousel-control-prev,
#transformadoresIsoladoresCarousel .carousel-control-next,
#autotransformadoresCarousel .carousel-control-prev,
#autotransformadoresCarousel .carousel-control-next {
    display: none !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: transparent;
    background-size: 24px 24px;
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Carousel Indicators - Estilo pÃ­lula com borda preta e barra cinza */
.carousel-indicators {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    z-index: 2;
}


.carousel-indicators button {
    width: 8px;
    height: 8px;
    background-color: rgba(180, 180, 180, 0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    margin: 0;
    opacity: 0.7;
    position: relative;
}

.carousel-indicators button:hover {
    opacity: 1;
    background-color: rgba(180, 180, 180, 1);
    transform: scale(1.2);
}

.carousel-indicators button.active {
    width: 52px;
    height: 12px;
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 20px;
    opacity: 1;
    box-shadow: none;
    transform: scale(1);
    padding: 0;
    position: relative;
}

.carousel-indicators button.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 4px;
    background-color: rgba(180, 180, 180, 0.9);
    border-radius: 10px;
}

.carousel-indicators button.active::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -14px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: rgba(180, 180, 180, 0.8);
    border-radius: 50%;
}

.carousel-indicators button.active:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* Carrossel de Transformadores */
.transformadores-carousel {
    position: relative;
    margin: 2rem 0;
    padding: 0 80px 20px;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Garantir que o container nÃ£o corte as setas */
#produtos .container {
    overflow: visible;
}

.produtos-section {
    overflow: visible;
}

/* Garantir que os carrossÃ©is de Transformadores Isoladores e Autotransformadores nÃ£o cortem o hover */
#transformadoresIsoladoresCarousel,
#autotransformadoresCarousel {
    overflow: visible !important;
    padding-top: 20px;
    padding-bottom: 30px;
}

#transformadoresIsoladoresCarousel .carousel-inner,
#autotransformadoresCarousel .carousel-inner {
    overflow: visible !important;
}

#transformadoresIsoladoresCarousel .carousel-item,
#autotransformadoresCarousel .carousel-item {
    overflow: visible !important;
}

/* Garantir que os botÃµes sejam clicÃ¡veis no mobile */
@media (max-width: 768px) {
    #transformadoresIsoladoresCarousel .product-card .btn,
    #autotransformadoresCarousel .product-card .btn {
        z-index: 10;
        position: relative;
        pointer-events: auto;
    }
    
    #transformadoresIsoladoresCarousel .product-card,
    #autotransformadoresCarousel .product-card {
        z-index: 1;
    }
}

/* Ocultar seÃ§Ã£o USETRAFO Solar */
#usetrafo-solar {
    display: none !important;
}

.transformadores-carousel .carousel-inner {
    border-radius: 16px;
    overflow: hidden;
}

.transformador-carousel-item {
    position: relative;
    height: 650px;
    overflow: hidden;
    background-color: #f8f9fa;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.transformador-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

/* TransiÃ§Ã£o suave entre slides - Slide com Fade */
.transformadores-carousel .carousel-item {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease-in-out;
}

.transformadores-carousel .carousel-item.active {
    opacity: 1;
    transform: translateX(0);
}

.transformadores-carousel .carousel-item.carousel-item-next:not(.carousel-item-start),
.transformadores-carousel .carousel-item.active.carousel-item-next {
    transform: translateX(100%);
    opacity: 0;
}

.transformadores-carousel .carousel-item.carousel-item-prev:not(.carousel-item-end),
.transformadores-carousel .carousel-item.active.carousel-item-prev {
    transform: translateX(-100%);
    opacity: 0;
}

/* AnimaÃ§Ã£o de entrada para a imagem */
@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: translateX(30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.transformadores-carousel .carousel-item.active .transformador-carousel-item {
    animation: slideFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.transformadores-carousel .carousel-item.active .transformador-carousel-item img {
    transition: transform 0.6s ease-out;
}

/* Overlay com animaÃ§Ã£o de entrada */
.transformadores-carousel .carousel-item.active .carousel-overlay {
    animation: slideFadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.15s both;
}

@keyframes slideFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(2, 9, 63, 0.95) 0%, rgba(2, 9, 63, 0.7) 50%, transparent 100%);
    padding: 3rem 2rem 2rem;
    color: white;
    z-index: 2;
}

.overlay-content {
    text-align: center;
}

.overlay-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.overlay-description {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Indicadores do carrossel de transformadores - Estilo pÃ­lula e bolinha */
#transformadoresCarousel .carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

#transformadoresCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    border: 2px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    margin: 0;
    opacity: 0.8;
    position: relative;
}

#transformadoresCarousel .carousel-indicators button:hover {
    opacity: 1;
    background-color: var(--secondary-color);
    border-color: #ffffff;
    transform: scale(1.3);
}

#transformadoresCarousel .carousel-indicators button.active {
    width: 60px;
    height: 14px;
    background-color: var(--secondary-color);
    border: 2px solid #ffffff;
    border-radius: 20px;
    opacity: 1;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.4);
    transform: scale(1);
    padding: 0;
    position: relative;
}

#transformadoresCarousel .carousel-indicators button.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

#transformadoresCarousel .carousel-indicators button.active::after {
    display: none;
}

#transformadoresCarousel .carousel-indicators button.active:hover {
    transform: scale(1.05);
    opacity: 1;
    box-shadow: 0 3px 12px rgba(255, 193, 7, 0.5);
}

/* Controles do carrossel de transformadores */
#transformadoresCarousel .carousel-control-prev,
#transformadoresCarousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
}

#transformadoresCarousel .carousel-control-prev {
    left: -80px;
}

#transformadoresCarousel .carousel-control-next {
    right: -80px;
    left: auto;
}

#transformadoresCarousel .carousel-control-prev:hover,
#transformadoresCarousel .carousel-control-next:hover {
    opacity: 1;
    background-color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(2, 9, 63, 0.4);
}

#transformadoresCarousel .carousel-control-prev-icon,
#transformadoresCarousel .carousel-control-next-icon {
    filter: brightness(0) saturate(100%) invert(8%) sepia(95%) saturate(7498%) hue-rotate(230deg) brightness(95%) contrast(101%);
}

/* Responsividade do carrossel de transformadores */
@media (max-width: 992px) {
    .transformadores-carousel {
        padding: 0 60px 20px;
    }
    
    #transformadoresCarousel .carousel-control-prev {
        left: -60px;
    }
    
    #transformadoresCarousel .carousel-control-next {
        right: -60px;
    }
}

@media (max-width: 768px) {
    .transformadores-carousel {
        padding: 0 15px 80px;
    }
    
    .transformador-carousel-item {
        height: 450px;
    }
    
    .carousel-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .overlay-title {
        font-size: 1.5rem;
    }
    
    .overlay-description {
        font-size: 1.2rem;
    }
    
    /* Mobile: botÃµes embaixo centralizados */
    #transformadoresCarousel .carousel-control-prev,
    #transformadoresCarousel .carousel-control-next {
        width: 50px;
        height: 50px;
        top: auto;
        bottom: -60px;
        transform: none;
    }
    
    #transformadoresCarousel .carousel-control-prev {
        left: calc(50% - 60px);
    }
    
    #transformadoresCarousel .carousel-control-next {
        right: calc(50% - 60px);
        left: auto;
    }
    
    #transformadoresCarousel .carousel-control-prev:hover,
    #transformadoresCarousel .carousel-control-next:hover {
        transform: scale(1.1);
    }
    
    #transformadoresCarousel .carousel-indicators {
        bottom: 10px;
    }
}

@media (max-width: 576px) {
    .transformadores-carousel {
        padding: 0 15px 80px;
    }
    
    .transformador-carousel-item {
        height: 350px;
    }
    
    .carousel-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .overlay-title {
        font-size: 1.3rem;
    }
    
    .overlay-description {
        font-size: 1rem;
    }
    
    /* Mobile: botÃµes embaixo centralizados */
    #transformadoresCarousel .carousel-control-prev,
    #transformadoresCarousel .carousel-control-next {
        width: 45px;
        height: 45px;
        top: auto;
        bottom: -60px;
        transform: none;
    }
    
    #transformadoresCarousel .carousel-control-prev {
        left: calc(50% - 55px);
    }
    
    #transformadoresCarousel .carousel-control-next {
        right: calc(50% - 55px);
        left: auto;
    }
    
    #transformadoresCarousel .carousel-control-prev:hover,
    #transformadoresCarousel .carousel-control-next:hover {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
    }
    
    .carousel-control-prev {
        left: -15px;
    }
    
    .carousel-control-next {
        right: -15px;
        left: auto;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-size: 18px 18px;
        width: 18px;
        height: 18px;
    }
    
    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        transform: scale(1.1);
    }
    
    .carousel-indicators {
        bottom: auto;
        margin-top: 20px;
        gap: 10px;
    }
    
    /* Mobile: mostrar apenas 1 produto por vez */
    #produtosCarousel .carousel-item .row .col-md-4,
    #transformadoresIsoladoresCarousel .carousel-item .row .col-md-6,
    #autotransformadoresCarousel .carousel-item .row .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .carousel-indicators button {
        width: 6px;
        height: 6px;
    }
    
    .carousel-indicators button.active {
        width: 40px;
        height: 8px;
        border-width: 1.5px;
    }
    
    .carousel-indicators button.active::before {
        width: 28px;
        height: 3px;
    }
    
    .carousel-indicators button.active::after {
        width: 6px;
        height: 6px;
        right: -12px;
    }
}

/* Unitrafo Solar Section */
/* USETRAFO Solar Section */
.solar-section {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 50%, #d35400 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.solar-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 100% 100%, 100% 100%, 50px 50px;
    pointer-events: none;
}

.solar-icon-header {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #ffd700;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.solar-content {
    animation: fadeInUp 0.8s ease-out;
}

.solar-visual {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.solar-visual i {
    font-size: 18rem;
    color: rgba(255, 255, 255, 0.15);
    animation: rotate 20s linear infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.solar-cta {
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.solar-cta .btn {
    border-radius: 50px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.solar-cta .btn-warning {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    color: #333;
}

.solar-cta .btn-warning:hover {
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

.solar-cta .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: rgba(255, 255, 255, 0.95);
    background-color: transparent;
}

.solar-cta .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Cards de BenefÃ­cios Solar */
.solar-benefit-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    animation: fadeInUp 0.8s ease-out;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.solar-benefit-card:nth-child(1) {
    animation-delay: 0.6s;
}

.solar-benefit-card:nth-child(2) {
    animation-delay: 0.7s;
}

.solar-benefit-card:nth-child(3) {
    animation-delay: 0.8s;
}

.solar-benefit-card:nth-child(4) {
    animation-delay: 0.9s;
}

.solar-benefit-card:nth-child(5) {
    animation-delay: 1s;
}

.solar-benefit-card:nth-child(6) {
    animation-delay: 1.1s;
}

.solar-benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #ffd700;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.solar-benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.solar-benefit-card h4 {
    color: white;
    font-size: 1.3rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.solar-benefit-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.bg-gradient-solar {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    position: relative;
    overflow: hidden;
}

.bg-gradient-solar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* Gallery */
/* Transformadores Personalizados Section */
.personalizados-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    padding: 5rem 0;
}

.personalizados-icon-header {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #010520 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(2, 9, 63, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

/* Cards de Projetos Personalizados */
.personalizado-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(2, 9, 63, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.personalizado-card:nth-child(1) { animation-delay: 0.1s; }
.personalizado-card:nth-child(2) { animation-delay: 0.2s; }
.personalizado-card:nth-child(3) { animation-delay: 0.3s; }
.personalizado-card:nth-child(4) { animation-delay: 0.4s; }
.personalizado-card:nth-child(5) { animation-delay: 0.5s; }
.personalizado-card:nth-child(6) { animation-delay: 0.6s; }
.personalizado-card:nth-child(7) { animation-delay: 0.7s; }
.personalizado-card:nth-child(8) { animation-delay: 0.8s; }
.personalizado-card:nth-child(9) { animation-delay: 0.9s; }

.personalizado-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(2, 9, 63, 0.2);
    border-color: var(--primary-color);
}

.personalizado-card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.personalizado-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.personalizado-card:hover .personalizado-card-image img {
    transform: scale(1.1);
}

.personalizado-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 9, 63, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.personalizado-card-overlay i {
    font-size: 3rem;
    color: white;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.personalizado-card:hover .personalizado-card-overlay {
    opacity: 1;
}

.personalizado-card:hover .personalizado-card-overlay i {
    transform: scale(1);
}

.personalizado-card-body {
    padding: 1.5rem;
}

.personalizado-card-body h5 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.personalizado-card-body p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Feature Image */
.personalizado-feature-image {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.feature-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #010520 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(2, 9, 63, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-badge i {
    font-size: 1.2rem;
}

/* Personalizado Content */
.personalizado-content {
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.personalizado-content h3 {
    color: var(--text-color);
    font-size: 2rem;
}

/* Feature Items */
.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(2, 9, 63, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(2, 9, 63, 0.1);
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-color);
}

/* Loja Section */
.loja-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    padding: 4rem 0;
}

.loja-icon-header {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color) 0%, #010520 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(2, 9, 63, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.filter-btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(2, 9, 63, 0.3);
}

.loja-item {
    transition: all 0.3s ease;
}

.loja-item.hidden {
    display: none;
}

.loja-item .product-card {
    transition: all 0.3s ease;
}

.loja-item .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Melhorias adicionais para loja */
.loja-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 30%, #ffffff 100%);
}

.product-card {
    border: 1px solid #e9ecef;
    border-radius: 15px;
    overflow: hidden;
}

.product-card .card-body {
    padding: 1.5rem;
}

.product-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.product-card .card-title:hover {
    color: #010520;
}

.product-card .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    min-height: 60px;
}

/* Badge de categoria */
.badge {
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* Contato Section */
.contato-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.contato-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(2, 9, 63, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 193, 7, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contato-icon-header {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #010520 100%);
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 15px 40px rgba(2, 9, 63, 0.25);
    animation: fadeInUp 0.8s ease-out;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contato-icon-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: rotate 6s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.contato-icon-header:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(2, 9, 63, 0.35);
}

/* Contato Info Card */
.contato-info-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(2, 9, 63, 0.08);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.contato-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contato-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.contato-info-card:hover::before {
    transform: scaleX(1);
}

.contato-info-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #010520 100%);
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contato-info-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.contato-info-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.contato-info-card:hover .contato-info-header i {
    transform: scale(1.1) rotate(5deg);
}

.contato-info-body {
    padding: 2.5rem 2rem;
}

.contato-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2.25rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.contato-item:last-child {
    margin-bottom: 0;
}

.contato-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 0 3px 3px 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.contato-item:hover {
    transform: translateX(8px);
    background: linear-gradient(90deg, rgba(2, 9, 63, 0.03), transparent);
}

.contato-item:hover::before {
    transform: scaleY(1);
}

.contato-item-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(2, 9, 63, 0.1) 0%, rgba(1, 5, 32, 0.15) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contato-item:hover .contato-item-icon {
    background: linear-gradient(135deg, var(--primary-color), #010520);
    color: white;
    transform: scale(1.1);
    border-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(2, 9, 63, 0.2);
}

.contato-item-content {
    flex: 1;
}

.contato-item-content h6 {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contato-item-content a {
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-block;
}

.contato-item-content a:hover {
    color: #010520;
    text-decoration: none !important;
    transform: translateX(3px);
}

.contato-item-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Contato Form Card */
.contato-form-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(2, 9, 63, 0.08);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.contato-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contato-form-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.contato-form-card:hover::before {
    transform: scaleX(1);
}

.contato-form-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #010520 100%);
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contato-form-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.contato-form-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.contato-form-card:hover .contato-form-header i {
    transform: scale(1.1) rotate(-10deg);
}

.contato-form-header h4 {
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.contato-form-body {
    padding: 2.5rem 2rem;
}

.contato-form-body .form-label {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contato-form-body .input-group {
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contato-form-body .input-group:focus-within {
    transform: translateY(-2px);
}

.contato-form-body .input-group-text {
    background: linear-gradient(135deg, rgba(2, 9, 63, 0.08) 0%, rgba(1, 5, 32, 0.12) 100%);
    border: 2px solid rgba(2, 9, 63, 0.15);
    color: var(--primary-color);
    border-right: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.contato-form-body .form-control {
    border-left: none;
    border: 2px solid rgba(2, 9, 63, 0.15);
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    background: #fafafa;
}

.contato-form-body .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(2, 9, 63, 0.1);
    background: white;
    outline: none;
}

.contato-form-body .form-control:focus + .input-group-text,
.contato-form-body .input-group:focus-within .input-group-text {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), #010520);
    color: white;
    transform: scale(1.05);
}

.contato-form-body textarea.form-control {
    border-left: 2px solid rgba(2, 9, 63, 0.15);
    resize: vertical;
    min-height: 140px;
}

.contato-form-body .input-group:focus-within textarea.form-control {
    border-left-color: var(--primary-color);
}

.contato-form-body .btn {
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(2, 9, 63, 0.25);
    position: relative;
    overflow: hidden;
}

.contato-form-body .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contato-form-body .btn:hover::before {
    width: 300px;
    height: 300px;
}

.contato-form-body .btn:hover {
    box-shadow: 0 10px 30px rgba(2, 9, 63, 0.35);
}

.contato-form-body .btn:active {
    transform: translateY(-1px);
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.footer-top {
    padding: 5rem 0 3rem;
    position: relative;
    z-index: 1;
}

.footer-brand {
    animation: fadeInUp 0.8s ease-out;
    overflow: visible;
}

.footer-brand img {
    display: block;
}

.footer-logo {
    max-width: 220px;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.footer-logo img {
    margin: 0 auto;
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.3) drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1rem;
    margin-top: 1.5rem;
}

.footer-title-small {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 20px rgba(2, 9, 63, 0.4);
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    border-radius: 2px;
}

.footer-links,
.footer-contact,
.footer-info {
    animation: fadeInUp 0.8s ease-out;
}

.footer-links ul,
.footer-contact ul,
.footer-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--secondary-color) !important;
    transform: translateX(3px);
    text-decoration: none;
}

.footer-link-item {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-radius: 5px;
}

.footer-link-item i {
    font-size: 0.7rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.footer-link-item:hover {
    color: var(--secondary-color) !important;
    background: rgba(255, 193, 7, 0.1);
    padding-left: 0.5rem;
    text-decoration: none;
}

.footer-link-item:hover i {
    opacity: 1;
    color: var(--primary-color);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

/* Centralizar apenas o primeiro footer-text (descriÃ§Ã£o principal) */
.col-lg-3.col-md-6:first-child .footer-text {
    text-align: center;
}

.footer-contact-item,
.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-contact-item:hover,
.footer-info-item:hover {
    background: rgba(2, 9, 63, 0.2);
    border-color: rgba(2, 9, 63, 0.3);
    transform: translateX(5px);
}

.footer-contact-icon,
.footer-info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #010520 100%);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(2, 9, 63, 0.3);
}

.footer-contact-content,
.footer-info-content {
    flex: 1;
}

.footer-contact-label,
.footer-info-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.footer-contact-content .footer-link,
.footer-info-content .footer-text {
    display: block;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    margin-bottom: 0;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom .row {
    width: 100%;
    justify-content: center;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.footer-copyright i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.footer-developer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.footer-dev-link {
    color: #ffc107;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.footer-dev-link i {
    color: #ffc107;
    font-size: 0.9rem;
}

.footer-dev-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 193, 7, 0.1) 100%);
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-dev-link:hover {
    color: #ffd700;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
    background: rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.4);
}

.footer-dev-link:hover::before {
    opacity: 1;
}

.footer-dev-link:hover i {
    color: #ffd700;
    transform: rotate(5deg);
}

/* Gallery (mantido para compatibilidade) */
.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    transition: var(--transition);
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 9, 63, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
    text-align: center;
}

.gallery-overlay h5 {
    color: white;
    font-weight: 600;
    margin: 0;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Instagram Feed */
.instagram-post {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.instagram-post img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-post:hover {
    transform: scale(1.05);
}

.instagram-post:hover img {
    filter: brightness(1.1);
}

/* Form */
.form-control {
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(2, 9, 63, 0.15);
}

/* Modal */
.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background: var(--primary-color);
    color: white;
    border-radius: 15px 15px 0 0;
}

/* Product Modal Styles */
.product-modal {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.product-modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #010520 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-bottom: none;
}

.product-modal-header .modal-title {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.product-modal-header small {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.4;
    display: block;
    margin-top: 0.25rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
}

.modal-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
}

.modal-product-image {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-product-image img {
    max-height: 400px;
    object-fit: contain;
}

/* Carousel dentro dos modais */
.modal-product-image .carousel {
    width: 100%;
    height: 100%;
}

.modal-product-image .carousel-inner {
    border-radius: 15px;
    overflow: hidden;
}

.modal-product-image .carousel-item img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1rem;
}

.modal-product-image .carousel-control-prev,
.modal-product-image .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(2, 9, 63, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.modal-product-image .carousel-control-prev {
    left: 10px;
}

.modal-product-image .carousel-control-next {
    right: 10px;
}

.modal-product-image .carousel-control-prev:hover,
.modal-product-image .carousel-control-next:hover {
    opacity: 1;
    background-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.modal-product-image .carousel-control-prev-icon,
.modal-product-image .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.modal-product-info {
    padding: 0.5rem 0;
}

.modal-product-info h6 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.specs-list {
    list-style: none;
    padding: 0;
}

.spec-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    transition: all 0.2s ease;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-item:hover {
    padding-left: 5px;
}

.spec-item i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.spec-item span {
    line-height: 1.5;
}

.product-modal-footer {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 1.5rem 2rem;
    border-radius: 0 0 20px 20px;
}

.product-modal-footer .btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-modal-footer .btn:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-footer {
    border-top: 1px solid #e0e0e0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 0 0 15px 15px;
}

.modal-footer .btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    transition: var(--transition);
}

.modal-footer .btn-success {
    background: #28a745;
    border: none;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.modal-footer .btn-success:hover {
    background: #218838;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.modal-body h6 {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-body ul {
    list-style: none;
    padding-left: 0;
}

.modal-body ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.modal-body ul li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: var(--dark-color) !important;
}

footer img {
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

footer a {
    transition: var(--transition);
}

footer a:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

/* WoodCompany Link */
footer .text-white.fw-bold {
    transition: var(--transition);
    position: relative;
}

footer .text-white.fw-bold::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

footer .text-white.fw-bold:hover {
    color: var(--secondary-color) !important;
    transform: translateX(0) scale(1.05);
}

footer .text-white.fw-bold:hover::after {
    width: 100%;
}

.social-icons a {
    transition: var(--transition);
}

.social-icons a:hover {
    transform: scale(1.2);
    color: var(--primary-color) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

/* Sections */
section {
    padding: 5rem 0;
}

/* Sobre Section */
.sobre-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.sobre-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(2, 9, 63, 0.2), transparent);
}

.sobre-title {
    animation: fadeInUp 0.8s ease-out;
    color: var(--text-color);
}

.sobre-subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.sobre-logo-container {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(2, 9, 63, 0.05) 0%, rgba(1, 5, 32, 0.05) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out 0.3s both;
    transition: transform 0.3s ease;
}

.sobre-logo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.sobre-logo {
    max-width: 100%;
    max-height: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/* Cards de Destaque */
.sobre-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(2, 9, 63, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.sobre-card:nth-child(1) {
    animation-delay: 0.4s;
}

.sobre-card:nth-child(2) {
    animation-delay: 0.5s;
}

.sobre-card:nth-child(3) {
    animation-delay: 0.6s;
}

.sobre-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(2, 9, 63, 0.15);
    border-color: var(--primary-color);
}

.sobre-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #010520 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(2, 9, 63, 0.3);
    transition: transform 0.3s ease;
}

.sobre-card:hover .sobre-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.sobre-card h4 {
    color: var(--text-color);
    font-size: 1.5rem;
}

.sobre-card p {
    line-height: 1.6;
    font-size: 1rem;
}

.bg-light {
    background-color: #f8f9fa !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .display-1 {
        font-size: 4rem;
    }

    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
        background-color: rgba(255, 255, 255, 1) !important;
        border-radius: 8px;
        margin-top: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 1) !important;
        border-radius: 8px;
        margin-top: 1rem;
    }
    
    .navbar-collapse.show {
        background-color: rgba(255, 255, 255, 1) !important;
    }
    
    .navbar-collapse .nav-link {
        color: var(--text-color) !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .navbar-collapse .nav-link:hover {
        color: var(--primary-color) !important;
        background-color: rgba(2, 9, 63, 0.05) !important;
    }
    
    /* Garantir que todos os nav-items sejam visÃ­veis */
    .navbar-collapse .nav-item {
        display: block !important;
        visibility: visible !important;
    }
    
    /* Garantir que o texto dos botÃµes seja visÃ­vel */
    .navbar-collapse .btn {
        display: inline-block !important;
        visibility: visible !important;
    }
    
    /* Garantir que o texto dentro dos botÃµes seja visÃ­vel */
    .navbar-collapse .btn span,
    .navbar-collapse .btn i {
        display: inline !important;
        visibility: visible !important;
    }
    

    .nav-link {
        margin: 0.25rem 0.5rem;
        padding: 0.75rem 1rem !important;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    section {
        padding: 3rem 0;
    }

    .gallery-item img,
    .instagram-post img {
        height: 250px;
    }
    
    .produtos-title {
        font-size: 2.5rem;
    }
    
    .featured-product {
        padding: 2rem 1.5rem;
    }
    
    .featured-product-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .featured-product-visual i {
        font-size: 8rem;
    }
    
    .featured-product-features li {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    /* Centralizar todos os textos no mobile */
    .text-lg-start,
    .text-md-start {
        text-align: center !important;
    }
    
    .hero-logo {
        max-height: 300px;
        margin-bottom: 2rem;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .hero-section .col-lg-6:first-child {
        text-align: center;
    }
    
    .hero-section .col-lg-6:last-child {
        text-align: center !important;
    }
    
    .hero-title {
        font-size: 3.5rem;
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        text-align: center !important;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }
    
    @media (min-width: 992px) {
        .hero-cta {
            flex-direction: row;
            gap: 1rem;
        }
    }
    
    .hero-cta .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
        max-width: 280px;
        width: auto;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
    
    .hero-cta .btn-hero-primary {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
        max-width: 250px;
    }
    
    .shape-1, .shape-2, .shape-3 {
        opacity: 0.3;
    }
    
    .sobre-title {
        font-size: 2.5rem;
        text-align: center !important;
    }
    
    .sobre-subtitle {
        text-align: center !important;
    }
    
    .sobre-section .row {
        justify-content: center;
    }
    
    .sobre-section .col-lg-6 {
        text-align: center !important;
    }
    
    .sobre-section .col-lg-6 h3,
    .sobre-section .col-lg-6 p {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    .sobre-section .col-lg-6 .lead {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    .sobre-logo {
        max-height: 250px;
        margin: 0 auto;
    }
    
    .sobre-logo-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 2rem;
    }
    
    .sobre-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .sobre-card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .personalizados-section {
        padding: 3rem 0;
    }
    
    .personalizados-icon-header {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
    
    .personalizados-section h2 {
        font-size: 2.5rem;
    }
    
    .contato-section {
        padding: 3rem 0;
    }
    
    .contato-icon-header {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
    
    .contato-section h2 {
        font-size: 2.5rem;
    }
    
    .contato-info-header,
    .contato-form-header {
        padding: 1.5rem;
    }
    
    .contato-info-body,
    .contato-form-body {
        padding: 1.5rem;
    }
    
    .contato-item {
        margin-bottom: 1.5rem;
    }
    
    .contato-item-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .footer-top {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-logo {
        max-width: 150px;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-top: 1.5rem;
    }
    
    .footer-title:first-of-type {
        margin-top: 0;
    }
    
    .footer-contact-item,
    .footer-info-item {
        padding: 0.5rem;
    }
    
    .footer-contact-icon,
    .footer-info-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-developer {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-bottom .col-md-6 {
        width: 100%;
        text-align: center !important;
    }
    
    /* Footer mobile - centralizar tudo */
    .footer-section .row > div {
        text-align: center !important;
    }
    
    .footer-links ul,
    .footer-contact ul,
    .footer-info ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-title {
        text-align: center !important;
    }
    
    .personalizado-card-image {
        height: 200px;
    }
    
    .personalizado-card-body {
        padding: 1.25rem;
    }
    
    .personalizado-content {
        text-align: center;
    }
    
    .personalizado-content h3 {
        font-size: 1.75rem;
        text-align: center !important;
    }
    
    .personalizado-content p {
        text-align: center !important;
    }
    
    .personalizado-content .lead {
        text-align: center !important;
    }
    
    .feature-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        top: 10px;
        right: 10px;
    }
    
    .personalizado-content .text-center {
        text-align: center !important;
    }
    
    .personalizado-content .btn {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .hero-logo {
        max-height: 250px;
        margin-bottom: 1.5rem;
    }
    
    .hero-section .col-lg-6:last-child {
        text-align: center !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center !important;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
        padding: 1.25rem 1.25rem;
        max-width: 320px;
        width: auto;
        box-sizing: border-box;
    }
    
    .hero-cta {
        margin-top: 1.5rem;
        gap: 0.75rem;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-cta .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        max-width: 260px;
        width: auto;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
    
    .hero-cta .btn-hero-primary {
        padding: 0.65rem 1.25rem;
        font-size: 0.8rem;
        max-width: 230px;
    }

    .hero-years {
        flex-direction: column;
        align-items: flex-start;
    }

    .display-1 {
        font-size: 3rem;
    }

    .fs-2 {
        font-size: 1.5rem !important;
    }
    
    .sobre-title {
        font-size: 2rem;
        text-align: center !important;
    }
    
    .sobre-subtitle {
        text-align: center !important;
        font-size: 1rem;
    }
    
    .sobre-section .col-lg-6 {
        text-align: center !important;
        margin-bottom: 2rem;
    }
    
    .sobre-section .col-lg-6 h3 {
        text-align: center !important;
        font-size: 1.5rem;
        margin-bottom: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .sobre-section .col-lg-6 p,
    .sobre-section .col-lg-6 .lead {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .sobre-logo {
        max-height: 200px;
        margin: 0 auto;
    }
    
    .sobre-logo-container {
        padding: 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    
    .sobre-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .sobre-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .sobre-card h4 {
        font-size: 1.25rem;
        text-align: center;
    }
    
    .sobre-card p {
        text-align: center;
    }
    
    .sobre-section .text-center {
        text-align: center !important;
    }
    
    .sobre-section .btn {
        margin: 0 auto;
        display: block;
        max-width: fit-content;
    }
    
    .personalizados-section {
        padding: 2.5rem 0;
    }
    
    .personalizados-icon-header {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .personalizados-section h2 {
        font-size: 2rem;
    }
    
    .contato-section {
        padding: 2.5rem 0;
    }
    
    .contato-icon-header {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .contato-section h2 {
        font-size: 2rem;
    }
    
    .contato-info-header,
    .contato-form-header {
        padding: 1.25rem;
    }
    
    .contato-info-header i,
    .contato-form-header i {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .contato-info-header h4,
    .contato-form-header h4 {
        font-size: 1.25rem;
    }
    
    .contato-info-body,
    .contato-form-body {
        padding: 1.25rem;
    }
    
    .contato-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .contato-item-icon {
        margin: 0 auto;
    }
    
    .contato-form-body .form-label {
        font-size: 0.9rem;
    }
    
    .contato-form-body .input-group-text {
        padding: 0.5rem 0.75rem;
    }
    
    .contato-form-body .form-control {
        padding: 0.65rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .contato-form-body .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .footer-top {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-logo {
        max-width: 120px;
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    /* Centralizar texto no mobile tambÃ©m */
    .col-lg-3.col-md-6:first-child .footer-text {
        text-align: center !important;
    }
    
    .footer-title {
        font-size: 0.95rem;
        margin-top: 2rem;
    }
    
    .footer-title:first-of-type {
        margin-top: 0;
    }
    
    .footer-link,
    .footer-text {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 1.25rem 0;
        text-align: center;
    }
    
    .footer-bottom .container {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .footer-bottom .row {
        width: 100%;
        justify-content: center;
    }
    
    .footer-copyright,
    .footer-developer {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
    }
    
    .footer-developer {
        margin-bottom: 0;
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .personalizado-card-image {
        height: 180px;
    }
    
    .personalizado-card-body {
        padding: 1rem;
    }
    
    .personalizado-card-body h5 {
        font-size: 1rem;
    }
    
    .personalizado-content {
        text-align: center;
    }
    
    .personalizado-content h3 {
        font-size: 1.5rem;
        text-align: center !important;
    }
    
    .personalizado-content p {
        text-align: center !important;
    }
    
    .personalizado-content .lead {
        text-align: center !important;
    }
    
    .feature-item {
        padding: 0.75rem;
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .feature-item i {
        font-size: 1.25rem;
    }
    
    .personalizado-content .text-center {
        text-align: center !important;
    }
    
    .personalizado-content .btn {
        margin: 0 auto;
        display: block;
        max-width: fit-content;
    }
    
    .feature-badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        top: 10px;
        right: 10px;
    }
    
    .produtos-title {
        font-size: 2rem;
    }
    
    .featured-product {
        padding: 1.5rem 1rem;
    }
    
    .featured-product h3 {
        font-size: 1.5rem;
    }
    
    .featured-product-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .featured-product-visual {
        display: none;
    }
    
    .featured-product-features li {
        font-size: 0.95rem;
        padding: 0.4rem 0;
    }
    
    .featured-product .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .product-section-header {
        padding: 1rem 0;
    }
    
    .product-section-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .product-section-header h3 {
        font-size: 1.5rem;
    }
    
    .product-card {
        margin-bottom: 1.5rem;
    }
    
    .product-card .card-body {
        padding: 1.25rem;
    }
    
    .solar-section {
        padding: 3rem 0;
    }
    
    .solar-icon-header {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .solar-section h2 {
        font-size: 2.5rem;
    }
    
    .solar-visual i {
        font-size: 12rem;
    }
    
    .solar-benefit-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .solar-benefit-card h4 {
        font-size: 1.1rem;
    }
    
    .solar-cta .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        margin-bottom: 0.75rem;
    }
    
    .solar-cta .btn:last-child {
        margin-bottom: 0;
    }
    
    .modal-product-image {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .modal-product-image img {
        max-height: 250px;
    }
    
    .modal-product-image .carousel-item img {
        max-height: 250px;
        padding: 0.75rem;
    }
    
    .modal-product-image .carousel-control-prev,
    .modal-product-image .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    .modal-product-image .carousel-control-prev {
        left: 5px;
    }
    
    .modal-product-image .carousel-control-next {
        right: 5px;
    }
    
    .modal-product-image .carousel-control-prev-icon,
    .modal-product-image .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }
    
    .product-modal-header {
        padding: 1.25rem 1.5rem;
    }
    
    .product-modal-header .modal-title {
        font-size: 1.25rem;
    }
    
    .product-modal-header small {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .modal-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .product-modal-footer {
        padding: 1.25rem 1.5rem;
    }
    
    .product-modal-footer .btn {
        padding: 0.65rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .product-modal-footer .btn:last-child {
        margin-bottom: 0;
    }

    .btn-lg {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(2, 9, 63, 0.3);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #030d5a;
    transform: translateY(-5px);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Table Styles */
.table-bordered {
    border: 1px solid #dee2e6;
}

.table-bordered td {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
}

/* Shadow Effects */
.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Text Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.text-warning {
    color: var(--secondary-color) !important;
}

.text-success {
    color: var(--success-color) !important;
}

/* Background Utilities */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-warning {
    background-color: var(--secondary-color) !important;
}

.bg-success {
    background-color: var(--success-color) !important;
}

/* Hover Effects */
.hover-scale {
    transition: var(--transition);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Border Radius */
.rounded {
    border-radius: 10px !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

/* Custom Spacing */
.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.my-6 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

/* List Styles */
.list-unstyled li {
    padding: 0.25rem 0;
}

/* Icon Styles */
.fa-check-circle {
    color: var(--secondary-color);
}

/* Divider */
hr {
    opacity: 0.25;
}

/* Container Max Width */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Desktop: manter layout normal com mÃºltiplos produtos */
@media (min-width: 992px) {
    #autotransformadoresCarousel .product-card,
    #transformadoresIsoladoresCarousel .product-card,
    #produtosCarousel .product-card {
        max-width: 100%;
    }
}

/* Accessibility */
.btn:focus,
.form-control:focus {
    outline: none;
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-top,
    footer {
        display: none;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Uncomment to enable dark mode
    body {
        background-color: #1a1a1a;
        color: #ffffff;
    }
    */
}

/* Indicador de DigitaÃ§Ã£o */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.typing-indicator .bar {
    width: 50px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 20px;
    animation: blink 1.2s ease-in-out infinite;
}

.typing-indicator .dot {
    width: 8px;
    height: 8px;
    background-color: rgba(200, 200, 200, 0.8);
    border-radius: 50%;
    animation: pulse 1.2s ease-in-out infinite;
}

/* Indicador dentro do botÃ£o */
.btn .typing-indicator {
    margin: 0 auto;
}

.btn:disabled .typing-indicator {
    display: flex;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Marquee de Destaques */
.product-marquee {
    background: linear-gradient(135deg, var(--primary-color) 0%, #010520 100%);
    padding: 1.25rem 0;
    overflow: hidden;
    position: relative;
    margin-top: 0;
}

.product-marquee::before,
.product-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.product-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.product-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--primary-color), transparent);
}

.marquee-wrapper {
    display: flex;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}

.product-marquee:hover .marquee-wrapper {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0 2rem;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
}

.marquee-item i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.marquee-separator {
    width: 2px;
    height: 20px;
    background: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    margin: 0 2rem;
    display: block;
}

/* Responsividade do Marquee */
@media (max-width: 768px) {
    .product-marquee {
        padding: 1rem 0;
    }
    
    .marquee-item {
        font-size: 0.85rem;
    }
    
    .marquee-item i {
        font-size: 0.9rem;
    }
    
    .marquee-separator {
        height: 14px;
        margin: 0 1rem;
    }
    
    .marquee-content {
        padding: 0 1rem;
    }
}

/* Modal de Registro - Estilo Compacto e Arredondado */
.register-modal-dialog {
    max-width: 600px;
}

.register-modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.register-modal-header {
    background: var(--primary-color);
    color: white;
    border-radius: 20px 20px 0 0;
    padding: 1rem 1.5rem;
    border-bottom: none;
}

.register-modal-header .modal-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.register-modal-header .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.register-modal-body {
    padding: 1.5rem;
}

.register-modal-body .form-label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #495057;
}

.register-modal-body .form-control-sm {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.register-modal-body .form-control-sm:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(2, 9, 63, 0.15);
}

.register-modal-body .form-text {
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.register-modal-body .form-check-label {
    font-size: 0.8rem;
    line-height: 1.4;
}

.register-modal-body .btn-primary {
    border-radius: 10px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.register-modal-body .row {
    margin-bottom: 0.75rem;
}

.register-modal-body .mb-3 {
    margin-bottom: 0.75rem !important;
}

.register-modal-body .small {
    font-size: 0.8rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .register-modal-dialog {
        max-width: 95%;
        margin: 1rem;
    }
    
    .register-modal-body {
        padding: 1rem;
    }
    
    .register-modal-body .row .col-md-6 {
        margin-bottom: 0.75rem;
    }
}

/* Sistema de NotificaÃ§Ãµes Customizado - Melhorado */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 420px;
    width: 100%;
}

.notification {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 0;
    display: flex;
    flex-direction: column;
    animation: slideInRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.notification:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.notification-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 16px 16px 0 0;
}

.notification-body {
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    border-radius: 0 0 16px 16px;
    text-align: center;
}

.notification.success {
    color: #065f46;
}

.notification.success .notification-header {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.notification.success .notification-icon {
    color: #ffffff;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.notification.success .notification-title {
    color: #065f46;
}

.notification.success .notification-message {
    color: #6b7280;
}

.notification.error,
.notification.danger {
    color: #991b1b;
}

.notification.error .notification-header,
.notification.danger .notification-header {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}

.notification.error .notification-icon,
.notification.danger .notification-icon {
    color: #ffffff;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.notification.error .notification-title,
.notification.danger .notification-title {
    color: #991b1b;
}

.notification.error .notification-message,
.notification.danger .notification-message {
    color: #6b7280;
}

.notification.warning {
    color: #92400e;
}

.notification.warning .notification-header {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.notification.warning .notification-icon {
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.notification.warning .notification-title {
    color: #92400e;
}

.notification.warning .notification-message {
    color: #6b7280;
}

.notification.info {
    color: #1e3a8a;
}

.notification.info .notification-header {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.notification.info .notification-icon {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    box-shadow: 0 4px 12px rgba(2, 9, 63, 0.3);
}

.notification.info .notification-title {
    color: #1e3a8a;
}

.notification.info .notification-message {
    color: #6b7280;
}

.notification-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.notification:hover .notification-icon {
    transform: scale(1.1) rotate(5deg);
}

.notification-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.notification-message {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

.notification-close {
    background: rgba(0, 0, 0, 0.08);
    border: none;
    color: currentColor;
    opacity: 0.8;
    cursor: pointer;
    padding: 0.4rem;
    line-height: 1;
    transition: all 0.2s ease;
    flex-shrink: 0;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    margin-left: auto;
}

.notification-close:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.15);
    transform: rotate(90deg);
}

.notification.progress {
    position: relative;
}

.notification-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, currentColor 0%, rgba(255, 255, 255, 0.5) 100%);
    opacity: 0.6;
    animation: progressBar linear forwards;
    border-radius: 0 0 16px 16px;
}

@keyframes slideInRight {
    from {
        transform: translateX(120%) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
    to {
        transform: translateX(120%) scale(0.9);
        opacity: 0;
    }
}

@keyframes progressBar {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.notification .notification-icon {
    animation: iconPulse 0.6s ease-out;
}

.notification.hiding {
    animation: slideOutRight 0.3s ease-out forwards;
}

.notification.hiding .notification-icon {
    animation: none;
}

@media (max-width: 576px) {
    .notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .notification {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .notification-icon {
        width: 42px;
        height: 42px;
        font-size: 1.25rem;
    }
    
    .notification-title {
        font-size: 1rem;
    }
    
    .notification-message {
        font-size: 0.85rem;
    }
}

/* BotÃ£o Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 2px 2px 10px rgba(37, 211, 102, 0.6);
    text-decoration: none;
    color: #FFF;
}

.whatsapp-float i {
    font-size: 30px;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 28px;
    }
}

 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  
       S I S T E M A   D E   N O T I F I C A Ã ! Ã " E S   ( T O A S T S )   -   A D I C I O N A D O   V I A   S C R I P T  
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * /  
 . n o t i f i c a t i o n - c o n t a i n e r   {  
         p o s i t i o n :   f i x e d ;  
         t o p :   2 0 p x ;  
         r i g h t :   2 0 p x ;  
         z - i n d e x :   1 0 0 0 0 ;  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   c o l u m n ;  
         g a p :   1 5 p x ;  
         p o i n t e r - e v e n t s :   n o n e ;  
 }  
  
 . n o t i f i c a t i o n   {  
         b a c k g r o u n d :   w h i t e ;  
         w i d t h :   3 8 0 p x ;  
         m a x - w i d t h :   9 0 v w ;  
         b o r d e r - r a d i u s :   8 p x ;  
         b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ;  
         o v e r f l o w :   h i d d e n ;  
         p o s i t i o n :   r e l a t i v e ;  
         p o i n t e r - e v e n t s :   a u t o ;  
         o p a c i t y :   0 ;  
         t r a n s f o r m :   t r a n s l a t e X ( 5 0 p x ) ;  
         a n i m a t i o n :   s l i d e I n N o t i f i c a t i o n   0 . 3 s   e a s e   f o r w a r d s ;  
         b o r d e r - l e f t :   5 p x   s o l i d   v a r ( - - p r i m a r y - c o l o r ) ;  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   c o l u m n ;  
 }  
  
 . n o t i f i c a t i o n . h i d i n g   {  
         a n i m a t i o n :   s l i d e O u t N o t i f i c a t i o n   0 . 3 s   e a s e   f o r w a r d s ;  
 }  
  
 @ k e y f r a m e s   s l i d e I n N o t i f i c a t i o n   {  
         f r o m   {   o p a c i t y :   0 ;   t r a n s f o r m :   t r a n s l a t e X ( 5 0 p x ) ;   }  
         t o   {   o p a c i t y :   1 ;   t r a n s f o r m :   t r a n s l a t e X ( 0 ) ;   }  
 }  
  
 @ k e y f r a m e s   s l i d e O u t N o t i f i c a t i o n   {  
         f r o m   {   o p a c i t y :   1 ;   t r a n s f o r m :   t r a n s l a t e X ( 0 ) ;   }  
         t o   {   o p a c i t y :   0 ;   t r a n s f o r m :   t r a n s l a t e X ( 5 0 p x ) ;   }  
 }  
  
 . n o t i f i c a t i o n - h e a d e r   {  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         p a d d i n g :   1 2 p x   1 6 p x ;  
         b a c k g r o u n d - c o l o r :   # f 8 f 9 f a ;  
         b o r d e r - b o t t o m :   1 p x   s o l i d   # f 1 f 1 f 1 ;  
 }  
  
 . n o t i f i c a t i o n - i c o n   {  
         m a r g i n - r i g h t :   1 2 p x ;  
         f o n t - s i z e :   1 . 2 r e m ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
 }  
  
 . n o t i f i c a t i o n - t i t l e   {  
         f o n t - w e i g h t :   6 0 0 ;  
         f o n t - s i z e :   1 r e m ;  
         c o l o r :   # 3 3 3 ;  
         f l e x - g r o w :   1 ;  
 }  
  
 . n o t i f i c a t i o n - c l o s e   {  
         b a c k g r o u n d :   n o n e ;  
         b o r d e r :   n o n e ;  
         c u r s o r :   p o i n t e r ;  
         c o l o r :   # 9 9 9 ;  
         p a d d i n g :   0 ;  
         t r a n s i t i o n :   c o l o r   0 . 2 s ;  
         f o n t - s i z e :   1 r e m ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         w i d t h :   2 4 p x ;  
         h e i g h t :   2 4 p x ;  
 }  
  
 . n o t i f i c a t i o n - c l o s e : h o v e r   {  
         c o l o r :   # 3 3 3 ;  
 }  
  
 . n o t i f i c a t i o n - b o d y   {  
         p a d d i n g :   1 6 p x ;  
         f o n t - s i z e :   0 . 9 5 r e m ;  
         c o l o r :   # 6 6 6 ;  
         l i n e - h e i g h t :   1 . 5 ;  
 }  
  
 / *   T i p o s   d e   N o t i f i c a Ã § Ã £ o   * /  
 . n o t i f i c a t i o n . s u c c e s s   {   b o r d e r - l e f t - c o l o r :   v a r ( - - s u c c e s s - c o l o r ) ;   }  
 . n o t i f i c a t i o n . s u c c e s s   . n o t i f i c a t i o n - i c o n   {   c o l o r :   v a r ( - - s u c c e s s - c o l o r ) ;   }  
 . n o t i f i c a t i o n . s u c c e s s   . n o t i f i c a t i o n - p r o g r e s s - b a r   {   b a c k g r o u n d - c o l o r :   v a r ( - - s u c c e s s - c o l o r ) ;   }  
  
 . n o t i f i c a t i o n . e r r o r ,    
 . n o t i f i c a t i o n . d a n g e r   {   b o r d e r - l e f t - c o l o r :   # d c 3 5 4 5 ;   }  
 . n o t i f i c a t i o n . e r r o r   . n o t i f i c a t i o n - i c o n ,    
 . n o t i f i c a t i o n . d a n g e r   . n o t i f i c a t i o n - i c o n   {   c o l o r :   # d c 3 5 4 5 ;   }  
 . n o t i f i c a t i o n . e r r o r   . n o t i f i c a t i o n - p r o g r e s s - b a r ,    
 . n o t i f i c a t i o n . d a n g e r   . n o t i f i c a t i o n - p r o g r e s s - b a r   {   b a c k g r o u n d - c o l o r :   # d c 3 5 4 5 ;   }  
  
 . n o t i f i c a t i o n . w a r n i n g   {   b o r d e r - l e f t - c o l o r :   # f f c 1 0 7 ;   }  
 . n o t i f i c a t i o n . w a r n i n g   . n o t i f i c a t i o n - i c o n   {   c o l o r :   # f f c 1 0 7 ;   }  
 . n o t i f i c a t i o n . w a r n i n g   . n o t i f i c a t i o n - p r o g r e s s - b a r   {   b a c k g r o u n d - c o l o r :   # f f c 1 0 7 ;   }  
  
 . n o t i f i c a t i o n . i n f o   {   b o r d e r - l e f t - c o l o r :   # 1 7 a 2 b 8 ;   }  
 . n o t i f i c a t i o n . i n f o   . n o t i f i c a t i o n - i c o n   {   c o l o r :   # 1 7 a 2 b 8 ;   }  
 . n o t i f i c a t i o n . i n f o   . n o t i f i c a t i o n - p r o g r e s s - b a r   {   b a c k g r o u n d - c o l o r :   # 1 7 a 2 b 8 ;   }  
  
 / *   B a r r a   d e   P r o g r e s s o   * /  
 . n o t i f i c a t i o n - p r o g r e s s - b a r   {  
         p o s i t i o n :   a b s o l u t e ;  
         b o t t o m :   0 ;  
         l e f t :   0 ;  
         h e i g h t :   3 p x ;  
         w i d t h :   1 0 0 % ;  
         b a c k g r o u n d - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ;  
         t r a n s f o r m - o r i g i n :   l e f t ;  
         - w e b k i t - t r a n s f o r m - o r i g i n :   l e f t ;   / *   S a f a r i   s u p p o r t   * /  
         / *   A n i m a t i o n   n a m e   m a t c h e s   J S   u s a g e   v i a   s t y l e   * /  
         / *   B u t   J S   s e t s   a n i m a t i o n - d u r a t i o n ,   w e   n e e d   a n i m a t i o n - n a m e   * /  
         a n i m a t i o n - n a m e :   n o t i f i c a t i o n P r o g r e s s ;  
         a n i m a t i o n - t i m i n g - f u n c t i o n :   l i n e a r ;  
         a n i m a t i o n - f i l l - m o d e :   f o r w a r d s ;  
 }  
  
 @ k e y f r a m e s   n o t i f i c a t i o n P r o g r e s s   {  
         f r o m   {   t r a n s f o r m :   s c a l e X ( 1 ) ;   }  
         t o   {   t r a n s f o r m :   s c a l e X ( 0 ) ;   }  
 }  
 