/*
Theme Name: Magalu Ads Theme
Theme URI: https://www.magazineluiza.com.br
Author: Time Novos Negócios - LuizaLabs
Author URI: https://www.magazineluiza.com.br
Description: Tema one-page personalizado para Magalu Ads, baseado em layout fornecido.
Version: 1.0
Text Domain: magalu-ads-theme
*/

/* Global Font Family */
body, html {
    font-family: 'Magalu Textos Rounded', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
}

/* =================================================================
   ESTILOS PARA CASES - BASEADO NO case1.css ORIGINAL
================================================================= */

/* Hero Section */
.case-hero-section {
    background: url('assets/images/asset_1.png') no-repeat center center;
    background-size: cover;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.case-hero-section .container {
    position: relative;
    z-index: 2;
}

.case-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.case-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #ffffff !important;
    position: relative;
    z-index: 2;
}

.case-hero-subtitle {
    color: #ffffff !important;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

.case-hero-image {
    text-align: center;
}

.case-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* =================================================================
   RAINBOW FRAME - MOLDURA ARCO-ÍRIS SOBREPOSTA - FORMS
================================================================= */
.contact-image {
    position: relative;
    border-radius: 16px;
}

.rainbow-frame {
    position: absolute;
    top: revert-layer;
    left: 0;
    right: 0;
    bottom: 0;
    border: 8px solid transparent;
    border-radius: 16px;
    height: 100px;
    width: 200px;
    transform: translateY(30%) translateX(-30%);
    background: 
        linear-gradient(45deg,
            #FBE53B, #FF4F01 17%, #FF14B3 35%, #8000FF 55%, #00C1FF 80%, #17F036 100%
        ) border-box;
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}


@media (max-width: 768px) {
    .case-hero-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .case-hero-section {
        padding: 100px 0 60px;
    }
}

/* Case Content Section */
.case-content-section {
    background-color: #fff;
}

.case-section {
    margin-bottom: 3rem;
}

.case-section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #626262;
    margin-bottom: 1.5rem;
}

.case-section-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

.case-section-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

/* Solution Item */
.solution-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.solution-bullet {
    color: #626262;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.solution-item strong {
    color: #626262;
    font-weight: 600;
}

/* Case Content Layout Variations */
.case-content-layout {
    /* Default: side-by-side layout */
}

.case-content-layout.layout-stacked .case-content-text {
    width: 100%;
}

.case-content-layout.layout-stacked .case-content-image {
    width: 100%;
    margin-top: 3rem;
    text-align: center;
}

/* Side Image (asset_2) */
.case-mobile-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: stretch;
    flex-direction: column;
}

.case-mobile-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
}

/* Bottom Image (asset_3) */
.case-bottom-image {
    position: relative;
    text-align: center;
    margin-top: 2rem;
    padding-bottom: 3rem;
}

.case-bottom-image img {
    max-width: 70%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.case-image-caption {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Impact Section */
.impact-section {
    margin-bottom: 3rem;
}

/* Impact Cards Container */
.impact-cards-container, .case-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

/* Impact Cards */
.impact-card, .case-result-item {
    text-align: center;
    padding: 2rem 1rem;
    background: transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Impact Additional Text Section */
.impact-additional-text {
    margin-top: 3rem;
}

.impact-text-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.impact-text-item {
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
}

.impact-text-item h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0086FF;
    margin-bottom: 1rem;
}

.impact-text-item p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.impact-card:hover, .case-result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.impact-number, .case-result-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0086FF;
    margin-bottom: 1rem;
    line-height: 1;
}

.impact-description, .case-result-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #f8f9fa;
}

.contact-image {
    border-radius: 12px;
    width: 100%;
    height: auto;
}

.contact-form-content {
    padding: 2rem 0;
}

.contact-form-content .section-title {
    color: var(--primary-color);
}

.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #0086FF;
    box-shadow: 0 0 0 0.2rem rgba(0, 134, 255, 0.25);
}

