
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fffbed;
  color: #333;
}
.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, #fff5c3, #ffeebb);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #b38800;
}
.hero h1 span {
  color: #f4a700;
}
.cta-button {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #f4a700;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 3rem 1rem;
  gap: 2rem;
}
.content.reverse {
  flex-direction: row-reverse;
}
.profile {
  width: 300px;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.text {
  max-width: 600px;
}
.cta {
  text-align: center;
  padding: 3rem 1rem;
  background: #fff2cc;
}
footer {
  text-align: center;
  padding: 1rem;
  background: #fff8e1;
  font-size: 0.9rem;
}

/* * =============================================
 * Base & Variables
 * =============================================
 */
:root {
  --primary-bg: #fef5e3;
  --secondary-bg: #fdf6ec;
  --tertiary-bg: #fff9f0;
  --dark-bg: #1e1e1e;
  --text-dark: #4a3900;
  --text-light: #5c4c00;
  --text-on-dark: #eaeaea;
  --accent-color: #f2c94c;
  --accent-hover: #e6b800;
  --accent-light: #f9d71c;
  --white-color: #ffffff;
  --shadow-color: rgba(0,0,0,0.08);
  --shadow-hover: rgba(0,0,0,0.15);
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --glow-color: rgba(242, 201, 76, 0.3);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-family);
  background: linear-gradient(135deg, #f9eef8 0%, #fef5e3 50%, #fff9f0 100%);
  background-attachment: fixed;
  color: var(--text-light);
  overflow-x: hidden;
}

/* Animated background particles */
.bg-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  background: radial-gradient(circle, rgba(242, 201, 76, 0.6) 0%, rgba(242, 201, 76, 0.1) 70%, transparent 100%);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

.particle:nth-child(1) {
  width: 3px;
  height: 3px;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.particle:nth-child(2) {
  width: 5px;
  height: 5px;
  left: 80%;
  animation-delay: 5s;
  animation-duration: 30s;
}

.particle:nth-child(3) {
  width: 2px;
  height: 2px;
  left: 40%;
  animation-delay: 10s;
  animation-duration: 20s;
}

.particle:nth-child(4) {
  width: 4px;
  height: 4px;
  left: 70%;
  animation-delay: 15s;
  animation-duration: 35s;
}

.particle:nth-child(5) {
  width: 3px;
  height: 3px;
  left: 20%;
  animation-delay: 8s;
  animation-duration: 28s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: scale(1);
  }
  90% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    transform: translateY(-10vh) scale(0);
    opacity: 0;
  }
}

/* * =============================================
 * Typography & Links with Enhanced Animations
 * =============================================
 */
h1, h2 {
  color: var(--text-dark);
  text-align: center;
  margin: 0 0 1rem;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-dark), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.3s;
}

h2 {
  font-size: 1.8rem;
  animation-delay: 0.5s;
}

p, li, strong, div {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.7s;
}

p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 1rem;
}

strong {
  color: var(--text-dark);
  font-weight: 600;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-hover);
  text-shadow: 0 0 8px var(--glow-color);
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* * =============================================
 * Enhanced Section Styling
 * =============================================
 */
.page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 1;
}

.section {
  background: rgba(254, 245, 227, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 
    0 15px 35px var(--shadow-color),
    0 5px 15px rgba(242, 201, 76, 0.1);
  padding: 2.5rem 1.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(242, 201, 76, 0.2);
  transition: all 0.5s ease;
}

.section:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 25px 50px var(--shadow-hover),
    0 10px 25px rgba(242, 201, 76, 0.2);
}

/* 
.section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(242, 201, 76, 0.1), transparent);
  animation: rotate 20s linear infinite;
  z-index: 0;
}
*/

.section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(242, 201, 76, 0.05) 0%, transparent 70%);
  z-index: 1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.section-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-intro .image-container {
  flex-shrink: 0;
  margin-bottom: 2rem;
  opacity: 0;
  animation: slideInLeft 1s ease-out forwards;
  animation-delay: 0.2s;
}

.section-intro img {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
  box-shadow: 
    0 15px 30px var(--shadow-color),
    0 0 0 3px rgba(242, 201, 76, 0.3);
  transition: all 0.5s ease;
}

.section-intro img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 
    0 25px 50px var(--shadow-hover),
    0 0 0 5px rgba(242, 201, 76, 0.5);
}

.title-underline {
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
  margin: 0 auto 1.5rem;
  border-radius: 10px;
  position: relative;
  animation: expandWidth 1s ease-out forwards;
  animation-delay: 0.8s;
  width: 0;
}

