  /* ========== RESET & BASE ========== */
  *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --emerald-100: #d1fae5;
    --emerald-50:  #ecfdf5;
    --cream-50:    #fefce8;
    --cream-100:   #fef9c3;
    --cream-200:   #fef08a;
    --cream-300:   #fde68a;
    --sand:        #faf8f0;
    --sand-dark:   #f5f0e1;
    --text-dark:   #1a2e23;
    --text-mid:    #3d5a4c;
    --text-light:  #6b8f7e;
    --white:       #ffffff;
    --radius-sm:   12px;
    --radius-md:   20px;
    --radius-lg:   28px;
    --shadow-sm:   0 2px 8px rgba(6, 78, 59, 0.06);
    --shadow-md:   0 8px 30px rgba(6, 78, 59, 0.10);
    --shadow-lg:   0 16px 50px rgba(6, 78, 59, 0.12);
    --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 20px;
  }

  body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text-dark);
    background: var(--sand);
    line-height: 1.6;
    overflow-x: hidden;
  }

  h1, h2, h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    line-height: 1.2;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

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

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ========== HIGHLIGHT ========== */
  .highlight {
    color: var(--emerald-700);
    position: relative;
  }

  .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--emerald-100);
    border-radius: 4px;
    z-index: -1;
  }

  /* ========== SECTION TAG ========== */
  .section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--emerald-700);
    background: var(--emerald-50);
    border: 1px solid var(--emerald-100);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
  }

  .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 16px;
  }

  .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.7;
  }

  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-header .section-subtitle {
    margin: 0 auto;
  }

  /* ========== SIDEBAR ========== */
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 240px;
    height: 100vh;
    background: var(--emerald-900);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
  }

  .sidebar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 40px;
  }

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

  .logo-text {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--cream-50);
    letter-spacing: -0.01em;
  }

  .logo-icon {
    flex-shrink: 0;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
  }

  .nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(254, 252, 232, 0.6);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-align: left;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--cream-50);
    background: rgba(254, 252, 232, 0.1);
  }

  .nav-link.active {
    background: rgba(254, 252, 232, 0.15);
  }

  .sidebar-footer {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .sidebar-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(254, 252, 232, 0.5);
    transition: var(--transition);
  }

  .sidebar-phone:hover {
    color: var(--cream-50);
  }

  .copyright {
    font-size: 0.7rem;
    color: rgba(254, 252, 232, 0.3);
  }

  /* ========== MOBILE HEADER ========== */
  .mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--emerald-900);
    z-index: 100;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
  }

  .menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--cream-50);
    border-radius: var(--radius-sm);
    transition: var(--transition);
  }

  .menu-toggle:hover {
    background: rgba(254, 252, 232, 0.1);
  }

  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6, 78, 59, 0.97);
    z-index: 99;
    align-items: center;
    justify-content: center;
  }

  .mobile-overlay.open {
    display: flex;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .mobile-nav-link {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.75rem;
    color: var(--cream-50);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
  }

  .mobile-nav-link:hover {
    background: rgba(254, 252, 232, 0.1);
  }

  .mobile-contact {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .mobile-phone, .mobile-email {
    font-size: 1rem;
    color: rgba(254, 252, 232, 0.7);
    transition: var(--transition);
  }

  .mobile-phone:hover, .mobile-email:hover {
    color: var(--cream-50);
  }

  /* ========== MAIN CONTENT ========== */
  .main-content {
    margin-left: 240px;
  }

  /* ========== SECTION BASE ========== */
  .section {
    padding: 100px 0;
  }

  /* ========== HERO ========== */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sand) 0%, var(--cream-50) 50%, var(--emerald-50) 100%);
    padding: 0;
  }

  .hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(6, 95, 70, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(254, 235, 138, 0.3) 0%, transparent 50%);
    pointer-events: none;
  }

  .hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .hero-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--emerald-700);
    background: var(--white);
    border: 1px solid var(--emerald-100);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
  }

  .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
  }

  .hero-stats {
    display: flex;
    gap: 32px;
    align-items: center;
  }

  .stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .stat-number {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.75rem;
    color: var(--emerald-800);
  }

  .stat-label {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
  }

  .stat-divider {
    width: 1px;
    height: 40px;
    background: var(--emerald-100);
  }

  .hero-image-wrapper {
    position: relative;
  }

  .hero-image {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }

  .hero-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--emerald-100);
    border-radius: var(--radius-lg);
    z-index: -1;
  }

  /* ========== BUTTONS ========== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
  }

  .btn-primary {
    background: var(--emerald-800);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(6, 95, 70, 0.3);
  }

  .btn-primary:hover {
    background: var(--emerald-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 95, 70, 0.35);
  }

  .btn-outline {
    background: var(--white);
    color: var(--emerald-800);
    border: 2px solid var(--emerald-200);
  }

  .btn-outline:hover {
    border-color: var(--emerald-600);
    background: var(--emerald-50);
    transform: translateY(-2px);
  }

  .btn-full {
    width: 100%;
  }

  /* ========== SERVICIOS ========== */
  .servicios {
    background: var(--white);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .service-card {
    background: var(--sand);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: var(--transition);
    border: 1px solid transparent;
  }

  .service-card:hover {
    background: var(--white);
    border-color: var(--emerald-100);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
  }

  .service-icon {
    width: 56px;
    height: 56px;
    background: var(--emerald-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-800);
    margin-bottom: 20px;
    transition: var(--transition);
  }

  .service-card:hover .service-icon {
    background: var(--emerald-800);
    color: var(--cream-50);
  }

  .service-title {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
  }

  .service-desc {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
  }

  /* ========== NOSOTROS ========== */
  .nosotros {
    background: var(--sand);
  }

  .nosotros-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .nosotros-images {
    position: relative;
  }

  .nosotros-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }

  .nosotros-img-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
  }

  .nosotros-img-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 240px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--sand);
  }

  .nosotros-img-float img {
    width: 100%;
    height: 280px;
    object-fit: cover;
  }

  .nosotros-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--emerald-800);
    color: var(--cream-50);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
  }

  .badge-number {
    display: block;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2rem;
    line-height: 1;
  }

  .badge-label {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.8;
  }

  .nosotros-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .nosotros-text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
  }

  .nosotros-values {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
  }

  .value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
  }

  .value-check {
    width: 24px;
    height: 24px;
    background: var(--emerald-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-800);
    flex-shrink: 0;
  }

  /* ========== PROPIEDADES ========== */
  .propiedades {
    background: var(--white);
  }

  .properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 56px;
  }

  .property-card {
    background: var(--sand);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
  }

  .property-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--emerald-100);
  }

  .property-img {
    position: relative;
    overflow: hidden;
    height: 240px;
  }

  .property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .property-card:hover .property-img img {
    transform: scale(1.05);
  }

  .property-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--emerald-800);
    color: var(--cream-50);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.04em;
  }

  .property-info {
    padding: 24px;
  }

  .property-title {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 8px;
  }

  .property-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 16px;
  }

  .property-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .property-features span {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-mid);
    background: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid var(--emerald-100);
  }

  .properties-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .properties-cta p {
    font-size: 1.1rem;
    color: var(--text-mid);
  }

  /* ========== TESTIMONIOS ========== */
  .testimonios {
    background: linear-gradient(135deg, var(--emerald-900) 0%, var(--emerald-800) 100%);
    color: var(--cream-50);
  }

  .testimonios .section-tag {
    background: rgba(254, 252, 232, 0.15);
    border-color: rgba(254, 252, 232, 0.25);
    color: var(--cream-200);
  }

  .testimonios .section-title {
    color: var(--cream-50);
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .testimonial-card {
    background: rgba(254, 252, 232, 0.08);
    border: 1px solid rgba(254, 252, 232, 0.12);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: var(--transition);
  }

  .testimonial-card:hover {
    background: rgba(254, 252, 232, 0.12);
    transform: translateY(-4px);
  }

  .testimonial-quote {
    margin-bottom: 20px;
  }

  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(254, 252, 232, 0.85);
    margin-bottom: 24px;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .author-avatar {
    width: 44px;
    height: 44px;
    background: var(--emerald-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.1rem;
    color: var(--cream-50);
  }

  .author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .author-name {
    font-weight: 600;
    color: var(--cream-50);
    font-size: 0.95rem;
  }

  .author-detail {
    font-size: 0.8rem;
    color: rgba(254, 252, 232, 0.5);
  }

  /* ========== CONTACTO ========== */
  .contacto {
    background: var(--sand);
  }

  .contacto-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .contacto-text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 40px;
  }

  .contacto-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .contact-item {
    display: flex;
    gap: 16px;
    align-items: start;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    background: var(--emerald-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-800);
    flex-shrink: 0;
  }

  .contact-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    margin-bottom: 4px;
  }

  .contact-value {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
  }

  .contact-value a {
    color: var(--emerald-700);
    transition: var(--transition);
  }

  .contact-value a:hover {
    color: var(--emerald-600);
  }

  .contacto-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--emerald-50);
  }

  .form-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 28px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--emerald-100);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--sand);
    transition: var(--transition);
    outline: none;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--emerald-600);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(6, 95, 70, 0.08);
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: var(--text-light);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }

  .form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    padding: 40px 20px;
    color: var(--emerald-800);
  }

  .form-success.show {
    display: flex;
  }

  .form-success p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-mid);
  }

  /* ========== FOOTER ========== */
  .footer {
    background: var(--emerald-900);
    color: var(--cream-50);
    padding: 60px 0 0;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
  }

  .footer-desc {
    font-size: 0.9rem;
    color: rgba(254, 252, 232, 0.6);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-links a {
    font-size: 0.9rem;
    color: rgba(254, 252, 232, 0.6);
    transition: var(--transition);
  }

  .footer-links a:hover {
    color: var(--cream-50);
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-contact a {
    font-size: 0.9rem;
    color: rgba(254, 252, 232, 0.6);
    transition: var(--transition);
  }

  .footer-contact a:hover {
    color: var(--cream-50);
  }

  .footer-contact span {
    font-size: 0.85rem;
    color: rgba(254, 252, 232, 0.4);
  }

  .footer-bottom {
    border-top: 1px solid rgba(254, 252, 232, 0.1);
    padding: 24px 0;
  }

  .footer-bottom p {
    font-size: 0.8rem;
    color: rgba(254, 252, 232, 0.35);
    text-align: center;
  }

  /* ========== ANIMATIONS ========== */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 1024px) {
    .sidebar {
      width: 200px;
    }
    .main-content {
      margin-left: 200px;
    }
    .hero-container {
      gap: 40px;
    }
    .nosotros-container {
      gap: 48px;
    }
    .contacto-container {
      gap: 48px;
    }
  }

  @media (max-width: 900px) {
    .sidebar {
      display: none;
    }
    .mobile-header {
      display: flex;
    }
    .main-content {
      margin-left: 0;
      padding-top: 64px;
    }
    .section {
      padding: 72px 0;
    }
    .hero-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .hero-subtitle {
      margin: 0 auto 36px;
    }
    .hero-actions {
      justify-content: center;
    }
    .hero-stats {
      justify-content: center;
    }
    .hero-image-wrapper {
      max-width: 400px;
      margin: 0 auto;
    }
    .hero-image {
      height: 450px;
    }
    .hero-image-accent {
      width: 120px;
      height: 120px;
      bottom: -10px;
      right: -10px;
    }
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .nosotros-container {
      grid-template-columns: 1fr;
    }
    .nosotros-images {
      max-width: 440px;
      margin: 0 auto;
    }
    .nosotros-img-main img {
      height: 400px;
    }
    .nosotros-img-float {
      width: 180px;
      right: -20px;
      bottom: -20px;
    }
    .nosotros-img-float img {
      height: 210px;
    }
    .properties-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .contacto-container {
      grid-template-columns: 1fr;
    }
    .footer-inner {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 600px) {
    .container {
      padding: 0 16px;
    }
    .section {
      padding: 56px 0;
    }
    .hero {
      min-height: auto;
      padding: 56px 0;
    }
    .hero-title {
      font-size: 2rem;
    }
    .hero-stats {
      flex-direction: column;
      gap: 16px;
    }
    .stat-divider {
      width: 40px;
      height: 1px;
    }
    .services-grid {
      grid-template-columns: 1fr;
    }
    .properties-grid {
      grid-template-columns: 1fr;
    }
    .testimonials-grid {
      grid-template-columns: 1fr;
    }
    .contacto-form-wrapper {
      padding: 24px;
    }
    .footer-inner {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .nosotros-img-float {
      display: none;
    }
  }