/* CTA Button */
.btn-lg, .case-cta-button {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

.case-cta-button {
    background: #0086FF;
    border: none;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.case-cta-button:hover {
    background: #0066cc;
    text-decoration: none;
    color: white;
}

/* Produtos List - Estilo customizado para WordPress */
.case-produtos-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.case-produtos-list li {
    background: linear-gradient(90deg, #0086FF, #00AFFF);
    color: white;
    padding: 0.8rem 1.5rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    font-weight: 500;
    position: relative;
}

.case-produtos-list li::before {
    content: '✓';
    margin-right: 0.5rem;
    font-weight: bold;
}

/* Estilos para conteúdo WordPress/Gutenberg */
.case-content-text .wp-block-heading,
.case-wordpress-content .wp-block-heading {
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    color: #626262 !important;
    margin-bottom: 1.5rem !important;
    margin-top: 2rem !important;
}

.case-content-text .wp-block-heading:first-child,
.case-wordpress-content .wp-block-heading:first-child {
    margin-top: 0 !important;
}

.case-content-text p,
.case-wordpress-content p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: #666 !important;
    margin-bottom: 1rem !important;
}

.case-content-text .wp-block-list,
.case-wordpress-content .wp-block-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 1rem 0 !important;
}

.case-content-text .wp-block-list li,
.case-wordpress-content .wp-block-list li {
    background: linear-gradient(90deg, #0086FF, #00AFFF) !important;
    color: white !important;
    padding: 0.8rem 1.5rem !important;
    margin-bottom: 0.5rem !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    position: relative !important;
}

.case-content-text .wp-block-list li::before,
.case-wordpress-content .wp-block-list li::before {
    content: '✓' !important;
    margin-right: 0.5rem !important;
    font-weight: bold !important;
}

.case-content-text .wp-block-columns,
.case-wordpress-content .wp-block-columns {
    margin-bottom: 2rem !important;
}

/* Estilos específicos para números de resultados */
.case-content-text .wp-block-columns .wp-block-heading,
.case-wordpress-content .wp-block-columns .wp-block-heading {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #0086FF !important;
    margin-bottom: 1rem !important;
    line-height: 1 !important;
    text-align: center !important;
    margin-top: 0 !important;
}

.case-content-text .wp-block-columns p,
.case-wordpress-content .wp-block-columns p {
    font-size: 0.9rem !important;
    color: #666 !important;
    line-height: 1.4 !important;
    text-align: center !important;
}

.case-content-text .wp-block-image,
.case-wordpress-content .wp-block-image {
    text-align: center !important;
    margin: 2rem 0 !important;
}

.case-content-text .wp-block-image img,
.case-wordpress-content .wp-block-image img {
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    max-width: 100% !important;
    height: auto !important;
}

.case-content-text .wp-block-buttons,
.case-wordpress-content .wp-block-buttons {
    text-align: center !important;
    margin-top: 3rem !important;
}

.case-content-text .wp-block-button .wp-block-button__link,
.case-wordpress-content .wp-block-button .wp-block-button__link {
    background: #0086FF !important;
    border: none !important;
    color: white !important;
    padding: 15px 40px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
}

.case-content-text .wp-block-button .wp-block-button__link:hover,
.case-wordpress-content .wp-block-button .wp-block-button__link:hover {
    background: #0066cc !important;
    text-decoration: none !important;
    color: white !important;
}

/* Estilos para colunas de impacto/resultados */
.case-content-text .wp-block-columns[style*="flex-basis:25%"] .wp-block-heading,
.case-content-text .wp-block-column[style*="flex-basis:25%"] .wp-block-heading {
    background: transparent !important;
    padding: 2rem 1rem !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
}

.case-content-text .wp-block-columns[style*="flex-basis:25%"]:hover,
.case-content-text .wp-block-column[style*="flex-basis:25%"]:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* CSS adicional com alta especificidade para Gutenberg */
.case-content-section .case-content-text h2.wp-block-heading {
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    color: #626262 !important;
    margin-bottom: 1.5rem !important;
    margin-top: 2rem !important;
}

.case-content-section .case-content-text .wp-block-columns h2.wp-block-heading {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #0086FF !important;
    margin-bottom: 1rem !important;
    line-height: 1 !important;
    text-align: center !important;
    margin-top: 0 !important;
}

.case-content-section .case-content-text ul.wp-block-list li {
    background: linear-gradient(90deg, #0086FF, #00AFFF) !important;
    color: white !important;
    padding: 0.8rem 1.5rem !important;
    margin-bottom: 0.5rem !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    list-style: none !important;
}

.case-content-section .case-content-text ul.wp-block-list li::before {
    content: '✓ ' !important;
    font-weight: bold !important;
}

.case-content-section .case-content-text .wp-block-button a.wp-block-button__link {
    background: #0086FF !important;
    border: none !important;
    color: white !important;
    padding: 15px 40px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    text-decoration: none !important;
}

.case-content-section .case-content-text .wp-block-button a.wp-block-button__link:hover {
    background: #0066cc !important;
    color: white !important;
    text-decoration: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .case-section-title {
        font-size: 1.5rem;
    }
    
    .impact-number, .case-result-number {
        font-size: 2rem;
    }
    
    .impact-card, .case-result-item {
        padding: 1.5rem 1rem;
    }
    
    .impact-cards-container, .case-results-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .impact-text-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .impact-text-item {
        padding: 0;
    }
    
    .impact-text-item h4 {
        font-size: 1.2rem;
    }
    
    .impact-text-item p {
        font-size: 1rem;
    }
    
    .contact-form-content {
        padding: 1rem 0;
    }
    
    .case-mobile-image img {
        max-width: 250px;
    }
    
    /* Mobile: sempre empilhar conteúdo */
    .case-content-layout .case-content-text,
    .case-content-layout .case-content-image {
        width: 100% !important;
    }
    
    .case-content-layout .case-content-image {
        margin-top: 2rem;
    }
        
    .rainbow-frame {
        display: none;
    }
}

@media (max-width: 576px) {
    .case-hero-title {
        font-size: 1.5rem;
    }
    
    .case-section-title {
        font-size: 1.3rem;
    }
    
    .impact-number, .case-result-number {
        font-size: 1.8rem;
    }
    
    .case-bottom-image img {
        max-width: 90%;
    }
    
    .case-bottom-image {
        padding-bottom: 2rem;
    }
}

/* =================================================================
   ESTILOS PARA PÁGINA BLOG
================================================================= */

/* Blog Hero Section */
.blog-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0066cc 100%);
    padding: 100px 0 60px;
    text-align: center;
}

.blog-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.blog-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Tabs */
.filter-tabs-section {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.blog-filter-tabs {
    border: none;
}

.blog-filter-tabs .nav-link {
    background: transparent;
    border: 2px solid transparent;
    color: #666;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    margin: 0 0.25rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.blog-filter-tabs .nav-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.blog-filter-tabs .nav-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Blog Cards */
.blog-posts-section {
    background-color: #fff;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 134, 255, 0.15);
}

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

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    object-position: top;
}

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

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-tag {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-color), #00AFFF);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.4;
    flex-grow: 1;
}

.blog-card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-card-link:hover {
    color: #0066cc;
    text-decoration: none;
}

.blog-card-link i {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-link i {
    transform: translateX(3px);
}

/* Empty State */
.text-center.py-5 h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.text-muted {
    color: #6c757d !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 2rem;
    }
    
    .blog-hero-subtitle {
        font-size: 1rem;
    }
    
    .blog-filter-tabs .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        margin: 0.25rem;
    }
    
    .blog-card-content {
        padding: 1.25rem;
    }
}

