/*
Theme Name: A,S,S LDA Security
Theme URI: https://account4web.com.com
Author: Account4Web Inc
Author URI: https://account4web.com
Description: Professional security systems website theme for A,S,S LDA with multi-language support (English & Portuguese). Features modern design, responsive layout, and comprehensive security solutions showcase.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ass-lda-security
Tags: business, security, responsive, multilingual, modern, tailwind

This theme, like WordPress, is licensed under the GPL.
*/

/* ==========================================
   CSS VARIABLES - Design System
   ========================================== */
:root {
  /* Primary Colors */
  --primary-color: #c32026;
  --primary-hover: #a01b20;

  /* Secondary Colors */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Spacing */
  --container-max-width: 1280px;
  --section-padding: 4rem 1rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
}

/* ==========================================
   GLOBAL RESET & BASE STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-base);
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-secondary {
  background-color: transparent;
  color: var(--gray-900);
  padding: 1rem 2rem;
  border: 2px solid #d1d5db;
  border-radius: var(--radius-md);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.section-padding {
  padding: var(--section-padding);
}

/* ==========================================
   WORDPRESS SPECIFIC STYLES
   ========================================== */
.alignleft {
  float: left;
  margin-right: 1.5rem;
}

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

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

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

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

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ==========================================
   RESPONSIVE UTILITIES
   ========================================== */
@media (max-width: 768px) {
  :root {
    --section-padding: 2rem 1rem;
  }
}

/* ==========================================
   TECHNICAL SPECIFICATIONS STYLING
   ========================================== */

/* Main wrapper for tech specs */
.tech-specs-items-description-wrap {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow-y: auto;
  max-height: 600px;
  padding: 0;
}

/* Individual specification sections */
.tech-specs-items-description {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #e5e7eb;
}

.tech-specs-items-description:last-child {
  border-bottom: none;
}

/* Specification list items */
.tech-specs-items-description-list {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 0.2s ease;
}

.tech-specs-items-description-list:hover {
  background-color: #f9fafb;
}

.tech-specs-items-description-list:last-child {
  border-bottom: none;
}

/* Section heading style */
.tech-specs-items-description__title--heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  padding: 1rem 0 0.5rem 0;
  display: block;
  grid-column: 1 / -1;
  border-bottom: 2px solid #c32026;
  margin-bottom: 0.5rem;
}

/* Specification title (left column) */
.tech-specs-items-description__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #4b5563;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}

/* Specification details (right column) */
.tech-specs-items-description__title-details {
  font-size: 0.875rem;
  color: #1f2937;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
}

/* Paragraph spacing within details */
.tech-specs-items-description__title-details .mb-p {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.tech-specs-items-description__title-details .mb-p:last-child {
  margin-bottom: 0;
}

/* Action/content spans */
.at-action {
  display: inline-block;
  word-break: break-word;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tech-specs-items-description-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
  }

  .tech-specs-items-description__title {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
  }

  .tech-specs-items-description__title-details {
    padding-left: 0;
  }

  .tech-specs-items-description-wrap {
    max-height: 500px;
  }
}

/* Scrollbar styling */
.tech-specs-items-description-wrap::-webkit-scrollbar {
  width: 8px;
}

.tech-specs-items-description-wrap::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 4px;
}

.tech-specs-items-description-wrap::-webkit-scrollbar-thumb {
  background: #c32026;
  border-radius: 4px;
}

.tech-specs-items-description-wrap::-webkit-scrollbar-thumb:hover {
  background: #a01b20;
}

/* Optional: Left sidebar navigation styling (if you add it later) */
.tech-specs-sidebar {
  background: #f9fafb;
  border-right: 1px solid #e5e7eb;
  padding: 1rem;
  min-width: 180px;
}

.tech-specs-sidebar-item {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.25rem;
  cursor: pointer;
  border-radius: 4px;
  font-size: 0.875rem;
  color: #4b5563;
  transition: all 0.2s ease;
}

.tech-specs-sidebar-item:hover {
  background: #fff;
  color: #c32026;
}

.tech-specs-sidebar-item.active {
  background: #c32026;
  color: #fff;
  font-weight: 600;
}

/* ==========================================
   DIVI BUILDER ELEMENTS STYLING
   ========================================== */

/* Divi Sections */
.et_pb_section {
  padding: 2rem 0;
  margin: 0;
}

/* Divi Rows */
.et_pb_row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 100%;
}

