/*
Theme Name: Black Alares
Description: Tema WordPress para Alares - Provedor de Internet. Landing page moderna com foco em conversão de vendas de planos de internet residencial.
Version: 1.0.0
Author: Alares Team
Text Domain: black-alares
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: business, internet, telecommunications, landing-page, conversion, dark-theme, responsive
*/

/* Custom CSS for Alares Pro Landing Page */

/* Font Face Declarations */
@font-face {
  font-family: "Carbona";
  src: url("./assets/fonts/Carbona-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Carbona";
  src: url("./assets/fonts/Carbona-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Carbona";
  src: url("./assets/fonts/Carbona-Black.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Root Variables - Black Friday Theme */
:root {
  --primary-color: #5a53f7;
  --secondary-color: #0f0952;
  --accent-color: #d5f316; /* Verde neon próximo ao amarelo */
  --text-light: #ffffff;
  --dark-blue: #000000;
  --gradient-bg: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  --dark: #1a1a1a;
  --bg-dark: #000000;
  --bg-dark-secondary: #1a1a1a;
  --bg-dark-tertiary: #2a2a2a;
}

/* Global Styles */
* {
  scroll-behavior: smooth !important;
}

body {
  max-width: 100vw;
}

html {
  scroll-behavior: smooth !important;
}

body {
  font-family: "Carbona", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  font-weight: 400;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

/* Header Styles */
header {
  position: relative;
  z-index: 1000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Carbona", sans-serif;
}

h1 {
  font-weight: 700;
}

h2 {
  font-size: 30px;
  font-weight: 700;
}

h3 {
  font-weight: 700;
}

h4 {
  font-weight: 400;
}

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

@media (max-width: 768px) {
  .p-section {
    padding: 80px 0px;
  }
}

.logo {
  height: 80px;
}

.logo-black {
  margin-top: -70px;
}

@media (min-width: 1024px) {
  .logo-black {
    height: 200px;
    margin-top: -100px;
  }
}
/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  height: 670px;
  margin-top: -140px;
  padding-top: 235px;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 70%); */
  z-index: 1;
}

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

.hero-section h1 {
  font-family: "Carbona", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 36px !important;
}

.hero-section p {
  font-family: "Carbona", sans-serif;
  font-weight: 300;
}

.hero-section .text-success {
  color: var(--accent-color) !important;
}

/* Plans Section */
.plans-section .row {
  display: flex;
  flex-wrap: wrap;
}

.plans-section .col-lg-3,
.plans-section .col-md-6 {
  display: flex;
  align-items: stretch;
}

.plan-card.contrast {
  background: var(--primary-color) !important;
}
.plan-card.blackcontrast {
  background: #0f0952 !important;
}

.plan-card {
  backdrop-filter: blur(10px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-radius: 10px !important;
  padding: 20px 0px;
  border-radius: 0px 0px 50px 0px !important;
  background: var(--bg-dark-tertiary);
  border: 1px solid var(--accent-color);
  width: 100%;
  display: flex;
  flex-direction: column;
}

.plan-card h3,
.plan-card span,
.plan-card p {
  color: var(--text-light);
}
.plan-card.contrast h3,
.plan-card.contrast span,
.plan-card.contrast p {
  color: #fff;
}

.plan-card .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(213, 243, 22, 0.3) !important;
}

.plan-card .cents {
  position: absolute;
  font-size: 16px;
  margin-top: 10px;
}
.plan-card .month {
  font-size: 12px;
  font-weight: 800;
}

.wifi-badge .badge {
  font-size: 0.9rem;
  font-weight: 600;
}

.badge {
  margin-top: -30px;
  display: block;
  width: fit-content;
  border-radius: 0 0 30px 0;
  margin-left: -1px;
  padding: 10px 30px;
  font-size: 14px;
}

.service-icons img {
  width: 35px;
  height: 35px;
  border: 2px solid #fff;
  background-color: #fff;
}

.price .fs-1 {
  font-size: 3rem !important;
  font-weight: 500;
}

/* Benefits Section */
.benefits-section {
  background: var(--bg-dark);
}

.benefit-card {
  transition: transform 0.3s ease;
  border-radius: 10px !important;
  border: 1px solid var(--accent-color) !important;
  background: var(--bg-dark-tertiary) !important;
}

.benefit-card:hover {
  transform: translateY(-5px);
  background: var(--bg-dark-secondary);
}

.benefit-icon .badge {
  font-size: 1.1rem;
  font-weight: 700;
}

.benefit-icon h3 {
  font-weight: 800;
  line-height: 1.1;
}

/* FAQ Section */
.faq-section {
  background: var(--bg-dark-secondary);
}

/* Custom Accordion Styles */
.custom-accordion-button {
  background: var(--dark-blue) !important;
  /* border: 1px solid rgba(255, 255, 255, 0.1) !important; */
  border-radius: 8px !important;
  color: #fff !important;
  padding: 20px 24px !important;
  transition: all 0.3s ease !important;
  position: relative;
  display: flex;
  align-items: center;
}

/* Accordion button styles removed - empty rulesets */

.custom-accordion-button:not(.collapsed) {
  /* background: rgba(213, 241, 22, 0.1) !important; */
  /* border-color: var(--accent-color) !important; */
  color: white !important;
}

/* Remove Bootstrap default arrow */
.custom-accordion-button::after {
  display: none !important;
}

/* Custom accordion icon styles */
.accordion-icon {
  width: 28px;
  height: 28px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  opacity: 1;
}

.accordion-icon:hover {
  transform: scale(1.1);
}

/* Smooth transition when changing icon source */
.accordion-icon {
  animation: fadeInIcon 0.2s ease-in-out;
}

@keyframes fadeInIcon {
  0% {
    opacity: 0.7;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.accordion-item {
  background: transparent !important;
  border: none !important;
  margin-bottom: 12px !important;
}

.accordion-body {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-top: none !important;
  border-radius: 0 0 8px 8px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 24px !important;
  margin-top: -1px;
}

/* Icon styling for FAQ items */
.accordion-button i {
  font-size: 1.1rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) i {
  opacity: 1;
  transform: scale(1.1);
}

/* Accordion animation classes */
.accordion-opening {
  animation: accordionSlideDown 0.4s ease-out;
}

.accordion-closing {
  animation: accordionSlideUp 0.4s ease-in;
}

.accordion-open {
  opacity: 1;
}

/* Accordion animations */
@keyframes accordionSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes accordionSlideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-5px);
  }
}

/* Enhanced focus states for accessibility */
.accordion-button:focus-visible {
  /* outline: 2px solid var(--accent-color); */
  outline-offset: 2px;
}

/* Smooth transitions for all accordion elements */
.accordion-item,
.accordion-button,
.accordion-body {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 0px;
}

.accordion-item a {
  text-decoration: none;
}

.accordion-flush .accordion-item .accordion-button,
.accordion-flush .accordion-item .accordion-button.collapsed {
  border-radius: 0px !important;
  padding: 0px 0 15px 0 !important;
  /* border-bottom: 1px solid #cccccc2e; */
}

/* Accordion loading states */
.accordion-ready {
  animation: fadeInAccordion 0.6s ease-out;
}

.accordion-loaded {
  animation: slideInAccordion 0.5s ease-out backwards;
}

@keyframes fadeInAccordion {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInAccordion {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Additional Plans Section */
.additional-plans-section {
  background: var(--bg-dark-secondary);
}

.additional-plans-section .card {
  transition: transform 0.3s ease;
  border-radius: 0px 0px 50px 0px !important;
  border: 1px solid var(--accent-color) !important;
  background: var(--bg-dark-tertiary) !important;
  color: var(--text-light);
}

.additional-plans-section .card:hover {
  transform: translateY(-5px);
}

/* Buttons */

#planos .btn {
  -webkit-box-shadow: 0px 0px 0px 4px var(--accent-color);
  box-shadow: 0px 0px 0px 4px var(--accent-color);
  border: 3px solid var(--bg-dark-tertiary);
}
#planos .plan-card-contrast .btn {
  -webkit-box-shadow: 0px 0px 0px 4px var(--accent-color);
  box-shadow: 0px 0px 0px 4px var(--accent-color);
  border: 3px solid #5a53f7;
}

@media (max-width: 768px) {
  #planos .container-sm {
    padding: 0px !important;
  }
}

.btn,
.btn-success {
  font-family: "Carbona", sans-serif;
  font-size: 13px !important;
}

.btn-success {
  background: var(--accent-color);
  color: var(--dark);
  border: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  color: var(--dark);
}

.btn-success-white {
  background: #fff;
  color: var(--dark);
  border: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-success-white:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  color: var(--dark);
}

.btn-lg {
  padding: 12px 30px;
  font-size: 1.1rem;
}

/* Text Colors */
.text-success {
  color: var(--accent-color) !important;
}

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

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

/* Background Colors */
.bg-primary {
  background: var(--primary-color) !important;
}

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

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

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

.bg-dark-secondary {
  background: var(--bg-dark-secondary) !important;
}

.bg-dark {
  background: var(--dark-blue) !important;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section .lead {
    font-size: 1.1rem;
  }

  .plan-card {
    margin-bottom: 2rem;
    min-width: 280px;
  }

  .price .fs-1 {
    font-size: 2.5rem !important;
  }

  .additional-plans-section .card-body {
    flex-direction: column;
    text-align: center;
  }

  .additional-plans-section .ms-4 {
    margin: 1rem 0 0 0 !important;
  }

  /* Scroll horizontal para planos no mobile */
  .plans-section .row.g-4 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 1rem;
    padding-bottom: 1rem;
    margin: 0;
  }

  .plans-section .col-lg-4 {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
  }

  /* Remover scrollbar */
  .plans-section .row.g-4::-webkit-scrollbar {
    display: none;
  }

  .plans-section .row.g-4 {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  /* Adicionar padding nas laterais para melhor visualização */
  .plans-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section {
  /* background: url(hero-bg-3.png) no-repeat center center; */
  background: url("./assets/images/hero-bg-3.png") no-repeat center center;

  background-size: cover;
  background-attachment: fixed;
  /* image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    -webkit-backface-visibility: hidden; */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

@media (max-width: 768px) {
  .hero-section {
    background: url("./assets/images/hero-bg-mobile-3.png") no-repeat center center;
    background-size: cover;
    background-attachment: scroll;
    /* image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        image-rendering: pixelated;
        -webkit-backface-visibility: hidden; */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    height: 810px;
    padding-top: 195px;
  }

  .hero-section h1 {
    font-size: 30px !important;
  }

  .hero-section p,
  .hero-section h2 {
    font-size: 24px !important;
  }
}

.hero-section h1,
.hero-section p,
.hero-section .btn {
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-section h1 {
  font-size: 36px !important;
}

.hero-section p,
.hero-section h2 {
  animation-delay: 0.2s;
  font-size: 24px;
  font-weight: 500;
}

.hero-section .btn {
  animation-delay: 0.4s;
}

/* Utility Classes */
.rounded-4 {
  border-radius: 1rem !important;
}

.shadow-lg {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
}

/* Text muted override for dark theme */
.text-muted {
  color: #cccccc !important;
}

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

::-webkit-scrollbar-track {
  background: var(--dark-blue);
}

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

::-webkit-scrollbar-thumb:hover {
  background: #16a34a;
}

/* Hero Custom Image Styles */
.hero-card-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-custom-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.hero-custom-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(213, 243, 22, 0.3);
}

@media (max-width: 768px) {
  .hero-custom-image {
    max-width: 90%;
    margin: 0 auto;
  }
  
  .hero-card-image {
    text-align: center;
  }
}

/* Countdown Styles */
.countdown-section {
  background: var(--bg-dark);
  border-bottom: 2px solid var(--accent-color);
}

.countdown-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.countdown-message {
  font-family: "Carbona", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.countdown-item {
  background: var(--bg-dark-tertiary);
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  padding: 20px 15px;
  min-width: 120px;
  text-align: center;
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  animation: countdownPulse 2s ease-in-out infinite;
}

.countdown-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(213, 243, 22, 0.4);
  border-color: var(--accent-color);
}

.countdown-value {
  font-family: "Carbona", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 10px rgba(213, 243, 22, 0.3);
}

.countdown-label {
  font-family: "Carbona", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Countdown Animations */
@keyframes countdownPulse {
  0%, 100% {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 rgba(213, 243, 22, 0.4);
  }
  50% {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(213, 243, 22, 0.2);
  }
}

@keyframes countdownFlash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0.7;
  }
}

.countdown-flash {
  animation: countdownFlash 0.5s ease-in-out;
}

/* Responsive Countdown */
@media (max-width: 768px) {
  .countdown-timer {
    gap: 15px;
  }
  
  .countdown-item {
    min-width: 100px;
    padding: 15px 10px;
  }
  
  .countdown-value {
    font-size: 2rem;
  }
  
  .countdown-label {
    font-size: 0.8rem;
  }
  
  .countdown-message {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .countdown-timer {
    gap: 10px;
  }
  
  .countdown-item {
    min-width: 80px;
    padding: 12px 8px;
  }
  
  .countdown-value {
    font-size: 1.8rem;
  }
  
  .countdown-label {
    font-size: 0.7rem;
  }
}

/* Countdown State Classes */
.countdown-loaded {
  animation: fadeInScale 0.6s ease-out;
}

.countdown-urgent .countdown-item {
  border-color: #ff9500;
  animation: countdownUrgent 1s ease-in-out infinite;
}

.countdown-urgent .countdown-value {
  color: #ff9500;
  text-shadow: 0 0 15px rgba(255, 149, 0, 0.5);
}

.countdown-critical .countdown-item {
  border-color: #ff3333;
  animation: countdownCritical 0.5s ease-in-out infinite;
}

.countdown-critical .countdown-value {
  color: #ff3333;
  text-shadow: 0 0 20px rgba(255, 51, 51, 0.7);
}

.countdown-expired .countdown-item {
  border-color: #666;
  animation: none;
}

.countdown-expired .countdown-value {
  color: #666;
  text-shadow: none;
}

/* Countdown Urgency Animations */
@keyframes countdownUrgent {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 149, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 149, 0, 0.6);
  }
}

@keyframes countdownCritical {
  0%, 100% {
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 51, 51, 0.8);
  }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.card h3 {
  font-size: 32px;
}

.text-underline {
  text-decoration: underline !important;
}

@media (max-width: 768px) {
  .container,
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    width: 95%;
  }
}

