@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@200..800&display=swap&family=Mozilla+Text:wght@200..700&family=Saira:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap');

/* ===== CSS Variables - OmniView Identity ===== */
:root {
    /* Colors - OmniView Neon Palette */
    /* === Cores Primárias === */
    --primary-blue: #6a9aff;
    --neon-cyan: #00e5ff;
    --neon-purple: #7b2fff;
    --neon-pink: #d400ff;
    --neon-magenta: #b300ff;
    --neon-green: #19c919;

    /* === Gradientes Principais === */
    --gradient-blue: linear-gradient(135deg, #001040, #001f80);
    --gradient-purple: linear-gradient(180deg, #200f60, #001040);
    --gradient-gold: linear-gradient(135deg, #ddaa60, #ddbb50);
    --gradient-card: linear-gradient(145deg, #020617, #0a1f5a 60%, #0e3aff);

    /* === Cores Neutras e de Fundo === */
    --dark-bg: #020609;
    --mid-bg: #081038;
    --light-bg: #0d0d0e;
    --card-bg: #0b1635;
    --border-color: #1b2a64;
    
    /* === Tipografia === */
    --text-light: #b5c9ff;
    --text-dark: #020617;
    --text-muted: #7b8baf;

    /* === Acentos e Feedback === */
    --success: #00ff99;
    --warning: #ffd500;
    --error: #aa0022;

    /* === Sombras e Efeitos === */
    --shadow-glow-blue: 0 0 20px rgba(0, 153, 255, 0.4);
    --shadow-glow-cyan: 0 0 20px rgba(0, 253, 255, 0.4);
    --shadow-glow-purple: 0 0 20px rgba(155, 50, 255, 0.4);
    --shadow-glow-gold: 50 50 20px rgba(240, 240, 85, 0.4);
    --shadow-glow-green: 50 50 20px rgba(85, 240, 85, 0.4);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 6px 12px rgba(0, 0, 0, 0.9);
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 100px;

	/* Border Radius */
    --radius-sm: 2px;
    --radius-md: 2px;
    --radius-lg: 2px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);

	--font-title: 'Oxanium', serif;
	--font-text: 'Space Grotesk', sans-serif;
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-light);
    background-color: var(--light-bg);
    line-height: 1.6;
	margin: 0;
	font-family: var(--font-title);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== Header ===== */
.header {
    background: rgba(0, 0, 0, 0.9);
    /* border-bottom: 2px solid var(--border-color); */
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    align-items: center;
    /* Usa space-between para empurrar os extremos (Logo Product e Logo Brand) 
       para as bordas e centralizar o Menu Nav entre eles. */
    justify-content: space-between; 
    padding: var(--spacing-sm) 0;
}

.logo-icon {
    font-size: 32px;
}

.logo-brand,
.logo-product {
    max-height: 50px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-light);
    max-width: 160px;
}

.nav {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    position: static; 
    max-height: none;
    padding: 0;
    transition: none;
    margin-right: 300px;
    margin-left: 150px;
}

.nav a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}

.nav a:hover {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

.menu-toggle {
    display: none;
    padding: 5% 3%;
    margin-right: 0;
    background-color: black;
    font-size: 1.5rem;
    border: none;
}

/* Estilos básicos para os logos */
.logo-product-container img,
.logo-brand-container img {
    max-height: 50px; /* Mantém um tamanho consistente para as imagens */
}

/* Remove a largura forçada para que os logos fiquem nos cantos */
.logo-product-container,
.logo-brand-container {
    flex-shrink: 0; /* Impede que os logos encolham */
}

/* ===== Buttons ===== */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: var(--font-title);
}

.btn-center {
	background: linear-gradient(150deg, var(--neon-cyan), var(--neon-purple));
	border: 1px solid var(--neon-cyan);
	box-shadow: 0 0 15px var(--neon-purple);
	color: white !important;
}

.btn-center:hover {
	background: var(--gradient-card);
	color: linear-gradient(150deg, var(--neon-cyan), var(--neon-purple));
	border: 1px solid var(--neon-cyan);
	transform: translateY(-1px);
}

.btn-center,
.btn-secondary {
	margin-top: auto;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--neon-magenta));
    color: white;
    border: 1px solid var(--primary-blue);
}

