@import url('https://fonts.googleapis.com/css2?family=Walter+Turncoat&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Walter Turncoat', cursive;
  background: #f0bbb4;
  position: relative;
  overflow-x: hidden;
}

body::before{
  content: "☆       ✧        ☆       ✦       ☆";
  position: fixed;
  inset: 0;
  z-index: -1;

  color: rgba(129, 191, 183, 0.42);
  font-size: 28px;
  letter-spacing: 90px;
  line-height: 180px;

  padding: 50px 40px;
  pointer-events: none;
  white-space: pre-wrap;
}

body::after{
  content: "♡          ♡          ♡          ♡";
  position: fixed;
  inset: 0;
  z-index: -1;

  color: rgba(243, 164, 190, 0.42);
  font-size: 24px;
  letter-spacing: 120px;
  line-height: 220px;

  padding: 130px 80px;
  pointer-events: none;
  white-space: pre-wrap;
}

.page-container{
    width: min(1800px, calc(100% - 48px));
    margin: 0 auto;
}

/* NAVBAR */
.navbar{
    width: 100%;
    min-height: 96px;
    padding: 22px 32px;
    background: #f0f9f8;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0 0 24px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;

    overflow: visible;

    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(91, 26, 142, 0.10);
}

.menu-toggle{
    display: none;
    background: transparent;
    border: 2px solid #8a5bc2;
    color: #f3a4be;
    font-size: 22px;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
}

.mobile-talk{
    display: none;
}

.desktop-talk{
    display: inline-block;
}

/* PERFIL */
.profile{
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.profile-link{
    display: inline-flex;
    border-radius: 50%;
    text-decoration: none;
}

.profile-link:hover .profile-img {
    transform: scale(1.05);
}

.profile-img{
    width: 82px;
    height: 82px;
    border-radius: 50%;
    object-fit: cover;
    padding: 4px;
    background: linear-gradient(135deg, #ffd3dd, #c6e6e3);
    transition: 0.3s ease;
}

/* MENU */
.nav-menu{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(18px, 2.5vw, 42px);
    flex: 1;
    min-width: 0;
}

.menu-toggle{
    display: none;
}

.mobile-talk{
    display: none;
}

.desktop-talk{
    display: inline-block;
}

.nav-menu a{
    text-decoration: none;
    color: #f3a4be;
    font-size: 16px;
    font-weight: bolder;
    position: relative;
    padding-bottom: 8px;
    white-space: nowrap;
    text-align: center;
    font-size: 20px;
}

.nav-menu a.active::after,
.nav-menu a:hover::after{
    content: "";
    width: 100%;
    height: 2px;
    background-color: #c6e6e3;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 10px;
}

.language-switch {
    position: relative;
    display: inline-flex;
    align-items: center;

    width: 108px;
    height: 38px;
    padding: 3px;
    flex-shrink: 0;

    border-radius: 999px;
    background: #f0f9f8;
    border: 2px solid #81bfb7;

    overflow: hidden;
}

/* Burbujita */
.language-switch::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;

    width: 48px;
    height: 28px;

    border-radius: 999px;
    background: #81bfb7;

    transition: transform 0.3s ease;
    z-index: 1;
}

/* Si está activo ES */
.language-switch.lang-es::before {
    transform: translateX(0);
}

/* Si está activo EN */
.language-switch.lang-en::before {
    transform: translateX(52px);
}

.lang-option {
    position: relative;
    z-index: 2;

    width: 50%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    color: #81bfb7;

    font-size: 14px;
    font-weight: 700;

    line-height: 1;
    transition: color 0.3s ease;
}

.lang-option.active-lang {
    color: #027969;
}

.lang-option:hover {
    color: #f3a4be;
}

.lang-option.active-lang:hover {
    color: #ffffff;
}

/* HOME HERO*/
.home-hero {
  width: 100%;
  min-height: 380px;
  margin: 18px 0;
  padding: 34px 42px;
  border-radius: 24px;

  background: rgba(255, 252, 246, 0.94);
  border: 2px solid rgba(198, 230, 227, 0.7);
  box-shadow: 0 8px 22px rgba(129, 191, 183, 0.12);

  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;

  position: relative;
  overflow: hidden;
}

/* Decoraciones suaves */
.home-hero::before {
  content: "☆     ✧      ♡      ☆";
  position: absolute;
  top: 70px;
  left: 40px;
  right: 40px;

  color: rgba(129, 191, 183, 0.5);
  font-size: 28px;
  letter-spacing: 95px;

  pointer-events: none;
  z-index: 1;
}

.home-hero::after {
  content: "♡       ☆       ✧";
  position: absolute;
  right: 60px;
  bottom: 34px;

  color: rgba(243, 164, 190, 0.5);
  font-size: 26px;
  letter-spacing: 70px;

  pointer-events: none;
  z-index: 1;
}

.home-hero-content {
  position: relative;
  z-index: 2;
}

.home-hero-content h2 {
  color: #1f2f2d;
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.home-hero-content h2 span {
  color: #f3b24b;
}

.home-hero-content p {
  max-width: 520px;
  color: #1f2f2d;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.home-hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.hero-btn-primary,
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-width: 160px;
  padding: 12px 22px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;

  transition: 0.3s ease;
}

.hero-btn-primary {
  background: #81bfb7;
  color: #ffffff;
  border: 2px solid #81bfb7;
}

.hero-btn-primary:hover {
  background: #6aada5;
  border-color: #6aada5;
  transform: translateY(-2px);
}

.hero-btn-secondary {
  background: #ffffff;
  color: #1f2f2d;
  border: 2px solid rgba(243, 164, 190, 0.55);
}

.hero-btn-secondary i {
  color: #f3a4be;
}

.hero-btn-secondary:hover {
  background: #fff2f6;
  transform: translateY(-2px);
}

/* Imagen del hero */

.home-hero-image {
  position: relative;
  z-index: 2;

  width: 320px;
  height: 320px;

  display: flex;
  align-items: center;
  justify-content: center;

  justify-self: center;
}

.home-hero-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  border-radius: 18px;
  border: 2px solid rgba(243, 164, 190, 0.35);
  box-shadow: 0 10px 24px rgba(31, 47, 45, 0.12);
}

/* Cinta rosa */
.tape {
  position: absolute;
  z-index: 4;
  background: rgba(243, 164, 190, 0.85);
  border-radius: 3px;
}

.tape-top {
  width: 86px;
  height: 22px;
  top: -10px;
  right: 54px;
  transform: rotate(8deg);
}

/* Stickers flotantes */
.floating-sticker {
    position: absolute;
    z-index: 4;

    width: 42px;
    height: 42px;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    font-weight: 700;
    transform: rotate(-8deg);
}

.sticker-heart {
    left: 18px;
    bottom: 18px;
    background: #81bfb7;
    color: #ffffff;
}

.sticker-star {
    right: 18px;
    bottom: 22px;
    background: rgba(255, 255, 255, 0.85);
    color: #f3a4be;
    border: 2px solid rgba(243, 164, 190, 0.35);
}

/* ========================= */
/* PORTFOLIO PREVIEW / HOME */
/* ========================= */

.portfolio-preview {
    width: 100%;
    margin: 18px 0;
    position: relative;
}

.section-heading {
    margin-bottom: 12px;
}

.section-heading h2 {
    color: #1f2f2d;
    font-size: 24px;
    line-height: 1.2;

    display: flex;
    align-items: center;
    gap: 8px;
}

.section-heading h2 span {
    color: #f3b24b;
}

.section-heading .squiggle {
    color: #f3a4be;
    font-size: 22px;
}

/* Cards principales */

.portfolio-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.portfolio-card {
    position: relative;

    background: rgba(255, 252, 246, 0.94);
    border: 2px solid rgba(198, 230, 227, 0.5);
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(129, 191, 183, 0.10);

    overflow: hidden;
    transition: 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-4px) rotate(-0.5deg);
    box-shadow: 0 12px 24px rgba(129, 191, 183, 0.18);
}