.title-underline::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -5px;
  right: -5px;
  bottom: -2px;
  background: linear-gradient(90deg, transparent, var(--glow-color), transparent);
  border-radius: 10px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes expandWidth {
  to {
    width: 80px;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

/* * =============================================
 * Enhanced Components
 * =============================================
 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 
    0 8px 20px var(--shadow-color),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 1.2s;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 15px 30px var(--shadow-hover),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  color: var(--text-dark);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent-color));
  box-shadow: 
    0 15px 30px var(--shadow-hover),
    0 0 20px var(--glow-color);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--text-dark), #3a2d00);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #3a2d00, #2d2200);
  color: var(--white-color);
  border-color: var(--accent-hover);
  box-shadow: 
    0 15px 30px var(--shadow-hover),
    0 0 20px rgba(242, 201, 76, 0.4);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #1DAA51);
  color: var(--white-color);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #1DAA51, #128C41);
  box-shadow: 
    0 15px 30px var(--shadow-hover),
    0 0 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
}

.button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 450px;
  margin: 1.5rem auto;
}

.feature-list li {
  font-weight: 500;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  opacity: 0;
  animation: slideInRight 0.6s ease-out forwards;
}

.feature-list li:nth-child(1) { animation-delay: 1s; }
.feature-list li:nth-child(2) { animation-delay: 1.1s; }
.feature-list li:nth-child(3) { animation-delay: 1.2s; }
.feature-list li:nth-child(4) { animation-delay: 1.3s; }

.feature-list li:hover {
  background: rgba(242, 201, 76, 0.1);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(242, 201, 76, 0.2);
}

.content-grid {
  display: grid;
  gap: 1.5rem;
  text-align: left;
  margin-top: 2rem;
}

.content-grid > div {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  border: 1px solid rgba(242, 201, 76, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.content-grid > div:nth-child(odd) { animation-delay: 0.9s; }
.content-grid > div:nth-child(even) { animation-delay: 1.1s; }

.content-grid > div:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 25px rgba(242, 201, 76, 0.2);
}

.styled-list {
  list-style-type: none;
  padding-left: 0;
  text-align: left;
}

.styled-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.styled-list li::before {
  content: '✨';
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

/* List styling fixes */
.list-disc {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

/* * =============================================
 * Enhanced Footer & Dark Sections
 * =============================================
 */
.bg-light {
  background: rgba(253, 246, 236, 0.9);
}

.bg-dark {
  background: linear-gradient(135deg, #1e1e1e 0%, #3a3a3a 100%);
  color: var(--text-on-dark);
}

.text-white {
  color: var(--text-on-dark);
}

.text-white p {
  color: var(--text-on-dark);
}

.text-center {
  text-align: center;
}

.underline {
  text-decoration: underline;
}

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


body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fffbed;
  color: #333;
}
.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, #fff5c3, #ffeebb);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #b38800;
}
.hero h1 span {
  color: #f4a700;
}
.cta-button {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #f4a700;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 3rem 1rem;
  gap: 2rem;
}
.content.reverse {
  flex-direction: row-reverse;
}
.profile {
  width: 300px;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.text {
  max-width: 600px;
}
.cta {
  text-align: center;
  padding: 3rem 1rem;
  background: #fff2cc;
}
footer {
  text-align: center;
  padding: 1rem;
  background: #fff8e1;
  font-size: 0.9rem;
}

/* * =============================================
 * Base & Variables
 * =============================================
 */
:root {
  --primary-bg: #fef5e3;
  --secondary-bg: #fdf6ec;
  --tertiary-bg: #fff9f0;
  --dark-bg: #1e1e1e;
  --text-dark: #4a3900;
  --text-light: #5c4c00;
  --text-on-dark: #eaeaea;
  --accent-color: #f2c94c;
  --accent-hover: #e6b800;
  --accent-light: #f9d71c;
  --white-color: #ffffff;
  --shadow-color: rgba(0,0,0,0.08);
  --shadow-hover: rgba(0,0,0,0.15);
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --glow-color: rgba(242, 201, 76, 0.3);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-family);
  background: linear-gradient(135deg, #f9eef8 0%, #fef5e3 50%, #fff9f0 100%);
  background-attachment: fixed;
  color: var(--text-light);
  overflow-x: hidden;
}

/* Animated background particles */
.bg-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  background: radial-gradient(circle, rgba(242, 201, 76, 0.6) 0%, rgba(242, 201, 76, 0.1) 70%, transparent 100%);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

.particle:nth-child(1) {
  width: 3px;
  height: 3px;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.particle:nth-child(2) {
  width: 5px;
  height: 5px;
  left: 80%;
  animation-delay: 5s;
  animation-duration: 30s;
}

.particle:nth-child(3) {
  width: 2px;
  height: 2px;
  left: 40%;
  animation-delay: 10s;
  animation-duration: 20s;
}

.particle:nth-child(4) {
  width: 4px;
  height: 4px;
  left: 70%;
  animation-delay: 15s;
  animation-duration: 35s;
}

.particle:nth-child(5) {
  width: 3px;
  height: 3px;
  left: 20%;
  animation-delay: 8s;
  animation-duration: 28s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: scale(1);
  }
  90% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    transform: translateY(-10vh) scale(0);
    opacity: 0;
  }
}

/* * =============================================
 * Typography & Links with Enhanced Animations
 * =============================================
 */
h1, h2 {
  color: var(--text-dark);
  text-align: center;
  margin: 0 0 1rem;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-dark), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.3s;
}

h2 {
  font-size: 1.8rem;
  animation-delay: 0.5s;
}

p, li, strong, div {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.7s;
}

p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 1rem;
}

