/* 
 * FinanzArgentina - Estilos principales
 * Versión: 1.0
 * Año: 2024
 */

/* ===== VARIABLES ===== */
:root {
  /* Colores principales */
  --primary-color: #2b6cb0;
  --primary-dark: #1e4e8c;
  --primary-light: #4299e1;
  --secondary-color: #e53e3e;
  --secondary-dark: #c53030;
  
  /* Colores neutrales */
  --dark: #2d3748;
  --dark-light: #4a5568;
  --gray: #a0aec0;
  --gray-light: #e2e8f0;
  --light: #f7fafc;
  
  /* Tamaños de texto */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  
  /* Espaciado */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Bordes */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  
  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
  
  /* Transiciones */
  --transition-fast: 0.2s all ease;
  --transition-normal: 0.3s all ease;
  --transition-slow: 0.5s all ease;
  
  /* Layout */
  --container-width: 1200px;
  --header-height: 80px;
}

/* ===== RESET Y ESTILOS BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--text-md);
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style-type: none;
}

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

button, .btn {
  cursor: pointer;
}

/* ===== UTILIDADES ===== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-xl);
  text-align: center;
  color: var(--dark);
  position: relative;
}

.section-title:after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin: var(--space-sm) auto 0;
}

.center {
  text-align: center;
}

/* ===== BOTONES ===== */
.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  text-align: center;
  transition: var(--transition-normal);
}

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

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

.btn-submit {
  width: 100%;
  padding: var(--space-md) var(--space-xl);
  font-size: var(--text-lg);
}

/* ===== HEADER ===== */
header {
  background-color: white;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: var(--space-xl);
}

nav ul li a {
  color: var(--dark);
  font-weight: 500;
  position: relative;
  padding: var(--space-xs) 0;
}

nav ul li a:hover, nav ul li a.active {
  color: var(--primary-color);
}

nav ul li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -2px;
  left: 0;
  transition: var(--transition-normal);
}

nav ul li a:hover:after, nav ul li a.active:after {
  width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
  background-color: var(--primary-color);
  background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: var(--space-3xl) 0;
  text-align: center;
}

.hero h1 {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.hero p {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn {
  background-color: white;
  color: var(--primary-color);
  padding: var(--space-md) var(--space-xl);
  font-size: var(--text-lg);
}

.hero .btn:hover {
  background-color: var(--gray-light);
  transform: translateY(-2px);
}

/* ===== FEATURED POSTS ===== */
.featured-posts {
  padding: var(--space-3xl) 0;
}

.featured-posts h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.post-card {
  background-color: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-content {
  padding: var(--space-lg);
}

.post-content h3 {
  margin-bottom: var(--space-sm);
  font-size: var(--text-xl);
  transition: var(--transition-fast);
}

.post-content h3:hover {
  color: var(--primary-color);
}

.post-content h3 a {
  color: inherit;
}

.post-content p {
  color: var(--dark-light);
  margin-bottom: var(--space-md);
}

.read-more {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.read-more:after {
  content: "→";
  margin-left: var(--space-xs);
  transition: var(--transition-fast);
}

.read-more:hover:after {
  margin-left: var(--space-sm);
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background-color: var(--gray-light);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.newsletter h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
}

.newsletter p {
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

#newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

#newsletter-form input {
  flex: 1;
  padding: var(--space-md);
  border: 2px solid transparent;
  border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
  font-size: var(--text-md);
}

#newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-light);
}

#newsletter-form button {
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--dark);
  color: white;
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-logo img {
  height: 50px;
  width: auto;
  margin-bottom: var(--space-md);
}

.footer-logo p {
  color: var(--gray);
  font-size: var(--text-sm);
}

.footer-links h3, .footer-legal h3, .footer-contact h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: white;
}

.footer-links ul li, .footer-legal ul li {
  margin-bottom: var(--space-sm);
}

.footer-links ul li a, .footer-legal ul li a {
  color: var(--gray);
  transition: var(--transition-fast);
}

.footer-links ul li a:hover, .footer-legal ul li a:hover {
  color: white;
}

.footer-contact p {
  color: var(--gray);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
}

.footer-contact p i {
  margin-right: var(--space-sm);
  color: var(--primary-light);
}

.social-icons {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition-normal);
  color: white;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  text-align: center;
  color: var(--gray);
  font-size: var(--text-sm);
}

/* ===== BLOG PAGE ===== */
.page-header {
  background-color: var(--primary-color);
  background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: var(--space-2xl) 0;
  text-align: center;
}

.page-header h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-sm);
}

.blog-content {
  padding: var(--space-3xl) 0;
}

.post-meta {
  color: var(--gray);
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
}