.portfolio-card-header {
    padding: 10px 14px 8px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #1f2f2d;
    font-size: 13px;
    font-weight: 700;
}

.portfolio-card-header span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.portfolio-card-header i {
    color: #81bfb7;
}

.portfolio-image {
    position: relative;
    width: calc(100% - 20px);
    height: 150px;
    margin: 0 auto;

    border-radius: 12px;
    overflow: hidden;
    background: #c6e6e3;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Botón play */
.play-button {
    position: absolute;
    inset: 0;
    margin: auto;

    width: 52px;
    height: 52px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.78);
    color: #f3a4be;
    font-size: 20px;
    box-shadow: 0 8px 18px rgba(31, 47, 45, 0.15);
}

.portfolio-card-content {
    padding: 14px 16px 18px;
}

.portfolio-card-content h3 {
    color: #1f2f2d;
    font-size: 17px;
    margin-bottom: 8px;
}

.portfolio-card-content p {
    color: #1f2f2d;
    font-size: 12.5px;
    line-height: 1.55;
    margin-bottom: 14px;
}

.portfolio-card-content a {
    color: #81bfb7;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.portfolio-card-content a:hover {
    color: #f3a4be;
}

.card-heart {
    position: absolute;
    right: 14px;
    bottom: 12px;

    color: #f3a4be;
    font-size: 22px;
}

/* Cards pequeñas de resumen */