.btn-primary:hover {
	transform: translateY(-1px);
    box-shadow: rgba(0, 102, 255, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-blue), var(--neon-magenta));
    color: white;
    border: 1px solid var(--neon-purple);
	box-shadow: 0 0 15px var(--neon-magenta);
}

.btn-secondary:hover {
	background: var(--gradient-card);
	transform: translateY(-2px);
}

.btn-map {
	margin: 1% 0 2% 0;
	min-width: 25%;
	font-size: 19px;
	background: linear-gradient(135deg, var(--error));
	box-shadow: 0 0 15px var(--neon-purple);
}

.btn-map:hover {
	background: var(--gradient-card);
	box-shadow: 0 0 15px var(--neon-purple);
}

.map-subtitle {
	border-radius: var(--radius-sm);
	padding: 5%;
}

.map-subtitle p {
	font-size: 1.5rem;
	margin-top: 2%;
}

.map-subtitle .btn {
	font-size: 2rem;
	background-color: var(--error);
	min-width: 50%;
}

/* ===== Hero Section ===== */
.hero, .map {
    background: linear-gradient(135deg, rgba(0, 40, 80, 0.1), rgba(0, 50, 90, 0.1));
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
}

.hero h1,
.map h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-blue), var(--neon-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Map Section ===== */

.map iframe {
	min-width: 100%;
	height: 640px;
	justify-content: center;
}


/* ===== Pricing Section ===== */
.pricing {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--light-bg);
}

.billing-toggle {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.toggle-label input[type="radio"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-blue);
}

.toggle-label:has(input:checked) {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 255, 255, 0.1));
    border-color: var(--primary-blue);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.pricing-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    position: relative;
    transition: all 0.3s ease;
	min-height: 33%;
	display: flex;
	flex-direction: column;
	width: 105%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.pricing-card.popular {
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-glow-blue);
    transform: scale(1.05);
	min-height: 42%;
}

.pricing-card.popular:hover {
    border-color: var(--neon-green);
    box-shadow: var(--shadow-glow-cyan);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(251, 208, 81);
    color: black;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
	padding-top: 10px;
}

.card-header {
    margin-bottom: var(--spacing-md);
}

.card-header h3 {
	color: var(--primary-blue);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.card-subtitle {
    color: var(--text-light);
    font-size: 14px;
}

.card-price {
	margin-bottom: var(--spacing-md);
}

.price-value {
    font-size: 34px;
    font-weight: 800;
    color: var(--success);
}

.price-period {
    color: var(--text-light);
    font-size: 14px;
    margin-left: var(--spacing-xs);
}

.card-economy {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
	background-color: rgb(251, 208, 81);
	box-shadow: 0 0 15px var(--warning);
}

.economy-text {
    font-size: 13px;
    color: var(--text-dark);
    margin: 0;
	white-space: pre-line;
}

.features-list {
	margin-top: auto;
	list-style: none;
    margin-bottom: var(--spacing-lg);
}

.features-list li {
	padding: 8px 0;
    color: var(--text-light);
    font-size: 14px;
}

.features-list li:before {
	content: "✓ ";
    color: var(--neon-green);
    font-weight: 700;
    margin-right: 8px;
}

.pricing-card .btn {
    width: 100%;
}

.pricing {
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--light-bg);
}