strong {
  color: var(--text-dark);
  font-weight: 600;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-hover);
  text-shadow: 0 0 8px var(--glow-color);
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* * =============================================
 * Enhanced Section Styling
 * =============================================
 */
.page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 1;
}

.section {
  background: rgba(254, 245, 227, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 
    0 15px 35px var(--shadow-color),
    0 5px 15px rgba(242, 201, 76, 0.1);
  padding: 2.5rem 1.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(242, 201, 76, 0.2);
  transition: all 0.5s ease;
}

.section:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 25px 50px var(--shadow-hover),
    0 10px 25px rgba(242, 201, 76, 0.2);
}

.section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(242, 201, 76, 0.1), transparent);
  animation: rotate 20s linear infinite;
  z-index: 0;
}

.section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(242, 201, 76, 0.05) 0%, transparent 70%);
  z-index: 1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.section-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-intro .image-container {
  flex-shrink: 0;
  margin-bottom: 2rem;
  opacity: 0;
  animation: slideInLeft 1s ease-out forwards;
  animation-delay: 0.2s;
}

.section-intro img {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
  box-shadow: 
    0 15px 30px var(--shadow-color),
    0 0 0 3px rgba(242, 201, 76, 0.3);
  transition: all 0.5s ease;
}

.section-intro img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 
    0 25px 50px var(--shadow-hover),
    0 0 0 5px rgba(242, 201, 76, 0.5);
}

.title-underline {
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
  margin: 0 auto 1.5rem;
  border-radius: 10px;
  position: relative;
  animation: expandWidth 1s ease-out forwards;
  animation-delay: 0.8s;
  width: 0;
}