.portfolio-summary {
    margin-top: 14px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.summary-card {
    padding: 16px 18px;
    border-radius: 14px;

    background: rgba(255, 252, 246, 0.94);
    border: 2px solid rgba(198, 230, 227, 0.5);
    box-shadow: 0 8px 18px rgba(129, 191, 183, 0.08);

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;

    transition: 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 22px rgba(129, 191, 183, 0.16);
}

.summary-card > div:first-child {
    width: 38px;
    height: 38px;
    border-radius: 10px;

    background: #f0f9f8;
    color: #81bfb7;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
}

.summary-card h3 {
    color: #1f2f2d;
    font-size: 14px;
    margin-bottom: 4px;
}

.summary-card p {
    color: #1f2f2d;
    font-size: 11.5px;
    line-height: 1.4;
}

.summary-card > span {
    color: #f3a4be;
    font-size: 22px;
}

/* ========================= */
/* PÁGINA ANIMACIÓN */
/* ========================= */

/* HERO ANIMACIÓN */

.animation-hero {
    width: 100%;
    margin: 18px 0;
    padding: 28px 34px;
    border-radius: 24px;

    background: rgba(255, 252, 246, 0.94);
    border: 2px solid rgba(198, 230, 227, 0.7);
    box-shadow: 0 8px 22px rgba(129, 191, 183, 0.12);

    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: center;
    gap: 32px;

    position: relative;
    overflow: hidden;
}

.animation-hero::before {
    content: "☆      ✧       ♡";
    position: absolute;
    top: 30px;
    left: 32px;
    color: rgba(129, 191, 183, 0.55);
    font-size: 26px;
    letter-spacing: 58px;
    pointer-events: none;
}

.animation-hero::after {
    content: "♡      ☆      ✧";
    position: absolute;
    right: 28px;
    bottom: 22px;
    color: rgba(243, 164, 190, 0.55);
    font-size: 24px;
    letter-spacing: 46px;
    pointer-events: none;
}

.animation-hero-content {
    position: relative;
    z-index: 2;
}

.animation-hero-content h2 {
    color: #1f2f2d;
    font-size: 44px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.animation-hero-content h2 span {
    color: #f3b24b;
}

.animation-hero-content p {
    max-width: 430px;
    color: #1f2f2d;
    font-size: 15px;
    line-height: 1.7;
}

.hero-doodles {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    color: #f3a4be;
    font-size: 24px;
}

.hero-doodles span:nth-child(2) {
    color: #f3a4be;
}

.hero-doodles span:nth-child(3) {
    color: #81bfb7;
}

/* MEDIA DEL HERO */

.animation-hero-media {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 260px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.animation-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

    border-radius: 18px;
    border: 2px solid rgba(243, 164, 190, 0.35);
    box-shadow: 0 10px 24px rgba(31, 47, 45, 0.12);
}

.hero-play {
    width: 58px;
    height: 58px;
    font-size: 22px;
}

.animation-hero-media .sticker-heart {
    right: 18px;
    bottom: 18px;
    left: auto;
}

/* ========================= */
/* GALERÍA DE ANIMACIÓN */
/* ========================= */

.animation-gallery {
    width: 100%;
    margin: 18px 0;

    display: grid;
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 14px;
    align-items: stretch;
}

/* Card destacada y cards normales */

.animation-featured-card,
.animation-card {
    position: relative;

    background: rgba(255, 252, 246, 0.94);
    border: 2px solid rgba(198, 230, 227, 0.58);
    border-radius: 18px;
    box-shadow: 0 8px 18px rgba(129, 191, 183, 0.10);

    overflow: hidden;
    transition: 0.3s ease;
}

.animation-featured-card:hover,
.animation-card:hover {
    transform: translateY(-4px) rotate(-0.4deg);
    box-shadow: 0 12px 24px rgba(129, 191, 183, 0.18);
}

/* Imagen / video thumbnail */

.animation-media {
    position: relative;
    width: calc(100% - 20px);
    height: 170px;
    margin: 10px auto 0;

    border-radius: 14px;
    overflow: hidden;
    background: #c6e6e3;
}

.animation-featured-card .animation-media {
    height: 240px;
}

.animation-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Botón play */

.play-button {
    position: absolute;
    inset: 0;
    margin: auto;

    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.82);
    color: #f3a4be;
    font-size: 20px;

    box-shadow: 0 8px 18px rgba(31, 47, 45, 0.16);
    cursor: pointer;
    transition: 0.3s ease;
}

.play-button:hover {
    background: #ffffff;
    color: #81bfb7;
    transform: scale(1.08);
}

.small-play {
    width: 46px;
    height: 46px;
    font-size: 17px;
}

/* Contenido */

.animation-card-content {
    padding: 16px 18px 22px;
}

.animation-card-content h3 {
    color: #1f2f2d;
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 8px;
}

.animation-featured-card .animation-card-content h3 {
    font-size: 21px;
}

.animation-card-content p {
    color: #1f2f2d;
    font-size: 12.5px;
    line-height: 1.55;
    margin-bottom: 16px;
}

.animation-featured-card .animation-card-content p {
    font-size: 13.5px;
    max-width: 95%;
}

/* Botón / link de ver animación */

.animation-link,
.animation-card-content a {
    border: none;
    background: transparent;
    padding: 0;

    color: #81bfb7;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    cursor: pointer;
    transition: 0.3s ease;
}

.animation-link:hover,
.animation-card-content a:hover {
    color: #f3a4be;
}

.card-heart {
    position: absolute;
    right: 16px;
    bottom: 14px;

    color: #f3a4be;
    font-size: 22px;
    line-height: 1;
}

/* ========================= */
/* EXPLORA POR TIPO */
/* ========================= */

.animation-types {
    width: 100%;
    margin: 18px 0 24px;
}

.animation-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.animation-type-card {
    position: relative;

    padding: 18px 20px;
    border-radius: 18px;

    background: rgba(255, 252, 246, 0.94);
    border: 2px solid rgba(198, 230, 227, 0.58);
    box-shadow: 0 8px 18px rgba(129, 191, 183, 0.10);

    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 16px;

    overflow: hidden;
    transition: 0.3s ease;
}

.animation-type-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 22px rgba(129, 191, 183, 0.16);
}