/* 2. Estiliza a imagem de fundo */
.pricing-bg-img {
    position: absolute;
    margin-top: -20%;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

.billing-toggle,
.pricing-cards,
.payments {
    position: relative;
    z-index: 1;
}

/* ===== Enterprise Section ===== */
.enterprise {
    background: linear-gradient(135deg, var(--card-bg), var(--light-bg));
	border-color: #000;
    padding: var(--spacing-xl) var(--spacing-md);
    color: var(--neon-cyan);
}

.enterprise-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.enterprise-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.enterprise-content p {
    font-size: 18px;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.enterprise .btn {
    color: white;
    background: var(--gradient-gold);
    border-color:  rgba(240, 240, 85, 0.4);;
}

.enterprise .btn:hover {
    background: #efefef;
    color: var(--primary-blue);
}

/* ===== FAQ Section ===== */
.faq {
  padding: var(--spacing-xl) var(--spacing-lg);
}

.faq h2 {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  color: var(--text-light);
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-blue);
}

.faq-icon {
  font-size: 18px;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  margin-bottom: 12px;
}

.faq-answer p {
  color: white;
  font-size: 15px;
  line-height: 1.6;
  padding-bottom: 12px;
}


/* ===== Footer ===== */
.footer {
    background: var(--gradient-purple);
    color: white;
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    background: var(--border-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--neon-cyan);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .header-content {
        /* Garante que Logo Product, Menu Toggle e Logo Brand (se visível) fiquem em linha */
        flex-direction: row; 
        justify-content: space-between; /* Espaça logo e hamburger */
        align-items: center;
    }

    /* === Ocultar Logo da Marca (Overnine) no Mobile === */
    .logo-brand-container {
        display: none; /* Esconde a logo da Overnine */
    }

    .nav {
        /* Configurações de layout Mobile (Hambuger) */
        flex-direction: column;
        gap: var(--spacing-md);
        width: 100%;
        
        /* Posicionamento e Esconder (Essencial para o Menu Hamburguer) */
        position: absolute;
        top: 100%; /* Abaixo do header-content */
        left: 0;
        
        /* Visual */
        background-color: #090909;
        padding: 0;
        opacity: .95;
        font-size: 1.1em;
        
        /* Esconder e Animação */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.1s ease-in-out, padding 0.2s ease-in-out;
        z-index: 50; 
    }

    .nav a {
        display: block;
        text-align: center;
        padding: 20px 100%;
        border-bottom: none;
    }

    .nav.active {
        max-height: 300px; /* Valor suficiente para todos os links */
        padding: var(--spacing-lg) 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .billing-toggle {
        flex-direction: column;
    }

    .faq h2 {
        font-size: 28px;
    }

    .enterprise-content h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero h1 {
        font-size: 24px;
    }

    .subtitle {
        font-size: 16px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .price-value {
        font-size: 28px;
    }
}

.schedule {
    min-width: 90%;
    font-size: 1.2em !important;
    background: linear-gradient(135deg, var(--primary-blue), var(--neon-magenta)) !important;
	box-shadow: 0 0 15px var(--neon-purple);
	text-decoration: none;
}

.schedule:hover {
	color: white !important;
	background: var(--gradient-card) !important	;
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-card {
    animation: fadeIn 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.header {
    animation: slideInLeft 0.6s ease-out;
}

.billing-toggle {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-title);
	font-size: 16px;
  }
  
  .toggle-container {
	position: relative;
	width: 52px;
	height: 28px;
	background-color: #0053b3;
	border-radius: 50px;
	cursor: pointer;
	transition: background-color 0.3s;
  }
  
  .toggle-ball {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 22px;
	height: 22px;
	background-color: white;
	border-radius: 50%;
	transition: left 0.3s;
  }
  
  input[type="radio"] {
	display: none;
  }
  
  .billing-toggle span {
	cursor: pointer;
  }
  
  #annual:checked ~ .toggle-container {
	background-color: #0053b3;
  }
  
  #annual:checked ~ .toggle-container .toggle-ball {
	left: 27px;
  }
  
  .text-gray {
	color: #777;
	font-size: 13px;
  }
  .text-blue {
	color: var(--text-light);
	font-size: 13px;
  }

  section {
    padding: 80px 20px;
    text-align: center;
  }

  h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 60px;
  }

  .security-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto 80px;
  }

  @media (min-width: 768px) {
    .security-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .security-item {
    text-align: center;
  }

  .security-icon {
    font-size: 50px;
    margin-bottom: 15px;
  }

  .icon-green {
    color: var(--success);
  }

  .icon-blue {
    color: var(--primary-blue);
  }

  .icon-yellow {
    color: var(--warning);
  }

  h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
  }

  p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .payments h3 {
	color: var(--text-light);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 10px;
  }

  .payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	margin-bottom: 2em;
  }

  .payment-method {
    background-color: white;
    color: #111827;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    transition: transform 0.2s;
  }

  .payment-method:hover {
    transform: scale(1.05);
  }

  .payment-methods img {
	max-height: 50px;
  }
  
  .divider {
    border-top: 1px solid #102030;
    margin: 0 auto;
    max-width: 900px;
  }

  .trust {
    margin-top: 60px;
  }

  .trust p {
    margin: 10px 0;
  }

  .trust .highlight {
    color: var(--success);
    font-weight: 700;
  }

  .trust strong {
    font-size: 1.5rem;
  }