.et_pb_with_border {
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

/* Divi Columns */
.et_pb_column {
  display: flex;
  flex-direction: column;
}

.et_pb_column_1_3 {
  flex: 1;
  min-width: 0;
}

.et_pb_column_4_4 {
  grid-column: 1 / -1;
}

/* Divi Images */
.et_pb_image {
  margin-bottom: 1.5rem;
}

.et_pb_image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.et_pb_image_wrap {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

/* Divi Blurb Module */
.et_pb_blurb {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  height: 100%;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.et_pb_blurb:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  border-color: #c32026;
}

.et_pb_blurb_content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Blurb Icon/Image */
.et_pb_main_blurb_image {
  margin-bottom: 1rem;
  text-align: left;
  min-height: 0;
}

.et-pb-icon {
  font-size: 2rem;
  color: #c32026;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

/* If icon is empty, add a bullet point */
.et-pb-icon:empty::before {
  content: "●";
  color: #c32026;
  font-size: 1.5rem;
}

/* Blurb Container */
.et_pb_blurb_container {
  flex: 1;
}

/* Blurb Heading */
.et_pb_module_header {
  font-size: 1.125rem;
  font-weight: 700;
  color: #c32026;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.et_pb_module_header span {
  color: inherit;
}

/* Blurb Description */
.et_pb_blurb_description {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
}

.et_pb_blurb_description p {
  margin-bottom: 0.75rem;
}

.et_pb_blurb_description p:last-child {
  margin-bottom: 0;
}

.et_pb_blurb_description strong {
  color: #1f2937;
  font-weight: 600;
}

/* Divi Button */
.et_pb_button_module_wrapper {
  text-align: center;
  margin: 2rem 0;
}

.et_pb_button {
  display: inline-block;
  background-color: #c32026;
  color: #fff !important;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.et_pb_button:hover {
  background-color: #a01b20;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(195, 32, 38, 0.3);
}

/* Button Alignment */
.et_pb_button_alignment_center {
  text-align: center;
}

.et_pb_button_alignment_left {
  text-align: left;
}

.et_pb_button_alignment_right {
  text-align: right;
}

/* Responsive Design for Divi Elements */
@media (max-width: 768px) {
  .et_pb_row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .et_pb_section {
    padding: 1rem 0;
  }

  .et_pb_blurb {
    padding: 1.25rem;
  }

  .et_pb_module_header {
    font-size: 1rem;
  }

  .et_pb_blurb_description {
    font-size: 0.8125rem;
  }

  .et_pb_button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }
}

/* Animation Classes */
.et-animated {
  animation: fadeInUp 0.6s ease-out;
}

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

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

/* Waypoint Animation */
.et-waypoint {
  opacity: 0;
}

.et-waypoint.et-animated {
  opacity: 1;
}

/* ==========================================
   PRODUCT DESCRIPTION LIST STYLING
   ========================================== */

/* Product Description List Container */
.product_description_item-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Individual Product Description Items */
.product_description_item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
  background: transparent;
  transition: all 0.3s ease;
  line-height: 1.8;
  font-size: 1rem;
  color: #4b5563;
  position: relative;
}

.product_description_item:hover {
  color: #1f2937;
  transform: translateX(4px);
}

.product_description_item:hover .prodcuct_description_dot {
  transform: scale(1.15);
  box-shadow: 0 0 0 4px rgba(195, 32, 38, 0.1);
}

/* Custom Bullet Point/Dot - Enhanced Design */
.prodcuct_description_dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: linear-gradient(135deg, #c32026 0%, #e63946 100%);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(195, 32, 38, 0.25);
}

/* Checkmark inside the dot */
.prodcuct_description_dot::before {
  content: "✓";
  color: #ffffff;
  font-weight: bold;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Alternative: Dot style without checkmark */
.product_description_item.dot-style .prodcuct_description_dot::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
}

/* Premium gradient variant */
.product_description_item-list.premium .prodcuct_description_dot {
  background: linear-gradient(135deg, #c32026 0%, #ff4757 50%, #c32026 100%);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Icon style variant - for special features */
.product_description_item.featured .prodcuct_description_dot {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: linear-gradient(135deg, #c32026 0%, #ff6b6b 100%);
  box-shadow: 0 4px 12px rgba(195, 32, 38, 0.35);
}

.product_description_item.featured .prodcuct_description_dot::before {
  font-size: 0.875rem;
}

.product_description_item.featured {
  font-weight: 500;
  color: #1f2937;
}

/* Bordered variant */
.product_description_item-list.bordered .product_description_item {
  padding: 0.875rem 1rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.product_description_item-list.bordered .product_description_item:hover {
  border-color: #c32026;
  background: #fef2f2;
  box-shadow: 0 2px 8px rgba(195, 32, 38, 0.1);
}

/* Card style variant */
.product_description_item-list.cards .product_description_item {
  padding: 1rem 1.25rem;
  background: linear-gradient(to right, #ffffff 0%, #fafafa 100%);
  border-left: 4px solid #c32026;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.product_description_item-list.cards .product_description_item:hover {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-left-width: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product_description_item {
    font-size: 0.9375rem;
    gap: 0.875rem;
    line-height: 1.7;
  }

  .product_description_item-list {
    gap: 0.875rem;
    margin: 1rem 0;
  }

  .prodcuct_description_dot {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }

  .prodcuct_description_dot::before {
    font-size: 0.7rem;
  }

  .product_description_item.featured .prodcuct_description_dot {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }

  .product_description_item-list.bordered .product_description_item,
  .product_description_item-list.cards .product_description_item {
    padding: 0.75rem 0.875rem;
  }
}