/* =================================================================
   RESPONSIVIDADE GERAL
================================================================= */

:root {
    --primary-color: #0086FF;
    --secondary-color: #ff6b35;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --border-color: #e0e0e0;
    --pink-color: #ff1493;
    --purple-color: #8a2be2;
    --warning-color: #ffc107;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Custom Bootstrap overrides */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background-color: #0070d9;
    border-color: #0070d9;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Global button styles for cards */
.btn-sm {
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 6px;
    min-width: 110px;
    height: 32px;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-text-only {
    color: var(--primary-color);
    border: none;
    background: none;
    font-weight: 500;
    padding: 6px 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    min-width: auto;
    height: 32px;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-text-only:hover {
    color: #0070d9;
    text-decoration: none;
    transform: translateY(-2px);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
}

/* Dropdown da navbar do tamanho do conteúdo */
.navbar .dropdown-menu.dropdown-menu-wide{
  min-width: 0;
  width: max-content;
  max-width: 90vw; 
  padding: 12px 0;
}

/* Os wrappers Bootstrap dentro do <ul> não devem forçar 100% */
.navbar .dropdown-menu-wide .container{
  width: auto;
  max-width: none;
  padding: 0 12px;
}

.navbar .dropdown-menu-wide .row{
  --bs-gutter-x: 1rem; 
  margin: 0;
}

.navbar .dropdown-menu-wide .col-md-4{
  flex: 0 0 auto; 
  width: auto;
}

/* Evita quebra de linha nos itens e mantém o menu compacto */
.navbar .dropdown-menu-wide .dropdown-item{
  white-space: nowrap;
}

/* Em telas pequenas, deixe ocupar toda a largura para usabilidade */
@media (max-width: 992px){
  .navbar .dropdown-menu.dropdown-menu-wide{
    width: 100%;
    max-width: none;
  }
  .navbar .dropdown-menu-wide .col-md-4{
    width: 100%;
  }
}

.navbar-brand img {
    height: 32px;
    width: auto;
}

.logo-blue {
    /* Removido filtro que estava causando problemas de visualização */
    height: 32px;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    color: #333 !important;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Dropdown Wide for Solutions */
.dropdown-menu-wide {
    min-width: 600px;
    padding: 20px 0;
}

.dropdown-menu-wide .container {
    max-width: 100%;
}

.dropdown-menu-wide .dropdown-item {
    padding: 8px 15px;
    color: #333;
    font-weight: 400;
}

.dropdown-menu-wide .dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

/* Navbar button styling */
.navbar .btn-primary {
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
}

.navbar-nav {
    align-items: center;
}

/* Text-only button for hero sections (larger) */
.btn-text-hero {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 12px 0;
    border: none;
    background: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-text-hero:hover {
    color: #0070d9;
    text-decoration: none;
    transform: translateX(5px);
}

/* New Solutions Cards */
.solutions-section-home::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 240px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.35);
    left: 100px;
    top: -20px;
}

.solutions-section-home::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 140px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.35);
    right: -20px;
    top: 125px;
}

@media (max-width: 768px) {
    .solutions-section-home::before, .solutions-section-home::after {
        display: none;
    }
}

@media (min-width: 992px) and ( max-width: 1200px) {
    .box-solucao {
        width: 20%;
    }
}

.solutions-section h2.section-title {
    max-width: 600px;
    margin: auto;
}

.new-solution-card {
    padding: 0;
    background: none;
    border: none;
    transition: all 0.3s ease;
}

.new-solution-card:hover {
    transform: translateY(-5px);
}

.solution-tag {
    padding: 0; 
    background: transparent;
    backdrop-filter: none;
}

.solution-tag a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.solution-tag-long {
    width: 188px;
}

.solution-tag a:hover {
    background: rgba(255, 255, 255, 0.28);
    text-decoration: none;
    transform: translateY(-1px);
}

.solution-tag a:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 2px;
}