.title-underline::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -5px;
  right: -5px;
  bottom: -2px;
  background: linear-gradient(90deg, transparent, var(--glow-color), transparent);
  border-radius: 10px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes expandWidth {
  to {
    width: 80px;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

/* * =============================================
 * Enhanced Components
 * =============================================
 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 
    0 8px 20px var(--shadow-color),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 1.2s;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 15px 30px var(--shadow-hover),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  color: var(--text-dark);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent-color));
  box-shadow: 
    0 15px 30px var(--shadow-hover),
    0 0 20px var(--glow-color);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--text-dark), #3a2d00);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #3a2d00, #2d2200);
  color: var(--white-color);
  border-color: var(--accent-hover);
  box-shadow: 
    0 15px 30px var(--shadow-hover),
    0 0 20px rgba(242, 201, 76, 0.4);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #1DAA51);
  color: var(--white-color);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #1DAA51, #128C41);
  box-shadow: 
    0 15px 30px var(--shadow-hover),
    0 0 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
}

.button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 450px;
  margin: 1.5rem auto;
}

.feature-list li {
  font-weight: 500;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  opacity: 0;
  animation: slideInRight 0.6s ease-out forwards;
}

.feature-list li:nth-child(1) { animation-delay: 1s; }
.feature-list li:nth-child(2) { animation-delay: 1.1s; }
.feature-list li:nth-child(3) { animation-delay: 1.2s; }
.feature-list li:nth-child(4) { animation-delay: 1.3s; }

.feature-list li:hover {
  background: rgba(242, 201, 76, 0.1);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(242, 201, 76, 0.2);
}

.content-grid {
  display: grid;
  gap: 1.5rem;
  text-align: left;
  margin-top: 2rem;
}

.content-grid > div {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  border: 1px solid rgba(242, 201, 76, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.content-grid > div:nth-child(odd) { animation-delay: 0.9s; }
.content-grid > div:nth-child(even) { animation-delay: 1.1s; }

.content-grid > div:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 25px rgba(242, 201, 76, 0.2);
}

.styled-list {
  list-style-type: none;
  padding-left: 0;
  text-align: left;
}

.styled-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.styled-list li::before {
  content: '✨';
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

/* List styling fixes */
.list-disc {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

/* * =============================================
 * Enhanced Footer & Dark Sections
 * =============================================
 */
.bg-light {
  background: rgba(253, 246, 236, 0.9);
}

.bg-dark {
  background: linear-gradient(135deg, #1e1e1e 0%, #3a3a3a 100%);
  color: var(--text-on-dark);
}

.text-white {
  color: var(--text-on-dark);
}

.text-white p {
  color: var(--text-on-dark);
}

.text-center {
  text-align: center;
}

.underline {
  text-decoration: underline;
}

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

/* Scroll-triggered animations - Fix to make sections visible */
.scroll-fade {
  opacity: 1 !important; /* Override the opacity: 0 that was hiding sections */
  transform: translateY(0) !important;
  transition: all 0.8s ease-out;
}

/* Override section animations that were causing invisibility */
.section * {
  opacity: 1 !important;
  animation-fill-mode: both;
}

/* * =============================================
 * Responsive Design
 * =============================================
 */
@media (min-width: 768px) {
  .section {
    padding: 4rem;
  }
  
  .section-intro {
    flex-direction: row;
    text-align: left;
    gap: 3rem;
  }

  .section-intro.reverse {
    flex-direction: row-reverse;
  }
  
  .section-intro .text-content {
    flex: 1;
  }
  
  .section-intro .image-container {
    flex: 0 0 40%;
    margin-bottom: 0;
  }

  h1 {
    font-size: 3rem;
  }

  h1, h2 {
    text-align: left;
  }

  .title-underline {
    margin-left: 0;
    margin-right: auto;
  }

  .button-group {
    flex-direction: row;
    justify-content: flex-start;
  }

  .feature-list {
    margin-left: 0;
  }

  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section:not(.section-intro) .container {
    max-width: 900px;
    margin: 0 auto;
  }

  .section:not(.section-intro) h2,
  .section:not(.section-intro) p {
    text-align: center;
  }

  .section:not(.section-intro) .title-underline {
    margin: 0 auto 1.5rem;
  }

  .section:not(.section-intro) .button-group {
    justify-content: center;
  }

  .section:not(.section-intro) .styled-list {
    display: inline-block;
    text-align: left;
  }
}

/* Scroll-triggered animations - Fix to make sections visible */
.scroll-fade {
  opacity: 1 !important; /* Override the opacity: 0 that was hiding sections */
  transform: translateY(0) !important;
  transition: all 0.8s ease-out;
}

/* Override section animations that were causing invisibility */
.section * {
  opacity: 1 !important;
  animation-fill-mode: both;
}

/* * =============================================
 * Responsive Design
 * =============================================
 */
@media (min-width: 768px) {
  .section {
    padding: 4rem;
  }
  
  .section-intro {
    flex-direction: row;
    text-align: left;
    gap: 3rem;
  }

  .section-intro.reverse {
    flex-direction: row-reverse;
  }
  
  .section-intro .text-content {
    flex: 1;
  }
  
  .section-intro .image-container {
    flex: 0 0 40%;
    margin-bottom: 0;
  }

  h1 {
    font-size: 3rem;
  }

  h1, h2 {
    text-align: left;
  }

  .title-underline {
    margin-left: 0;
    margin-right: auto;
  }

  .button-group {
    flex-direction: row;
    justify-content: flex-start;
  }

  .feature-list {
    margin-left: 0;
  }

  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section:not(.section-intro) .container {
    max-width: 900px;
    margin: 0 auto;
  }

  .section:not(.section-intro) h2,
  .section:not(.section-intro) p {
    text-align: center;
  }

  .section:not(.section-intro) .title-underline {
    margin: 0 auto 1.5rem;
  }

  .section:not(.section-intro) .button-group {
    justify-content: center;
  }

  .section:not(.section-intro) .styled-list {
    display: inline-block;
    text-align: left;
  }
}


/* Dark Footer */
.site-footer {
  background: var(--text-dark);      /* Dark brown background */
  color: var(--text-on-dark);
  padding: 2rem 0;                   /* Increased vertical padding */
}
.site-footer .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;                 /* Horizontal padding */
  display: flex;
  justify-content: space-between;    /* Link left, copyright right */
  align-items: center;
  gap: 1rem;
}
.site-footer .instagram-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.site-footer .instagram-link:hover {
  color: var(--accent-hover);
}
.site-footer p {
  margin: 0;                         /* Remove default paragraph margin */
  font-size: 0.9rem;
}

/* Language Selector */
.section-intro .lang-selector {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 100;
  background: rgba(255,255,255,0.8);
  padding: 0.25rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.lang-link {
  font-size: 1.5rem;
  padding: 0.25rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.lang-link:hover {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 1);
}

.lang-link.active {
  background: var(--accent-color);
  filter: brightness(1.1);
}

.page-wrapper {
  position: relative;
}

.section {
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/mosaic.jpg") center/cover no-repeat;
  filter: blur(1px);
  opacity: 0.02;
  pointer-events: none;
  /* Stop unintended rotation of the mosaic background */
  animation: none !important;
  z-index: -1;
}