/* ===== SINGLE POST ===== */
.post-full {
  padding: var(--space-2xl) 0;
}

.post-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.post-header h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
}

.post-date, .post-author {
  display: inline-block;
  margin: 0 var(--space-sm);
  color: var(--gray);
}

.post-featured-image {
  margin-bottom: var(--space-xl);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.post-featured-image img {
  width: 100%;
  height: auto;
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
}

.post-content h2 {
  font-size: var(--text-2xl);
  margin: var(--space-xl) 0 var(--space-md);
  color: var(--dark);
}

.post-content h3 {
  font-size: var(--text-xl);
  margin: var(--space-xl) 0 var(--space-md);
  color: var(--dark-light);
}

.post-content p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.post-content ul, .post-content ol {
  margin: var(--space-md) 0 var(--space-md) var(--space-xl);
}

.post-content ul li, .post-content ol li {
  margin-bottom: var(--space-sm);
}

.post-content strong {
  font-weight: 600;
  color: var(--dark);
}

.post-tags {
  margin: var(--space-xl) 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.post-tags span {
  font-weight: 600;
  margin-right: var(--space-md);
}

.post-tags a {
  display: inline-block;
  background-color: var(--gray-light);
  color: var(--dark-light);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--border-radius-sm);
  margin: var(--space-xs);
  font-size: var(--text-sm);
  transition: var(--transition-fast);
}

.post-tags a:hover {
  background-color: var(--primary-light);
  color: white;
}

.post-share {
  margin: var(--space-xl) 0;
  display: flex;
  align-items: center;
}

.post-share span {
  font-weight: 600;
  margin-right: var(--space-md);
}

.post-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: var(--space-sm);
  color: white;
  transition: var(--transition-normal);
}

.share-facebook {
  background-color: #3b5998;
}

.share-twitter {
  background-color: #1da1f2;
}

.share-linkedin {
  background-color: #0077b5;
}

.share-whatsapp {
  background-color: #25d366;
}

.post-share a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.related-posts {
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--gray-light);
}

.related-posts h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-xl);
  text-align: center;
}

/* ===== ABOUT PAGE ===== */
.about-intro {
  padding: var(--space-3xl) 0;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-text h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
  color: var(--dark);
}

.about-text p {
  margin-bottom: var(--space-lg);
}

.values-list {
  margin-left: var(--space-lg);
}

.values-list li {
  margin-bottom: var(--space-sm);
  position: relative;
}

.values-list li:before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: -20px;
}

.about-image {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.team-section {
  padding: var(--space-3xl) 0;
  background-color: var(--gray-light);
}

.team-section h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-sm);
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--dark-light);
  margin-bottom: var(--space-xl);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.team-member {
  background-color: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  text-align: center;
  padding-bottom: var(--space-md);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-fast);
}

.team-member:hover img {
  transform: scale(1.05);
}

.team-member h3 {
  margin: var(--space-md) 0 var(--space-xs);
  font-size: var(--text-lg);
}

.team-member p {
  color: var(--dark-light);
  padding: 0 var(--space-md);
  margin-bottom: var(--space-sm);
  font-size: var(--text-sm);
}

.team-member p:nth-child(3) {
  font-weight: 600;
  color: var(--primary-color);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--gray-light);
  border-radius: 50%;
  transition: var(--transition-normal);
  color: var(--dark);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.achievements-section {
  padding: var(--space-3xl) 0;
}