.type-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;

    background: #f0f9f8;
    color: #81bfb7;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
}

.type-icon-pink {
    background: #fff2f6;
    color: #f3a4be;
}

.animation-type-card h3 {
    color: #1f2f2d;
    font-size: 17px;
    margin-bottom: 6px;
}

.animation-type-card p {
    color: #1f2f2d;
    font-size: 12.5px;
    line-height: 1.5;
}

.type-decoration {
    position: absolute;
    right: 16px;
    top: 12px;

    color: #81bfb7;
    font-size: 24px;
}

.type-heart {
    position: absolute;
    right: 18px;
    bottom: 12px;

    color: #f3a4be;
    font-size: 22px;
}


/* ========================= */
/* PÁGINA SOBRE MÍ & CONTACTO */
/* ========================= */

/* HERO ABOUT */

.about-hero {
    width: 100%;
    margin: 18px 0;
    padding: 32px 38px;
    border-radius: 24px;

    background: rgba(255, 252, 246, 0.94);
    border: 2px solid rgba(198, 230, 227, 0.7);
    box-shadow: 0 8px 22px rgba(129, 191, 183, 0.12);

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 34px;

    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: "✧      ☆       ♡";
    position: absolute;
    top: 68px;
    left: 34px;

    color: rgba(129, 191, 183, 0.5);
    font-size: 28px;
    letter-spacing: 72px;

    pointer-events: none;
    z-index: 1;
}

.about-hero::after {
    content: "♡       ☆       ✧";
    position: absolute;
    right: 42px;
    bottom: 34px;

    color: rgba(243, 164, 190, 0.5);
    font-size: 26px;
    letter-spacing: 62px;

    pointer-events: none;
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero-content h2 {
    color: #1f2f2d;
    font-size: 44px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-hero-content h2 span {
    color: #f3b24b;
}

.about-hero-content p {
    max-width: 620px;
    color: #1f2f2d;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-hero-image {
  position: relative;
  z-index: 2;

  width: 320px;
  height: 320px;

  display: flex;
  align-items: center;
  justify-content: center;

  justify-self: center;
}

.about-hero-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  border-radius: 18px;
  border: 2px solid rgba(243, 164, 190, 0.35);
  box-shadow: 0 10px 24px rgba(31, 47, 45, 0.12);
}

.about-hero-image .sticker-heart {
    right: 18px;
    bottom: 18px;
    left: auto;
}

/* ========================= */
/* ABOUT GRID */
/* ========================= */

.about-grid {
    width: 100%;
    margin: 18px 0;

    display: grid;
    grid-template-columns: 0.9fr 0.7fr 1.6fr;
    gap: 14px;
    align-items: stretch;
}

.about-info-card,
.about-contact-card,
.availability-card {
    position: relative;

    background: rgba(255, 252, 246, 0.94);
    border: 2px solid rgba(198, 230, 227, 0.58);
    border-radius: 20px;
    box-shadow: 0 8px 18px rgba(129, 191, 183, 0.10);

    overflow: hidden;
}

.about-info-card {
    padding: 24px 26px;
}

.section-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    margin-bottom: 18px;
}

