body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f7f7f7;
  color: #111;
  line-height: 1.6;
}

header {
  background: #000000;
  color: white;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .header-content {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 900px;
  }

  .header-text {
    text-align: left;
  }
}

header img.logo {
  width: 160px;
  height: auto;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.15)) contrast(1.1);
}

header img.profile-pic {
  width: 120px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  filter: brightness(1.05) contrast(1.05) drop-shadow(0 0 6px rgba(255, 255, 255, 0.2));
}

nav {
  background: #000;
  padding: 1rem 0 1.5rem;
  text-align: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.section {
  padding: 2rem 1rem;
  max-width: 900px;
  margin: auto;
}

.section h2 {
  border-left: 4px solid #000000;
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.cta {
  text-align: center;
  margin: 2rem 0;
}

.cta a {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #000000;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}

.cta a:hover {
  background: #444;
}

.about-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  max-width: 1100px;
  margin: auto;
}

.about-block img {
  max-width: 380px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s;
}

.about-block img:hover {
  transform: scale(1.03);
}

.about-block .text {
  flex: 1;
}

@media (min-width: 768px) {
  .about-block {
    flex-direction: row;
    align-items: flex-start;
  }

  .about-block.reverse {
    flex-direction: row-reverse;
  }
}

footer {
  background: #000000;
  color: #ddd;
  padding: 2rem 1rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.footer-left a,
.footer-right a {
  color: #ddd;
  text-decoration: none;
}

.footer-left a:hover,
.footer-right a:hover {
  text-decoration: underline;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.footer-info-text,
.footer-contact-links,
.footer-social-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-info-text p,
.footer-contact-links p,
.footer-social-links p {
  margin: 0.2rem 0;
  line-height: 1.4;
}

.icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 0.5rem;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    max-width: 900px;
    margin: auto;
  }

  .footer-columns {
    flex-direction: row;
    gap: 3rem;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .footer-info-text,
  .footer-contact-links,
  .footer-social-links {
    align-items: flex-start;
  }
}

/* Imagen decorativa tipo flor grande a la derecha */
.svg-frame.tall-right {
  flex-shrink: 0;
  width: 480px;
  height: auto;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  justify-content: flex-end;
}

.svg-frame.tall-right svg {
  width: 100%;
  height: auto;
  display: block;
}
.svg-frame.tall-right svg {
  transition: transform 0.4s ease;
}

.svg-frame.tall-right:hover svg {
  transform: scale(1.03);
}
.svg-frame.tall-right {
  flex-shrink: 0;
  width: 480px;
  height: auto;
  margin-left: auto;
  margin-right: 0;
  margin-top: 7rem; /* ⬅️ esto la baja */
  display: flex;
  justify-content: flex-end;
}