.solution-title {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0;
}

.solution-tag i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
}

.solution-icon-container {
    margin: 24px 0;
    display: flex;
    justify-content: center;
}

.solution-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.solution-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    padding: 0 10px;
}

/* Solutions button */
.btn-solutions {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    padding: 12px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-solutions:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Best Solutions Section */
.best-solutions-section {
    background: white;
    padding: 80px 0;
}

.section-title-gray {
    color: #626262;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle-gray {
    color: #626262;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.best-solution-item {
    text-align: left;
    padding: 0;
    background: none;
    border: none;
}

.solution-icon-badge {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: none;
}

.solution-badge-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.solution-item-title {
    color: #626262;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.solution-item-description {
    color: #626262;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.solution-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.solution-link:hover {
    color: #0070d9;
    text-decoration: none;
    transform: translateX(5px);
}

.gradient-bar-row {
    height: 40px;
}

.gradient-bar {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.gradient-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Support Section */
.support-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.support-card-new {
    background: #F5F5F5;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 22px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 260px;
    height: auto;
    min-height: 240px;
    margin: 0 6px;
}

.support-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.support-icon-new {
    margin-bottom: 16px;
}

.support-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.support-card-title {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: left;
    line-height: 1.2;
}

.support-card-description {
    color: #626262;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 16px;
    flex-grow: 1;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.support-card-action {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin-top: auto;
    height: 20px;
}

.access-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    cursor: pointer;
    transition: all 0.3s ease;
}

.access-icon:hover {
    transform: translateX(3px);
}

/* Google Ads Partnership Section */
.google-ads-section {
    background: white;
    padding: 40px 0;
    position: relative;
}

.gradient-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.gradient-bg-left {
    width: 120px;
    height: auto;
}

.gradient-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.gradient-bg-right {
    width: 120px;
    height: auto;
}

.google-ads-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0070d9 100%);
    border-radius: 24px;
    padding: 60px 40px;
    position: relative;
    z-index: 2;
    max-width: 2500px;
    margin: 0 auto;
}