/* Service Logos Styles */
.service-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.service-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #d5f316;
  transition: transform 0.2s ease;
}

.service-logo:hover {
  transform: scale(1.1);
}

.service-logo img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .service-logo {
    width: 28px;
    height: 28px;
  }

  .service-logo img {
    width: 16px;
    height: 16px;
  }

  /* Layout mobile para cards de planos - efeito de continuidade */
  .plans-section .row {
    overflow-x: auto;
    flex-wrap: nowrap !important;
    padding: 0 15px;
    margin: 0 -15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .plans-section .col-lg-3,
  .plans-section .col-md-6 {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: start;
    padding-right: 15px;
  }

  .plans-section .col-lg-3:first-child,
  .plans-section .col-md-6:first-child {
    padding-left: 15px;
  }

  .plans-section .col-lg-3:last-child,
  .plans-section .col-md-6:last-child {
    padding-right: 30px;
  }
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--bg-dark);
}

.testimonial-card {
  background: var(--bg-dark-tertiary);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--accent-color);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: var(--text-light);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(213, 243, 22, 0.3);
}

/* Benefit Icons - Imagens personalizadas */
.benefit-icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefit-icon img {
  max-width: 64px;
  height: auto;
}

/* Contact Icons - Imagens personalizadas */
.contact-icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-icon img {
  max-height: 50px;
  width: auto;
}