.section-title-row h2 {
    color: #1f2f2d;
    font-size: 26px;
    line-height: 1.2;

    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title-row h2 span {
    color: #f3a4be;
}

.section-title-row h2 i {
    color: #f3a4be;
    font-size: 22px;
}

.decor-star,
.decor-flower {
    color: #81bfb7;
    font-size: 34px;
    line-height: 1;
}

.about-story-card p {
    color: #1f2f2d;
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 18px;
}

/* DATOS RÁPIDOS */

.quick-facts-list {
    display: grid;
    gap: 14px;
}

.quick-fact {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: flex-start;

    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(243, 164, 190, 0.28);
}

.quick-fact i {
    color: #f3a4be;
    font-size: 20px;
    margin-top: 2px;
}

.quick-fact:nth-child(3) i,
.quick-fact:nth-child(4) i {
    color: #81bfb7;
}

.quick-fact p {
    color: #1f2f2d;
    font-size: 13px;
    line-height: 1.55;
}

.quick-fact strong {
    color: #1f2f2d;
}

/* LO QUE HAGO */

.what-i-do-card {
    padding: 24px 26px;
}

.what-i-do-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.what-i-do-item {
    min-width: 0;
}

.what-image {
    position: relative;

    width: 100%;
    height: 135px;
    margin-bottom: 14px;

    border-radius: 14px;
    overflow: hidden;
    background: #c6e6e3;
    border: 1px solid rgba(198, 230, 227, 0.7);
}

.what-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.what-i-do-item h3 {
    color: #1f2f2d;
    font-size: 16px;
    margin-bottom: 8px;
}

.what-i-do-item p {
    color: #1f2f2d;
    font-size: 12.5px;
    line-height: 1.55;
}

/* ========================= */
/* CONTACTO ABOUT */
/* ========================= */

.contact-about-grid {
    width: 100%;
    margin: 18px 0 24px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: stretch;
}

/* FORMULARIO */

.about-contact-card {
    padding: 26px;
    background: rgba(255, 252, 246, 0.94);
    border: 2px solid rgba(198, 230, 227, 0.7);
    border-radius: 20px;
}

.about-contact-form {
    width: 100%;
    display: grid;
    gap: 18px;
}

/* Nombre + correo */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* Cada campo */
.about-contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-contact-form label {
    color: #1f2f2d;
    font-size: 13px;
    font-weight: 700;
}

/* Inputs y textarea */
.about-contact-form input[type="text"],
.about-contact-form input[type="email"],
.about-contact-form textarea {
    width: 100%;
    padding: 13px 16px;

    border: 2px solid rgba(198, 230, 227, 0.9);
    background: rgba(255, 255, 255, 0.78);
    color: #1f2f2d;

    font-family: inherit;
    font-size: 13px;
    font-weight: 700;

    outline: none;
    transition: 0.3s ease;
}

.about-contact-form input[type="text"],
.about-contact-form input[type="email"] {
    border-radius: 999px;
}

.about-contact-form textarea {
    min-height: 120px;
    resize: vertical;
    border-radius: 18px;
}

.about-contact-form input::placeholder,
.about-contact-form textarea::placeholder {
    color: rgba(31, 47, 45, 0.45);
}

.about-contact-form input:focus,
.about-contact-form textarea:focus {
    border-color: #81bfb7;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(129, 191, 183, 0.14);
}

/* ========================= */
/* TIPO DE PROYECTO */
/* ========================= */

.project-type-options {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

/* Oculta el radio real */
.project-type-option input[type="radio"] {
    display: none;
}

/* Convierte cada opción en botón */
.project-type-option {
    width: 100%;
    cursor: pointer;
}

.project-type-option span {
    width: 100%;
    min-height: 44px;
    padding: 10px 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    border: 2px solid rgba(198, 230, 227, 0.9);
    background: rgba(255, 255, 255, 0.78);

    color: #1f2f2d;
    font-size: 12px;
    font-weight: 700;
    text-align: center;

    transition: 0.3s ease;
}

.project-type-option span:hover {
    border-color: #f3a4be;
    background: #fff2f6;
}

/* Opción activa */
.project-type-option input[type="radio"]:checked + span {
    background: #c6e6e3;
    border-color: #81bfb7;
    color: #1f2f2d;
    box-shadow: 0 8px 16px rgba(129, 191, 183, 0.16);
}

/* Botón enviar */
.about-submit-button {
    width: 100%;
    padding: 14px 24px;

    border: 2px solid #81bfb7;
    border-radius: 999px;
    background: #81bfb7;
    color: #ffffff;

    font-family: inherit;
    font-size: 15px;
    font-weight: 700;

    cursor: pointer;
    transition: 0.3s ease;
}

.about-submit-button:hover {
    background: #6aada5;
    border-color: #6aada5;
    transform: translateY(-2px);
}

/* ========================= */
/* DISPONIBILIDAD */
/* ========================= */

.availability-card {
    padding: 24px 26px;
}

.availability-list {
    display: grid;
}

.availability-item {
    position: relative;

    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;

    padding: 14px 0;
    border-bottom: 1px solid rgba(198, 230, 227, 0.7);
}

.availability-item:last-child {
    border-bottom: none;
}

.availability-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
}

.pink-icon {
    background: #fff2f6;
    color: #f3a4be;
}

.yellow-icon {
    background: #fff6dd;
    color: #d8a540;
}

.mint-icon {
    background: #f0f9f8;
    color: #81bfb7;
}

.availability-item h3 {
    color: #1f2f2d;
    font-size: 15px;
    margin-bottom: 4px;
}

.availability-item p {
    color: #1f2f2d;
    font-size: 13px;
    line-height: 1.45;
}

.availability-item > span {
    color: #f3a4be;
    font-size: 24px;
}

/* FOOTER */
.footer{
    width: 100%;
    margin-top: 18px;
    margin-bottom: 24px;
}

.footer-img{
    width: 82px;
    height: 82px;
    border-radius: 50%;
    object-fit: cover;
    padding: 4px;
    background: linear-gradient(135deg, #ffd3dd, #c6e6e3);
    transition: 0.3s ease;
}

.footer-cta{
    width: 100%;
    padding: 22px 28px;
    border-radius: 16px;
    background: #f0f9f8;
    border: 1px solid rgba(91, 26, 142, 0.12);
    box-shadow: 0 8px 22px rgba(91, 26, 142, 0.06);

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
}

.footer-brand-message{
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo{
    width: 90px;
    height: 90px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-message-text h2{
    font-size: 20px;
    color: #81bfb7;
    margin-bottom: 6px;
}

.footer-message-text p{
    font-size: 18px;
    color: black;
}

.footer-links{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-links a{
    display: flex;
    align-items: center;
    gap: 8px;

    color: #f3a4be;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
}

.footer-links a:hover{
    color: #ffd3dd;
    transform: translateY(-2px);
}

.footer-links i{
    font-size: 18px;
}

.footer-links .fa-whatsapp{
    color: #25d366;
}


.footer-links .fa-square-linkedin{
    color: #0a66c2;
}

.footer-links .fa-instagram{
    color: rgb(217, 94, 233);
}

.footer-button{
  position: relative;
  width: 210px;
  min-height: 88px;
  padding: 18px 22px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background: #c6e6e3;
  color: #1f3f3b;
  border: 2px solid #81bfb7;
  border-radius: 18px;

  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;

  transform: rotate(-2deg);
  box-shadow: 0 8px 0 rgba(129, 191, 183, 0.25);
  transition: 0.3s ease;
}

.footer-button i,
.footer-button .fa-envelope{
  color: #ffffff; 
  font-size: 30px;
  line-height: 1;
  text-shadow: 0 2px 0 rgba(129, 191, 183, 0.35);
}

.footer-button span{
  display: block;
}

.footer-button::after{
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%) rotate(4deg);

  width: 62px;
  height: 18px;

  background: #f3a4be;
  opacity: 0.9;
  border-radius: 3px;
}

.footer-button:hover{
  background: #b4ded9;
  color: #1f3f3b;
  transform: rotate(0deg) translateY(-3px);
  box-shadow: 0 10px 0 rgba(129, 191, 183, 0.35);
}

.footer-copy{
    margin-top: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    font-size: 13px;
    color: black;
    text-align: center;
}

.footer-avatar-float {
  width: 118px;
  height: 118px;
  position: relative;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  animation: hanni-float 2.8s ease-in-out infinite;
}

.footer-pixel-avatar {
  width: 96px;
  height: 96px;

  background-image: url("/assets/img/hanni-sprite.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 864px 96px;

  image-rendering: pixelated;

  transform: scale(1.25);
  transform-origin: bottom center;

  animation: hanni-wave 1.2s steps(9) infinite;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.16));
}

@keyframes hanni-wave {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -864px 0;
  }
}

@keyframes hanni-float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}


/* PARA EL RESPONSIVE */

/* ========================= */
/* NAVBAR HAMBURGUESA TABLET / CELULAR */
/* ========================= */
@media (max-width: 1300px) {
    .navbar {
        position: sticky;
        top: 0;
        z-index: 1000;

        width: min(100% - 32px, 1400px);
        margin: auto;

        min-height: 82px;
        padding: 14px 18px;

        background: #f0f9f8;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

        border-bottom: 1px solid #f3a4be;
        border-radius: 0 0 16px 16px;

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;

        overflow: visible;
    }

    .profile {
        width: auto;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .profile-img {
        width: 56px;
        height: 56px;
    }

    .profile-text h1 {
        font-size: 22px;
        line-height: 1.1;
    }

    .profile-text p {
        font-size: 16px;
        line-height: 1.25;
    }

    .menu-toggle {
        display: block !important;
        margin-left: auto;
        background: transparent;
        border: 2px solid #c6e6e3;
        color: #81bfb7;
        font-size: 22px;
        padding: 10px 14px;
        border-radius: 10px;
        cursor: pointer;
        position: relative;
        z-index: 1002;
    }

    .desktop-talk {
        display: none !important;
    }

    .nav-menu {
        display: none !important;

        position: absolute;
        top: calc(100% + 10px);
        right: 0;

        width: 260px;
        padding: 18px;
        border-radius: 16px;

        background: rgba(255, 255, 255, 0.98);
        border: 1px solid #81bfb7;
        box-shadow: 0 18px 35px #81bfb7;

        flex-direction: column;
        align-items: stretch;
        gap: 8px;

        z-index: 1001;
        overflow: visible;
    }

    .nav-menu.show {
        display: flex !important;
    }

    .nav-menu a {
        width: 100%;
        padding: 12px 14px;
        border-radius: 10px;
        font-size: 14px;
        text-align: left;
        white-space: nowrap;
    }

    .nav-menu a:not(.mobile-talk):hover,
    .nav-menu a:not(.mobile-talk).active {
        background: #f1e8ff;
    }

    .nav-menu a:not(.mobile-talk).active::after,
    .nav-menu a:not(.mobile-talk):hover::after {
        display: none;
    }

    .nav-menu .mobile-talk {
        display: block !important;
        width: 100%;
        margin-top: 10px;
        padding: 14px 18px;

        background: #6b21a8;
        color: #ffffff;
        border: 2px solid #6b21a8;
        border-radius: 14px;

        text-align: center;
        font-weight: 700;
    }

    .nav-menu .mobile-talk:hover {
        background: #541388;
        color: #ffffff;
        border-color: #541388;
        text-decoration: none;
    }

    .nav-menu .mobile-talk::after,
    .nav-menu .mobile-talk:hover::after {
        display: none;
    }

    .language-switch {
        width: 120px;
        height: 44px;
    }

    .language-switch::before {
        width: 54px;
        height: 32px;
    }

    .language-switch.lang-en::before {
        transform: translateX(58px);
    }


    .footer-cta {
    width: min(100% - 20px, 1400px);
    margin: 0 auto;
    padding: 28px 22px;

    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;

    text-align: center;
    overflow: hidden;
  }

  .footer-brand-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .footer-message-text h2,
  .footer-message-text p {
    text-align: center;
  }

  .footer-links {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: center;
  }

  .footer-links a {
    max-width: 100%;
    text-align: center;
    justify-content: center;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .footer-button {
    width: 100%;
    max-width: 320px;
    justify-self: center;
    text-align: center;
    padding: 16px 20px;
  }
}

@media (max-width: 1100px) {
    .animation-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 26px;
    }

    .animation-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-doodles {
        justify-content: center;
    }

    .animation-hero-media {
        height: 260px;
    }

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

    .animation-featured-card {
        grid-column: span 2;
    }

    .animation-type-grid {
        grid-template-columns: 1fr;
    }

    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 26px;
    }

    .about-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero-image {
        height: 280px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .what-i-do-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-about-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 900px) {
    .home-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 24px;
        gap: 28px;
    }

    .home-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .home-hero-image {
        width: 300px;
        height: 300px;
    }
}

/* ========================= */
/* VIDEO MODAL */
/* ========================= */

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 24px;
    background: rgba(31, 47, 45, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.video-modal.show {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: min(960px, 100%);
    background: #fffaf6;
    border: 2px solid #c6e6e3;
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 20px 60px rgba(31, 47, 45, 0.35);
}

.video-modal-content video {
    width: 100%;
    max-height: 75vh;
    display: block;
    border-radius: 18px;
    background: #000;
}

.video-modal-close {
    position: absolute;
    top: -18px;
    right: -18px;

    width: 44px;
    height: 44px;
    border-radius: 50%;

    border: 2px solid #81bfb7;
    background: #c6e6e3;
    color: #1f2f2d;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    cursor: pointer;
    transition: 0.3s ease;
}

.video-modal-close:hover {
    background: #f3a4be;
    border-color: #f3a4be;
    color: #ffffff;
    transform: rotate(8deg) scale(1.05);
}

/* Para que los botones se vean clickeables */
.video-card,
.play-button,
.animation-link {
    cursor: pointer;
}

.animation-link {
    border: none;
    background: transparent;
    padding: 0;

    color: #81bfb7;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.animation-link:hover {
    color: #f3a4be;
}

/* ========================= */
/* RESPONSIVE PORTFOLIO CARDS */
/* ========================= */

@media (max-width: 768px) {
    .portfolio-preview {
        margin: 22px 0;
    }

    .section-heading h2 {
        justify-content: center;
        text-align: center;
        font-size: 28px;
        flex-wrap: wrap;
    }

    .portfolio-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .portfolio-card {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        padding-bottom: 8px;
        border-radius: 20px;
    }

    .portfolio-card-header {
        padding: 16px 18px 10px;
        font-size: 16px;
    }

    .portfolio-image {
        width: calc(100% - 28px);
        height: 210px;
        margin: 0 auto;
        border-radius: 16px;
    }

    .portfolio-card-content {
        padding: 18px 22px 24px;
    }

    .portfolio-card-content h3 {
        font-size: 22px;
        line-height: 1.35;
        margin-bottom: 12px;
    }

    .portfolio-card-content p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .portfolio-card-content a {
        font-size: 16px;
    }

    .card-heart {
        right: 20px;
        bottom: 18px;
        font-size: 26px;
    }

    .portfolio-summary {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 22px;
    }

    .summary-card {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        padding: 26px 22px;
        border-radius: 20px;

        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        gap: 14px;
    }

    .summary-card > div:first-child {
        width: 54px;
        height: 54px;
        font-size: 24px;
    }

    .summary-card h3 {
        font-size: 21px;
        line-height: 1.35;
    }

    .summary-card p {
        font-size: 15px;
        line-height: 1.55;
    }

    .summary-card > span {
        font-size: 26px;
    }

    .animation-hero {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .animation-hero-content h2 {
        font-size: 36px;
    }

    .animation-hero-content p {
        font-size: 13px;
        line-height: 1.65;
    }

    .animation-hero-media {
        height: 220px;
    }

    .animation-gallery {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .animation-featured-card {
        grid-column: auto;
    }

    .animation-media,
    .animation-featured-card .animation-media {
        height: 210px;
    }

    .animation-card-content {
        padding: 18px 20px 24px;
    }

    .animation-card-content h3,
    .animation-featured-card .animation-card-content h3 {
        font-size: 21px;
    }

    .animation-card-content p,
    .animation-featured-card .animation-card-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .animation-link,
    .animation-card-content a {
        font-size: 15px;
    }

    .animation-type-card {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        padding: 24px 20px;
    }

    .type-decoration {
        right: 18px;
        top: 14px;
    }

    .type-heart {
        right: 20px;
        bottom: 14px;
    }

    .about-hero {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .about-hero-content h2 {
        font-size: 34px;
    }

    .about-hero-content p {
        font-size: 13px;
        line-height: 1.65;
    }

    .about-hero-image {
        height: 220px;
    }

    .about-info-card,
    .about-contact-card,
    .availability-card {
        padding: 22px 20px;
        border-radius: 18px;
    }

    .section-title-row {
        align-items: flex-start;
    }

    .section-title-row h2 {
        font-size: 23px;
    }

    .what-i-do-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .what-image {
        height: 190px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .project-type-options {
        grid-template-columns: 1fr;
    }

    .availability-item {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        gap: 10px;
        padding: 18px 0;
    }

    .about-contact-card {
        padding: 22px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .project-type-option span {
        min-height: 42px;
        font-size: 12px;
    }
}

/* ========================= */
/* NAVBAR CELULAR */
/* ========================= */
@media (max-width: 600px) {
  .home-hero {
      padding: 28px 20px;
      border-radius: 18px;
  }
  
  .home-hero-content h2 {
      font-size: 34px;
  }
  
  .home-hero-content p {
      font-size: 13px;
  }
  
  .home-hero-buttons {
      width: 100%;
      flex-direction: column;
  }
  
  .hero-btn-primary,
  .hero-btn-secondary {
      width: 100%;
  }
  
  .home-hero-image {
      width: 240px;
      height: 240px;
  }
  .page-container {
    width: calc(100% - 14px);
  }

  .navbar {
    width: 100%;
    min-height: 96px;
    padding: 14px 12px;
    gap: 10px;
    border-radius: 0 0 22px 22px;
  }

  .profile {
    flex: 1;
    min-width: 0;
    gap: 10px;
  }

  .profile-img {
    width: 64px;
    height: 64px;
    padding: 3px;
  }

  .profile-text {
    min-width: 0;
    overflow: hidden;
  }

  .profile-text h1 {
    font-size: clamp(22px, 6.5vw, 32px);
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .profile-text p {
    font-size: clamp(15px, 4.5vw, 21px);
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-toggle {
    width: 64px;
    height: 64px;
    min-width: 64px;
    padding: 0;
    margin-left: 4px;

    display: flex !important;
    align-items: center;
    justify-content: center;

    font-size: 26px;
    border-radius: 18px;
    flex-shrink: 0;
  }

  .nav-menu {
    top: calc(100% + 10px);
    left: 0;
    right: 0;

    width: 100%;
    padding: 16px;
    border-radius: 18px;

    align-items: stretch;
    gap: 10px;
  }

  .nav-menu a {
    width: 100%;
    padding: 14px 16px;
    font-size: 17px;
    text-align: center;
    white-space: normal;
  }

  .language-switch {
    align-self: center;
    width: 128px;
    height: 44px;
    margin-top: 6px;
  }

  .language-switch::before {
    width: 58px;
    height: 32px;
  }

  .language-switch.lang-en::before {
    transform: translateX(62px);
  }

  .home-hero {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .home-hero::before {
        font-size: 22px;
        letter-spacing: 36px;
        line-height: 130px;
        padding: 22px;
    }

    .home-hero-content h2 {
        font-size: 34px;
    }

    .home-hero-content p {
        font-size: 13px;
        line-height: 1.65;
    }

    .home-hero-buttons {
        width: 100%;
        flex-direction: column;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
    }

    .home-hero-image img {
        max-height: 240px;
    }

    .tape-top {
        width: 70px;
        height: 18px;
        right: 34px;
    }

    .floating-sticker {
        width: 34px;
        height: 34px;
        font-size: 20px;
    }

    .section-heading h2 {
        font-size: 21px;
        justify-content: center;
        text-align: center;
    }

    .portfolio-image {
        height: 170px;
    }

    .portfolio-card-content h3 {
        font-size: 16px;
    }

    .summary-card {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

  .footer-avatar-float {
    width: 105px;
    height: 105px;
  }

  .footer-pixel-avatar {
    transform: scale(1.08);
  }

  .video-modal {
        padding: 16px;
    }

    .video-modal-content {
        padding: 12px;
        border-radius: 18px;
    }

    .video-modal-content video {
        border-radius: 14px;
        max-height: 70vh;
    }

    .video-modal-close {
        top: -14px;
        right: -10px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .portfolio-card,
    .summary-card {
        max-width: 100%;
    }

    .portfolio-image {
        height: 180px;
    }

    .portfolio-card-content h3 {
        font-size: 20px;
    }

    .portfolio-card-content p {
        font-size: 14px;
    }

    .section-heading h2 {
        font-size: 24px;
    }

    .animation-hero-media,
    .animation-media,
    .animation-featured-card .animation-media {
        height: 180px;
    }

    .animation-hero-content h2 {
        font-size: 32px;
    }

    .play-button {
        width: 48px;
        height: 48px;
        font-size: 17px;
    }

    .about-hero-content h2 {
        font-size: 30px;
    }

    .about-hero-image {
        height: 190px;
    }

    .what-image {
        height: 160px;
    }

    .quick-fact {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .form-group input,
    .form-group textarea {
        font-size: 12px;
    }
    
    .project-type-options {
        grid-template-columns: 1fr;
    }

    .about-contact-form input[type="text"],
    .about-contact-form input[type="email"],
    .about-contact-form textarea {
        font-size: 12px;
    }

/* Celulares muy angostos */
@media (max-width: 380px) {
  .page-container {
    width: calc(100% - 10px);
  }

  .navbar {
    padding: 12px 10px;
    gap: 8px;
  }

  .profile {
    gap: 8px;
  }

  .profile-img {
    width: 54px;
    height: 54px;
  }

  .profile-text h1 {
    font-size: 20px;
  }

  .profile-text p {
    font-size: 14px;
  }

  .menu-toggle {
    width: 56px;
    height: 56px;
    min-width: 56px;
    font-size: 22px;
    border-radius: 15px;
  }
}
}