/* MODAL */
.modal-termos {
  display: none;
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  margin-top: 50px;

  /* Backdrop: preto com 75% */
  background: rgba(0, 0, 0, 0.75);

  backdrop-filter: blur(4px);

  padding: 40px;
  overflow-y: auto;
  z-index: 9999;
}

/* Conteúdo da Modal */
.modal-termos-content {
  background: var(--card-bg);
  background-image: var(--gradient-card);

  max-width: 520px;
  margin: auto;
  padding: 32px;

  border-radius: 5px;
  border: 1px solid var(--border-color);

  box-shadow: 
      var(--shadow-lg),
      0 0 25px rgba(0, 153, 255, 0.25);

  color: var(--text-light);
  font-family: "Inter", sans-serif;
  animation: fadeIn 0.25s ease-out;
}

/* Títulos da modal */
.modal-termos-content h2 {
  color: var(--neon-cyan);
  margin-top: 0;
  margin-bottom: 18px;
  text-shadow: var(--shadow-glow-cyan);
}

/* Lista de links */
.modal-termos-content ul {
  padding-left: 18px;
}

.modal-termos-content a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: 0.2s;
}

.modal-termos-content a:hover {
  color: var(--neon-cyan);
  text-shadow: var(--shadow-glow-cyan);
}

/* Ações */
.modal-termos-actions {
  text-align: right;
  margin-top: 25px;
}

/* Botões */
.modal-termos-actions button {
  padding: 10px 20px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  background: var(--mid-bg);
  color: var(--text-light);
  cursor: pointer;

  transition: 0.2s ease-out;
}

.modal-termos-actions button:hover {
  background: var(--neon-purple);
  color: #fff;
  box-shadow: var(--shadow-glow-purple);
}

#btn-continuar {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-blue), var(--neon-magenta));
}

/* Botão desabilitado */
#btn-continuar[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  background: var(--mid-bg);
  border-color: #333;
}

.check-termos {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--text-muted);
}

.check-termos input[type="checkbox"] {
  transform: scale(1.2);
}

/* Animação */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FEATURES */
.sec-recursos-css .lista-recursos {
  display: flex;
  flex-wrap: wrap; 
  list-style: none;
  padding: 0;
  margin: 2% 0 2% 0;
  gap: 20px; 
}

.sec-recursos-css .item-recurso {
  width: calc(25% - 15px); 
  min-width: 250px; 
  box-sizing: border-box; 
}


.sec-recursos-css .recurso-conteudo {
  display: flex; 
  align-items: center; 
  padding: 15px;
  border-radius: 8px;
  height: 100%; 
}

.sec-recursos-css .recurso-conteudo i {
  font-size: 42px;
  margin-right: 15px; 
  color: #ddd; 
  color: var(--neon-cyan);
  text-shadow: var(--shadow-glow-cyan);
  text-shadow: var(--shadow-glow-purple);
  flex-shrink: 0; 
}

.sec-recursos-css .recurso-conteudo p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-light);
}


@media (max-width: 992px) {
  .sec-recursos-css .item-recurso {
    width: calc(50% - 10px); 
    min-width: 0;
  }
}


@media (max-width: 576px) {
  .sec-recursos-css .item-recurso {
    width: 100%; 
  }
}