.achievements-section h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.achievement {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.achievement-icon {
  background-color: var(--primary-light);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  flex-shrink: 0;
}

.achievement-content h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.achievement-content p {
  color: var(--dark-light);
  font-size: var(--text-sm);
}

.testimonials {
  padding: var(--space-3xl) 0;
  background-color: var(--primary-color);
  color: white;
}

.testimonials h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.testimonial {
  background-color: rgba(255, 255, 255, 0.1);
  padding: var(--space-xl);
  border-radius: var(--border-radius-md);
  position: relative;
}

.testimonial:before {
  content: """;
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 60px;
  color: rgba(255, 255, 255, 0.2);
  font-family: Georgia, serif;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.testimonial-author h4 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.testimonial-author p {
  font-size: var(--text-sm);
  opacity: 0.8;
}

.cta-section {
  padding: var(--space-3xl) 0;
  text-align: center;
  background-color: var(--gray-light);
}

.cta-section h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: var(--space-3xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-2xl);
}

.contact-info h2, .contact-form-container h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-xl);
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.info-item i {
  background-color: var(--primary-light);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-md);
  flex-shrink: 0;
}

.info-item h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.info-item p {
  color: var(--dark-light);
}

.contact-form {
  background-color: white;
  border-radius: var(--border-radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--gray);
  border-radius: var(--border-radius-md);
  font-size: var(--text-md);
  transition: var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(43, 108, 176, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-right: var(--space-sm);
  margin-top: 5px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
  font-size: var(--text-sm);
}

.map-section {
  padding: var(--space-3xl) 0;
  background-color: var(--gray-light);
}

.map-section h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.map-container {
  height: 400px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-section {
  padding: var(--space-3xl) 0;
}

.faq-section h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.faq-item {
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--gray-light);
  padding-bottom: var(--space-md);
}

.faq-question {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question:after {
  content: "+";
  font-size: var(--text-xl);
  color: var(--primary-color);
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-answer {
  color: var(--dark-light);
  padding-left: var(--space-md);
  border-left: 3px solid var(--primary-light);
  margin-top: var(--space-md);
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--border-radius-md);
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: var(--text-xl);
  font-weight: bold;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition-fast);
}

.close-modal:hover {
  color: var(--dark);
}

.modal h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
  color: var(--primary-color);
}

.modal p {
  margin-bottom: var(--space-xl);
}

.modal-btn {
  min-width: 150px;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

.cookie-content {
  padding: var(--space-lg);
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cookie-content p {
  margin-bottom: var(--space-md);
  text-align: center;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.btn-accept {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  transition: var(--transition-fast);
}

.btn-settings {
  background-color: white;
  color: var(--dark);
  border: 1px solid var(--gray);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  transition: var(--transition-fast);
}

.btn-reject {
  background-color: var(--gray-light);
  color: var(--dark);
  border: none;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  transition: var(--transition-fast);
}

.btn-accept:hover {
  background-color: var(--primary-dark);
}

.btn-settings:hover {
  background-color: var(--gray-light);
}

.btn-reject:hover {
  background-color: var(--gray);
  color: white;
}

.cookie-more-info {
  font-size: var(--text-sm);
  color: var(--dark-light);
}

.cookie-more-info a {
  text-decoration: underline;
}

/* ===== INTERESTING FACTS SECTION ===== */
.interesting-facts {
  padding: var(--space-2xl) 0;
  background-color: var(--gray-light);
}

.interesting-facts h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-xl);
  text-align: center;
  color: var(--dark);
  transition: var(--transition-normal);
}

.interesting-facts h2:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.facts-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.fact {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-normal);
}

.fact:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.fact i {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: var(--primary-light);
  color: white;
  border-radius: 50%;
  margin-bottom: var(--space-md);
  font-size: var(--text-xl);
}

.fact h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: var(--dark);
  transition: var(--transition-fast);
}

.fact h3:hover {
  color: var(--primary-color);
}

.fact p {
  color: var(--dark-light);
  font-size: var(--text-md);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  :root {
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.75rem;
    --text-2xl: 1.5rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
    margin-bottom: var(--space-xl);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    margin-bottom: var(--space-xl);
  }
}

@media (max-width: 768px) {
  header {
    height: auto;
    padding: var(--space-md) 0;
  }
  
  header .container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: var(--space-md);
  }
  
  nav ul {
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 var(--space-md);
  }
  
  .hero h1 {
    font-size: var(--text-4xl);
  }
  
  .hero p {
    font-size: var(--text-lg);
  }
  
  #newsletter-form {
    flex-direction: column;
  }
  
  #newsletter-form input {
    border-radius: var(--border-radius-md);
    margin-bottom: var(--space-sm);
  }
  
  #newsletter-form button {
    border-radius: var(--border-radius-md);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo img {
    margin: 0 auto var(--space-md);
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .post-header h1 {
    font-size: var(--text-3xl);
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}

@media (max-width: 576px) {
  :root {
    --space-3xl: 3rem;
    --space-2xl: 2rem;
  }
  
  .hero h1 {
    font-size: var(--text-3xl);
  }
  
  nav ul li {
    margin: 0 var(--space-sm);
  }
  
  .post-share {
    flex-wrap: wrap;
  }
  
  .post-share span {
    width: 100%;
    margin-bottom: var(--space-sm);
  }
  
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
  
  .facts-container {
    grid-template-columns: 1fr;
  }
}

/* ===== ICON FONTS ===== */
.icon-chart:before {
  content: "📈";
}

.icon-money:before {
  content: "💰";
}

.icon-globe:before {
  content: "🌎";
}

.icon-location:before {
  content: "📍";
}

.icon-phone:before {
  content: "📞";
}

.icon-envelope:before {
  content: "✉️";
}

.icon-clock:before {
  content: "🕒";
}

.icon-award:before {
  content: "🏆";
}

.icon-users:before {
  content: "👥";
}

.icon-chart-line:before {
  content: "📊";
}