.google-ads-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.google-ads-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.btn-google-ads {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-google-ads:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.google-ads-image img {
    border-radius: 16px;
    max-width: 100%;
    height: auto;
}

/* Hero Section */
.hero-section {
    background: #fff;
    padding: 120px 0 20px;
}

.hero-content {
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.hero-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (max-width: 1400px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1;
        margin-bottom: -1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
}

@media (max-width: 1200px) {
    /* .hero-title {
        font-size: 2.5rem;
        line-height: 1;
        margin-bottom: 1rem;
    } */
    
    .hero-subtitle {
        font-size: 1rem;
        /* line-height: 1;
        margin-bottom: -1rem; */
    }
    
    /* .hero-description {
        font-size: 0.9rem;
    } */
    
}

.hero-buttons {
    margin-bottom: 2rem;
}

.hero-image {
    text-align: center;
    padding: 2rem 0;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

/* Solutions Section */
.solutions-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0070d9 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.solution-card {
    background: #F5F5F5;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 16px;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-icon {
    margin-bottom: 1rem;
}

.solution-card h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.solution-card p {
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Best Solutions Section */
.best-solutions-section {
    padding: 80px 0;
    background: #fff;
}

.solution-highlight {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.solution-badge {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.bg-pink {
    background: linear-gradient(135deg, var(--pink-color), #ff69b4);
}

.bg-purple {
    background: linear-gradient(135deg, var(--purple-color), #9370db);
}

.solution-highlight h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.solution-highlight p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: #0070d9;
    text-decoration: none;
}

/* Support Section */
.support-section {
    padding: 80px 0;
}

.support-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.support-icon {
    margin-bottom: 1.5rem;
}

.support-icon i {
    font-size: 2.5rem;
}

.support-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.support-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Google Ads Section - Old definition removed */

.google-ads-content {
    padding: 2rem 0;
}

.google-ads-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.google-ads-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.google-ads-image {
    text-align: center;
}

.google-ads-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #fff;
}

.testimonial-card {
    background: #F5F5F5;
    border: 1px solid #e0e0e0;
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 420px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
}

.partners-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-section img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.blog-section img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    padding: 2rem 0;
}

.contact-content .section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 2.3rem
}

.contact-form {
    margin-top: 2rem;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 15px 20px;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    background-color: #F5F5F5;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

@media (max-width: 1400px) {
    .contact-content .section-title {
        font-size: 2.0rem;
    }
    .contact-content textarea.wpcf7-form-control.wpcf7-textarea.form-control {
        height: 80px;
    }
}

@media (max-width: 1200px) {
    .contact-content .section-title {
        font-size: 1.6rem;
    }
    .contact-content .section-subtitle {
        font-size: 1.0rem;
    }
    .contact-content .contact-form {
        margin-top: 1rem;
    }
    .contact-content .row {
        margin-bottom: -10px;
    }
    .contact-content textarea.wpcf7-form-control.wpcf7-textarea.form-control {
        height: 60px;
    }
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background-color: #F5F5F5;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 134, 255, 0.1);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: #666;
    font-weight: 400;
}

select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required.form-select {
    color: grey;
}

select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required.form-select:valid {
    color: black;
}

select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required.form-select option:first-child {
    color: grey;
}
select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required.form-select option {
    color: black;
}

.contact-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Newsletter Section */
.newsletter-section {
    position: relative;
    background: linear-gradient(135deg, #0086FF 0%, #0070d9 100%);
    padding: 80px 0;
    overflow: hidden;
}

/* Elementos decorativos */
.newsletter-section::before,
.newsletter-section::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.newsletter-section::before {
    left: 100px;
    bottom: -30px;
}

.newsletter-section::after {
    right: 300px;
    top: -80px;
}

/* Quadrados decorativos adicionais */
.newsletter-decoration {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.25);
    pointer-events: none;
    z-index: 1;
}

.newsletter-decoration-left {
    left: -60px;
    top: 30%;
    transform: translateY(-50%);
}

.newsletter-decoration-right {
    right: -20px;
    bottom: 20%;
}

.newsletter-section h2 {
    color: #fff;
    font-weight: 800;
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 10px;
}

.newsletter-section p {
    color: #fff;
}

/* Formulário em pílula */
.newsletter-form .wpcf7-form {
    position: relative;
    max-width: 640px;
    margin: 0 auto 10px auto;
    background: #fff;
    border-radius: 14px;
    border: 4px solid rgba(255, 255, 255, 0.7);
    padding: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.newsletter-form .wpcf7-form > p {
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 52px;
}

.newsletter-form input[type="email"],
.newsletter-form .wpcf7-email {
    width: 100% !important;
    border: none !important;
    outline: none !important;
 
    box-shadow: none !important;
    padding: 14px 120px 14px 16px !important;
    font-size: 1rem;
    color: #333;
    height: 52px;
}

.newsletter-form input::placeholder {
    color: #9aa3af;
}

.newsletter-form input[type="submit"] {
    position: absolute;
    height: 40px;
    padding: 0 16px;
    font-size: 0.85rem;
    background-color: #ff8a2a;
    border: none;
    color: #fff;
    border-radius: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    place-self: center;
    margin-left: 450px;
}

.newsletter-form input[type="submit"]:hover {
    background-color: #f27c18;
    transform: translateY(-1px);
    /* margin-left: 62vh; */
    color: white !important;
}

.wpcf7-spinner {
    visibility: hidden;
    display: inline-block;
    background-color: #23282d;
    opacity: 0.75;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin: 0 24px;
    position: absolute;
}

.newsletter-section .wpcf7 form .wpcf7-response-output {
    position: absolute;
    top: 295px;
    color: white;
}

@media (min-width: 576px) and (max-width: 768px) {
    .newsletter-form input[type="submit"] { margin-left: 400px; }
}

@media (max-width: 576px) {
    .newsletter-section { padding: 60px 0; }
    .newsletter-section::before,
    .newsletter-section::after,
    .newsletter-decoration { 
        display: none; 
    }
    .newsletter-form input[type="email"],
    .newsletter-form .wpcf7-email { padding-right: 110px !important; }
    .newsletter-form input[type="submit"] { height: 36px; padding: 0 14px; font-size: 0.8rem; }
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background-color: #fff !important;
    border-top: 1px solid #e0e0e0;
}

.footer h6 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-size: 1rem;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer ul li a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.footer p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer .contact-info {
    margin-bottom: 1.5rem;
}

.footer .contact-info p {
    margin-bottom: 0.25rem;
    color: #666;
}

.footer-links {
    line-height: 1.8;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom-link {
    color: #666;
    text-decoration: underline;
    transition: color 0.3s ease;
    margin-right: 1rem;
}

.footer-bottom-link:hover {
    color: var(--primary-color);
}

.footer-bottom-link:last-child {
    margin-right: 0;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 0.9rem;
}

.social-links a:hover {
    background-color: #0070d9;
    transform: translateY(-2px);
}

.footer hr {
    border-color: #e0e0e0;
    margin: 2rem 0 1rem;
}

.footer .small {
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .solution-card {
        margin-bottom: 2rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .navbar-nav {
        text-align: center;
        padding-top: 1rem;
    }
    
    .navbar-nav .nav-item {
        margin: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding-top: 80px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-stats .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .solution-card {
        padding: 2rem 1.5rem;
    }
}

/* Suporte: 5 cards na mesma linha em desktop */
@media (min-width: 992px) {
    #suporte .row.justify-content-center {
        /* flex-wrap: nowrap; */
        gap: 0; /* evita estourar a largura total */
    }
    #suporte .row.justify-content-center > .col-auto {
        padding: 0 8px; /* cria espaçamento entre colunas */
    }
    .support-card-new {
        margin: 0; /* previne overflow além dos 20% da coluna */
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent images from disappearing during scroll */
.hero-image img,
.google-ads-image img,
.contact-image img,
.testimonial-avatar {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.form-banner {
    border-radius: 8% !important;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0070d9;
}

/* Suporte: corrigir quebras de layout em cards */
.support-card-new {
    width: 100%;
    max-width: 235px; /* aumenta um pouco o espaço interno sem forçar overflow */
    height: auto; /* deixa crescer conforme conteúdo */
    min-height: 220px; /* mantém altura mínima desejada */
}

/* Grid responsivo para alinhar os cards corretamente */
#suporte .row.justify-content-center {
    gap: 0px;
}

@media (max-width: 768px) {
    .support-card-new {
        max-width: 100%;
    }

    .rainbow-frame {
        display: none;
    }
}