.contact-icon svg {
  color: var(--primary-color);
  font-size: 55px;
}

/* Avatar Circle - Depoimentos */
.avatar-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  margin-right: 15px; /* Espaçamento correto entre foto e nome */
  flex-shrink: 0;
}

/* Depoimentos - Layout melhorado */
.testimonial-card .d-flex {
  align-items: center;
  gap: 15px; /* Espaçamento adequado */
}

.testimonial-card .d-flex > div:last-child {
  flex: 1;
}

/* Footer Styles */
.social-links a {
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--accent-color) !important;
}

.security-badges .badge-item {
  transition: transform 0.3s ease;
}

.security-badges .badge-item:hover {
  transform: translateX(5px);
}

.row-cards {
  h3 {
    font-size: 1.25rem;
    font-weight: 700;
  }
}
.title-col-footer {
  font-size: 1.25rem;
  font-weight: 500;
}

/* WordPress specific styles */
.alignleft {
  float: left;
  margin-right: 1rem;
}

.alignright {
  float: right;
  margin-left: 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.875rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.5rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* Contact form styles */
.wpcf7-form {
  background: var(--bg-dark-tertiary);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid var(--accent-color);
}

.wpcf7-form input,
.wpcf7-form textarea {
  background: var(--bg-dark-secondary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  border-radius: 5px;
  padding: 0.75rem;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(213, 243, 22, 0.25);
  outline: none;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Widget areas */
.widget {
  background: var(--bg-dark-tertiary);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--accent-color);
  margin-bottom: 2rem;
}

.widget h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.widget ul {
  list-style: none;
  padding: 0;
}

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

.widget ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.widget ul li a:hover {
  color: var(--accent-color);
}

/* Comments */
.comment-list {
  list-style: none;
  padding: 0;
}

.comment {
  background: var(--bg-dark-tertiary);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-author {
  color: var(--accent-color);
  font-weight: 700;
}

.comment-meta {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.comment-content {
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.page-numbers {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  background: var(--bg-dark-tertiary);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid var(--accent-color);
  transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
  background: var(--accent-color);
  color: var(--dark);
}

/* Search form */
.search-form {
  display: flex;
  margin: 1rem 0;
}

.search-form input[type="search"] {
  flex: 1;
  background: var(--bg-dark-secondary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  padding: 0.75rem;
  border-radius: 5px 0 0 5px;
}

.search-form input[type="submit"] {
  background: var(--accent-color);
  color: var(--dark);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-weight: 700;
}

.search-form input[type="submit"]:hover {
  background: #b8d400;
}