MIX · extractor de estilos
Template: estudiocornagliayasociados.com/index.html · mtime: 2025-12-09 00:47
← Volver al álbum Descargar mixed.css Descargar manifest.json
CSS links: 4 Embebidos: 0 Externos: 4 Inline styles: 12 Missing: 0
CSS externos (no embebidos)
CSS embebidos (locales)
No se pudieron embebir CSS locales.
Preview de mixed.css
/* MIXED CSS PACK */
/* Template: estudiocornagliayasociados.com/index.html */
/* Template mtime: 2025-12-09 00:47:36 */

/* external link (no embedded): https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@400;500&display=swap */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css */

/* ===== INLINE <style> BLOCK #1 ===== */
/* === Tipografías iguales al sitio WP === */
:root{
  --font-head: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* texto general */
body{
  font-family: var(--font-body) !important;
  font-weight: 400;
}

/* títulos y marcas */
h1,h2,h3,h4,h5,h6,
.display-1,.display-2,.display-3,.display-4,.display-5,.display-6,
.navbar .navbar-brand,.footer-brand{
  font-family: var(--font-head) !important;
  font-weight: 800; /* bajá a 700 si lo ves muy grueso */
}

/* menús/cta (si querés look más firme) */
.navbar .nav-link,.btn,.btn-brand{
  font-family: var(--font-head) !important;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: none; /* poné uppercase si querés */
}

    :root {
      --brand: #0a3643;
      --brand-light: #1a4e60;
      --accent: #c9a467;
      --accent-dark: #a88446;
      --dark: #0f172a;
      --muted: #6b7280;
      --light: #f8f9fa;
      --lighter: #f1f5f9;
      --white: #ffffff;
      --shadow: 0 10px 30px rgba(10, 54, 67, 0.12);
      --shadow-hover: 0 20px 40px rgba(10, 54, 67, 0.18);
      --radius: 16px;
      --radius-lg: 24px;
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      color: #374151;
      line-height: 1.7;
      overflow-x: hidden;
      background: var(--white);
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', Georgia, serif;
      color: var(--dark);
      letter-spacing: -0.01em;
      font-weight: 700;
    }

    .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
      font-family: 'Playfair Display', Georgia, serif;
      font-weight: 800;
    }

    /* NAVBAR */
    .navbar {
      padding: 1rem 0;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1030;
      transition: var(--transition);
      background: transparent;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .navbar.scrolled {
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 4px 20px rgba(10, 54, 67, 0.1);
      padding: 0.6rem 0;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .navbar .navbar-brand {
      font-family: 'Playfair Display', Georgia, serif;
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--brand);
      display: flex;
      align-items: center;
    }

    .navbar .navbar-brand::before {
      content: "";
      margin-right: 8px;
      font-size: 1.8rem;
    }

    .navbar .nav-link {
      color: var(--dark);
      font-weight: 500;
      margin: 0 0.5rem;
      position: relative;
      padding: 0.5rem 0.8rem !important;
      transition: var(--transition);
    }

    .navbar .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: var(--transition);
      transform: translateX(-50%);
    }

    .navbar .nav-link:hover {
      color: var(--brand);
    }

    .navbar .nav-link:hover::after {
      width: 70%;
    }

    .navbar .btn-brand {
      background: var(--brand);
      color: var(--white);
      border: none;
      border-radius: 10px;
      padding: 0.6rem 1.2rem;
      font-weight: 600;
      transition: var(--transition);
      box-shadow: 0 4px 12px rgba(10, 54, 67, 0.2);
    }

    .navbar .btn-brand:hover {
      background: var(--brand-light);
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(10, 54, 67, 0.3);
    }

    .navbar-toggler {
      border: none;
      padding: 0.5rem;
      font-size: 1.5rem;
      color: var(--brand);
    }

    .navbar-toggler:focus {
      box-shadow: none;
    }

    @media (max-width: 991.98px) {
      .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 1rem;
        border-radius: var(--radius);
        margin-top: 1rem;
        box-shadow: var(--shadow);
      }

      .navbar .nav-link {
        margin: 0.3rem 0;
        padding: 0.8rem 1rem !important;
        border-radius: 8px;
      }

      .navbar .nav-link:hover {
        background: rgba(10, 54, 67, 0.05);
      }
    }

    .hero {
      min-height: 100vh;
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                  url('https://nodo25.netfan.com.ar/estudiocornagliayasociados.com/img/hero.png')
                  center/cover no-repeat;
      display: flex;
      align-items: center;
      position: relative;
      padding-top: 76px;
      color: var(--white);
      overflow: hidden;
    }


    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
      opacity: 0.4;
    }

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

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      line-height: 1.2;
      color: var(--white);
    }

    .hero .lead {
      font-size: 1.25rem;
      margin-bottom: 2rem;
      color: rgba(255, 255, 255, 0.9);
      font-weight: 400;
    }

    .highlight {
      background: linear-gradient(120deg, rgba(201, 164, 103, 0.3) 0%, rgba(201, 164, 103, 0.1) 100%);
      padding: 0.1rem 0.4rem;
      border-radius: 6px;
      border-left: 3px solid var(--accent);
    }

    .btn-brand {
      background: var(--accent);
      color: var(--dark);
      border: none;
      border-radius: 10px;
      padding: 1rem 2rem;
      font-weight: 600;
      transition: var(--transition);
      box-shadow: 0 10px 25px rgba(201, 164, 103, 0.3);
    }

    .btn-brand:hover {
      background: var(--accent-dark);
      color: var(--white);
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(201, 164, 103, 0.4);
    }

    .btn-outline-light {
      border: 2px solid rgba(255, 255, 255, 0.8);
      color: var(--white);
      border-radius: 10px;
      padding: 1rem 2rem;
      font-weight: 600;
      transition: var(--transition);
    }

    .btn-outline-light:hover {
      background: var(--white);
      color: var(--brand);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    }

    .feature-list {
      margin-top: 2rem;
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
      margin-bottom: 0.8rem;
      color: rgba(255, 255, 255, 0.9);
    }

    .feature-icon {
      color: var(--accent);
      font-size: 1.2rem;
      margin-top: 0.2rem;
      flex-shrink: 0;
    }

    /* SECTIONS GENERAL STYLES */
    .section {
      padding: 6rem 0;
      position: relative;
    }

    .section-title {
      text-align: center;
      margin-bottom: 3.5rem;
      position: relative;
    }

    .section-title h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
    }

    .section-title h2::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--accent), var(--accent-dark));
      margin: 1rem auto 0;
      border-radius: 4px;
    }

    .section-title p {
      color: var(--muted);
      max-width: 600px;
      margin: 0 auto;
    }

    .section-light {
      background: var(--white);
    }

    .section-muted {
      background: var(--lighter);
    }

    .section-dark {
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
      color: var(--white);
    }

    .section-dark h2,
    .section-dark h3,
    .section-dark h4,
    .section-dark h5,
    .section-dark h6 {
      color: var(--white);
    }

    /* ABOUT SECTION */
    .about-section {
      position: relative;
      overflow: hidden;
    }

    .about-section::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 300px;
      height: 300px;
      background: linear-gradient(135deg, rgba(201, 164, 103, 0.1) 0%, rgba(201, 164, 103, 0.05) 100%);
      border-radius: 50%;
      z-index: 0;
    }

    .about-section::after {
      content: '';
      position: absolute;
      bottom: -100px;
      left: -100px;
      width: 250px;
      height: 250px;
      background: linear-gradient(135deg, rgba(10, 54, 67, 0.1) 0%, rgba(10, 54, 67, 0.05) 100%);
      border-radius: 50%;
      z-index: 0;
    }

    .about-eyebrow {
      display: inline-block;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.8rem;
      padding: 0.4rem 1rem;
      border-radius: 100px;
      background: rgba(10, 54, 67, 0.1);
      color: var(--brand);
      margin-bottom: 1rem;
    }

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

    .about-image {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

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

    .about-image img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .about-badge {
      position: absolute;
      left: 20px;
      bottom: 20px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      color: var(--dark);
      padding: 0.8rem 1.2rem;
      border-radius: 12px;
      font-size: 0.9rem;
      font-weight: 600;
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .about-badge i {
      color: var(--accent);
    }

    /* SERVICES SECTION */
    .service-card {
      border: none;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      background: var(--white);
      transition: var(--transition);
      height: 100%;
      overflow: hidden;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
    }

    .service-card-header {
      padding: 2rem 2rem 0;
      border: none;
      background: transparent;
    }

    .service-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 70px;
      height: 70px;
      border-radius: 18px;
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
      color: var(--white);
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
    }

    .service-card-body {
      padding: 0 2rem 2rem;
    }

    .service-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--brand);
    }

    .service-card p {
      color: var(--muted);
      margin-bottom: 1rem;
    }

    .service-features {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .service-features li {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
      color: var(--dark);
      font-size: 0.95rem;
    }

    .service-features li i {
      color: var(--accent);
    }

    .alert-brand {
      background: linear-gradient(135deg, rgba(10, 54, 67, 0.05) 0%, rgba(10, 54, 67, 0.02) 100%);
      border: 1px solid rgba(10, 54, 67, 0.1);
      border-radius: var(--radius);
      padding: 1.5rem;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .alert-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      border-radius: 12px;
      background: var(--brand);
      color: var(--white);
      font-size: 1.3rem;
      margin-right: 1rem;
    }

    /* CONTACT SECTION */
    .contact-form {
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      padding: 2.5rem;
      height: 100%;
    }

    .form-control {
      padding: 0.8rem 1.2rem;
      border: 1px solid #e2e8f0;
      border-radius: 10px;
      transition: var(--transition);
    }

    .form-control:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 0.25rem rgba(201, 164, 103, 0.25);
    }

    .contact-info {
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      color: var(--white);
      height: 100%;
    }

    .contact-info h3 {
      margin-bottom: 1.5rem;
      color: var(--white);
      position: relative;
      padding-bottom: 0.8rem;
    }

    .contact-info h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--accent);
      border-radius: 3px;
    }

    .contact-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .contact-list li {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .contact-list i {
      font-size: 1.2rem;
      color: var(--accent);
      margin-top: 0.2rem;
    }

    .contact-list a {
      color: var(--white);
      text-decoration: none;
      transition: var(--transition);
    }

    .contact-list a:hover {
      color: var(--accent);
    }

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

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* FOOTER */
    footer {
      background: linear-gradient(135deg, var(--brand) 0%, var(--dark) 100%);
      color: rgba(255, 255, 255, 0.8);
      padding: 4rem 0 2rem;
    }

    .footer-brand {
      font-family: 'Playfair Display', Georgia, serif;
      font-weight: 800;
      font-size: 1.8rem;
      color: var(--white);
      margin-bottom: 1rem;
      display: inline-block;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 0.8rem;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: var(--transition);
    }

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

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
      font-size: 1.2rem;
      transition: var(--transition);
    }

    .social-links a:hover {
      background: var(--accent);
      transform: translateY(-3px);
    }

    .copyright {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 2rem;
      margin-top: 3rem;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.6);
    }

    /* WhatsApp FLOAT */
    .wa-float {
      position: fixed;
      right: 25px;
      bottom: 25px;
      z-index: 1060;
      width: 65px;
      height: 65px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #25D366;
      color: var(--white);
      font-size: 30px;
      box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
      transition: var(--transition);
      animation: pulse 2s infinite;
    }

    .wa-float:hover {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 20px 40px rgba(37, 211, 102, 0.5);
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
      }
      70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }

    /* ANIMATIONS */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .fade-in {
      animation: fadeIn 1s ease forwards;
    }

    .delay-1 { animation-delay: 0.2s; }
    .delay-2 { animation-delay: 0.4s; }
    .delay-3 { animation-delay: 0.6s; }
    .delay-4 { animation-delay: 0.8s; }

    /* RESPONSIVE STYLES */
    @media (max-width: 1199.98px) {
      .hero h1 {
        font-size: 3rem;
      }
    }

    @media (max-width: 991.98px) {
      .hero {
        min-height: auto;
        padding: 120px 0 80px;
        text-align: center;
      }

      .hero h1 {
        font-size: 2.5rem;
      }

      .hero .lead {
        font-size: 1.1rem;
      }

      .section {
        padding: 4rem 0;
      }

      .section-title h2 {
        font-size: 2rem;
      }

      .about-image {
        margin-top: 3rem;
      }
    }

    @media (max-width: 767.98px) {
      .hero h1 {
        font-size: 2rem;
      }

      .btn-brand, .btn-outline-light {
        width: 100%;
        margin-bottom: 1rem;
      }

      .hero .d-flex {
        flex-direction: column;
      }

      .navbar-brand {
        font-size: 1.3rem;
      }

      .contact-form, .contact-info {
        padding: 1.5rem;
      }
    }

    @media (max-width: 575.98px) {
      .hero {
        padding: 100px 0 60px;
      }

      .hero h1 {
        font-size: 1.8rem;
      }

      .section-title h2 {
        font-size: 1.8rem;
      }

      .service-card-header, .service-card-body {
        padding: 1.5rem;
      }
    }

/* ===== INLINE <style> BLOCK #2 ===== */
.carousel-indicators{display:none!important;}

/* ===== INLINE <style> BLOCK #3 ===== */
/* Fondo negro y textos blancos */
  .navbar.bg-black { background:#000 !important; }
  .navbar-dark .navbar-nav .nav-link { color:#fff; opacity:.9; }
  .navbar-dark .navbar-nav .nav-link:hover,
  .navbar-dark .navbar-nav .nav-link:focus { color:#fff; opacity:1; }
  
  /* Toggler con líneas blancas (usa el SVG de Bootstrap) */
  .navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .navbar-toggler { border-color: rgba(255,255,255,.4); }
  .navbar-toggler:focus { box-shadow: 0 0 0 .1rem rgba(255,255,255,.4); }
  
  /* Menú desplegado en mobile con fondo negro */
  @media (max-width: 991.98px) {
    .navbar .navbar-collapse {
      background:#000;
      padding: .75rem 1rem;
      border-radius: .5rem;
      margin-top:.5rem;
    }
  }
  
  /* Botón WhatsApp con contraste sobre negro (ajustá a tu paleta) */
  .btn-brand {
    background:#25D366;
    color:#000;
    border:0;
  }
  .btn-brand:hover { filter: brightness(0.9); color:#000; }

/* ===== INLINE <style> BLOCK #4 ===== */
/* === HERO + STICKER (consolidado) === */

/* Reservo espacio para el sticker y evito 100vh duro en mobile */
.hero{
  --sticker-h: clamp(200px, 26vw, 360px); /* alto del carrusel “pegatina” */
  padding-top: 84px;                      /* bajo navbar fija */
  padding-bottom: calc(var(--sticker-h) + 28px); /* espacio para el sticker */
  min-height: 85vh;                       /* más amable que 100vh en phone */
  position: relative;
  overflow: visible;
}
.hero .hero-content{ margin-top: 0; }
@media (min-width: 992px){
  .hero .hero-content{ transform: translateY(-16px); } /* un leve lift en desktop */
}

/* Sticker pegado al borde inferior del hero */
.hero-sticker{
  --sticker-overlap: 0px;   /* si querés que “cuelgue”: -12px */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: var(--sticker-overlap);
  z-index: 5;

  width: 100%;              /* ancho real del hero (no 100vw) */
  max-width: 1700px;        /* límite opcional en pantallas enormes */
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  border-radius: 0;
}

/* Grilla multi-item: 3 desktop / 2 tablet / 1 phone */
.sticker-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0; padding: 0;
}
.sticker-tile{
  height: var(--sticker-h);
  overflow: hidden;
}
.sticker-img{
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; user-select: none; -webkit-user-drag: none;
}

/* Controles del carrusel */
.hero-sticker .carousel-indicators{ margin-bottom: .6rem; }
.hero-sticker .carousel-indicators [data-bs-target]{
  width:10px;height:10px;border-radius:50%;
  background: rgba(255,255,255,.85);
}
.hero-sticker .carousel-indicators .active{ background:#c9a467; }
.hero-sticker .carousel-control-prev-icon,
.hero-sticker .carousel-control-next-icon{ filter: drop-shadow(0 2px 6px rgba(0,0,0,.5)); }

/* Responsive */
@media (max-width: 992px){
  .sticker-grid{ grid-template-columns: repeat(2, 1fr); }
  .sticker-grid .sticker-tile:nth-child(3){ display:none; } /* muestra 2 por slide */
}
@media (max-width: 576px){
  .sticker-grid{ grid-template-columns: 1fr; }
  .sticker-grid .sticker-tile:nth-child(n+2){ display:none; } /* 1 por slide */
  .hero{ padding-top: 72px; } /* un toque menos bajo la navbar en phone */
}

/* ===== INLINE <style> BLOCK #5 ===== */
/* === ESPECIALIDADES === */
  .especialidades{ padding-top:4.5rem; padding-bottom:4.5rem; }

  .especialidades .eyebrow{
    letter-spacing:.18em; font-weight:700; color:#6b7280; font-size:.9rem; display:block; margin-bottom:.5rem;
  }
  .especialidades .title-accent{
    width:90px; height:4px; background:var(--accent); border-radius:2px;
  }
  .especialidades .link-more{
    display:inline-flex; align-items:center; gap:.25rem; font-weight:600; text-decoration:none;
    color:var(--dark); border-bottom:2px solid transparent; transition:var(--transition);
  }
  .especialidades .link-more:hover{ color:var(--brand); border-color:var(--accent); }

  /* Icon-box (mismo look dorado que “Áreas”) */
  .icon-box{
    display:flex; gap:14px; align-items:flex-start;
    padding:.25rem 0 1.25rem 0; border-bottom:1px solid #eef2f7;
  }
  @media (min-width:768px){ .icon-box:nth-child(n+3){ border-bottom:0; } }

  .icon-badge{
    width:58px; height:58px; border-radius:16px; flex:0 0 58px;
    display:flex; align-items:center; justify-content:center;
    background:linear-gradient(180deg, rgba(201,164,103,.18), rgba(201,164,103,.12));
    color:#a88446;
    box-shadow: inset 0 0 0 1px rgba(201,164,103,.28), 0 6px 14px rgba(10,54,67,.08);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  }
  .icon-badge i{ font-size:24px; line-height:1; }
  .icon-box:hover .icon-badge{
    transform: translateY(-2px) scale(1.06);
    background:linear-gradient(180deg, rgba(201,164,103,.22), rgba(201,164,103,.14));
    box-shadow: inset 0 0 0 1px rgba(201,164,103,.34), 0 10px 22px rgba(10,54,67,.12);
  }

  .icon-box-content h3{ color:var(--dark); margin-top:2px; }
  .icon-box-content p{ color:#4b5563; }

/* ===== INLINE <style> BLOCK #6 ===== */
/* ==== VIDEOS GRID ==== */
.videos-section{ padding-top:4rem; padding-bottom:4rem; }

.videos-title h2{ color: var(--dark); }
.videos-accent{
  width:90px; height:4px; background:var(--accent);
  border-radius:3px; display:inline-block; margin-top:.25rem;
}

/* Grid responsive */
.video-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 991.98px){
  .video-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px){
  .video-grid{ grid-template-columns: 1fr; gap:18px; }
}

/* Card + embed 16:9 */
.video-card{
  background:#fff; border-radius:14px; overflow:hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.video-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.video-embed{
  aspect-ratio: 16/9;
  position: relative; width:100%; background:#000;
}
.video-embed iframe{
  position:absolute; inset:0; width:100%; height:100%; border:0; display:block;
}

/* Copy debajo del grid */
.videos-copy .videos-subtitle{
  font-weight:800; color: var(--dark);
  margin-bottom:.5rem; letter-spacing:-.01em;
}
.videos-copy p{ line-height:1.75; }

/* Ajustes del CTA (usa tu .btn-brand existente) */
.videos-copy .btn.btn-brand{
  padding:.85rem 1.6rem; font-weight:700; border-radius:10px;
}

/* ===== INLINE <style> BLOCK #7 ===== */
/* ===== Nosotros: imagen redondeada y más chica, sin marco ===== */
.brand-pic{
               /* tamaño más chico en desktop */
  margin-inline: auto;          /* centra en mobile y tablet */
}

.brand-image{
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: initial;

            /* mantiene cuadrada */
  
  object-position: center;
  border-radius: 26px;          /* redondeado */
  box-shadow: 0 10px 24px rgba(0,0,0,.12); /* sombra suave (podés quitarla) */
  background: transparent;             /* de fondo por si el logo es png con transparencias */
  display: block;
}

/* pisa cualquier estilo viejo del marco gris */
.brand-frame, .brand-frame::before, .brand-frame::after{
  all: unset !important;
}

/* responsive: un toque más chica en mobile */
@media (max-width: 575.98px){
  .brand-pic{ max-width: 280px; }
  .brand-image{ border-radius: 22px; }
}

  /* ===== NOSOTROS ===== */
.about-hero{ padding-top:4.5rem; padding-bottom:4.5rem; }

.about-eyebrow{
  letter-spacing:.18em; font-weight:700; color:#6b7280; font-size:.9rem; display:block; margin-bottom:.25rem;
}

.about-accent{
  width:90px; height:4px; background:var(--accent);
  border-radius:3px;
}

.about-link{
  display:inline-flex; align-items:center; gap:.25rem;
  font-weight:700; color:var(--dark); text-decoration:none; border-bottom:2px solid transparent;
  transition: var(--transition);
}
.about-link:hover{ color:var(--brand); border-color:var(--accent); }

/* Tarjeta del logo (cuadrado 1:1 con marco suave) */
.brand-frame{
  border-radius:28px;
  border:8px solid transparent;
  background:
    linear-gradient(#0b0b0b, #0b0b0b) padding-box,                        /* fondo negro dentro */
    linear-gradient(145deg,#d8dde3,#b8c0c9) border-box;                   /* “marco” claro */
  box-shadow:
    0 12px 28px rgba(10,54,67,.08),
    0 22px 48px rgba(10,54,67,.06);
  padding:18px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.brand-frame:hover{
  transform: translateY(-4px);
  box-shadow:
    0 16px 36px rgba(10,54,67,.12),
    0 28px 60px rgba(10,54,67,.10);
}

.brand-image{
  width:100%; aspect-ratio:1/1; display:block;
  object-fit:cover; object-position:center;
  border-radius:20px;
  /* si tu logo es PNG con fondo transparente y querés “contain”:
     object-fit: contain; background:#0b0b0b; padding:16px; */
}

/* Responsive */
@media (max-width: 991.98px){
  .about-hero{ text-align:left; }
  .brand-frame{ max-width:520px; margin-inline:auto; }
}
@media (max-width: 575.98px){
  .about-hero{ padding-top:3.5rem; padding-bottom:3.5rem; }
  .brand-frame{ padding:14px; border-radius:24px; }
}

/* ===== INLINE <style> BLOCK #8 ===== */
/* === FIX brand image: wider, no crop, no background === */
.about-hero .brand-pic{ max-width: 640px; margin-inline: auto; }
.about-hero .brand-image{
  width:100%; height:auto; aspect-ratio:auto; object-fit:initial;
  background: transparent; padding: 0;
}

/* ===== INLINE <style> BLOCK #9 ===== */
/* ===== TESTIMONIOS ===== */
.testi-section{ padding-top:4.5rem; padding-bottom:4.5rem; }

.testi-eyebrow{
  display:inline-block; letter-spacing:.18em; text-transform:uppercase;
  font-weight:700; font-size:.9rem; color:#6b7280; margin-bottom:.25rem;
}

.testi-accent{
  width:90px; height:4px; background:var(--accent);
  border-radius:3px; display:inline-block;
}

/* Card */
.testi-card{
  background:#fff; border-radius:14px; padding:1.6rem 1.8rem 1.4rem;
  box-shadow: 0 10px 24px rgba(10,54,67,.08);
  position:relative; overflow:hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.testi-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.testi-card p{ color:#4b5563; line-height:1.75; }

/* Comillas grandes decorativas */
.testi-quote{
  font-family: Georgia, 'Times New Roman', serif;
  font-size:40px; line-height:1; color:var(--accent); margin-bottom:.25rem;
  user-select:none;
}

@media (max-width: 575.98px){
  .testi-card{ padding:1.4rem 1.4rem 1.2rem; }
  .testi-quote{ font-size:36px; }
}

/* ===== INLINE <style> BLOCK #10 ===== */
.eyebrow{letter-spacing:.2em;font-size:.8rem;text-transform:uppercase;opacity:.7}
  .section-title{font-weight:800}
  .title-underline{width:70px;height:3px;background:#c69c5e;border-radius:2px;margin-top:.5rem}
  .blog-card{border:0;border-radius:14px;overflow:hidden;transition:transform .2s, box-shadow .2s}
  .blog-card:hover{transform:translateY(-4px);box-shadow:0 .8rem 2rem rgba(0,0,0,.12)}
  .object-fit-cover{object-fit:cover}

  .modal-content{border:0;border-radius:16px;overflow:hidden}
  .modal-img-wrap{width:100%;height:280px;overflow:hidden}
  .modal-img-wrap img{width:100%;height:100%;object-fit:cover;display:block}

  /* Asegura que el footer del modal pueda alinear a la izquierda sin conflictos */
  .modal-footer{gap:.5rem}

/* ===== INLINE <style> BLOCK #11 ===== */
/* ===== CTA previa al footer ===== */
  .footer-cta{
  position: relative;
  isolation: isolate;
  color: #fff;
  padding: 68px 0 84px;            /* altura como la ref */
  text-align: center;
  }
  .footer-cta__title{
  font-weight: 800;
  letter-spacing: -0.01em;
  }
  .footer-cta__sub{ opacity: .9; }
  .btn-accent{
  background: var(--accent);
  color: #1c1c1c;
  border: 0;
  padding: .9rem 1.6rem;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(201,164,103,.25);
  }
  .btn-accent:hover{
  background: var(--accent-dark);
  color:#fff;
  transform: translateY(-2px);
  }

  /* fondo con imagen oscurecida */
  .footer-cta__bg{
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(0,0,0,.65), rgba(0,0,0,.65)),
    url('https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  z-index: -1;
  }

  /* ===== Footer oscuro ===== */
  .site-footer{
  background: #0b0f14;           /* negro profundo */
  color: rgba(255,255,255,.85);
  padding: 38px 0 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  }
  .footer-head{
  font-weight: 800;
  color:#fff;
  margin-bottom: 14px;
  }
  .footer-list{
  list-style: none; padding: 0; margin: 0;
  }
  .footer-list li{
  display: flex; gap:.6rem; align-items: center;
  margin: .55rem 0;
  }
  .footer-list i{
  color: var(--accent);
  font-size: 1.05rem;
  width: 1.2rem; text-align: center; flex: 0 0 auto;
  }
  .footer-list a{
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color .2s ease;
  }
  .footer-list a:hover{ color:#fff; }

  /* copy */
  .footer-copy{
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 26px;
  padding-top: 18px;
  }

  @media (max-width: 991.98px){
  .footer-cta{ padding: 56px 0 72px; }
  }
  @media (max-width: 575.98px){
  .footer-cta__title{ font-size: 1.8rem; }
  }
  /* === Fix colores en la banda CTA === */
  .footer-cta,
  .footer-cta h1,
  .footer-cta h2,
  .footer-cta .footer-cta__title,
  .footer-cta p,
  .footer-cta a:not(.btn) {
  color: #fff !important;     /* texto blanco sí o sí */
  }

  /* Opcional: un leve halo para legibilidad sobre la foto */
  .footer-cta h1,
  .footer-cta h2,
  .footer-cta p {
  text-shadow: 0 2px 6px rgba(0,0,0,.35);
  }

  /* Si querés que el botón también sea blanco con borde */
  .footer-cta .btn-accent {
  background: var(--accent);
  color: #111 !important;       /* dejalo oscuro si usás fondo dorado */
  }

/* ===== INLINE <style> BLOCK #12 ===== */
/* Instagram FLOAT (independiente del WhatsApp) */
    .ig-float{
      position:fixed;
      right:25px;
      bottom:100px;            /* queda arriba del WhatsApp (que está en 25px) */
      z-index:1060;
      width:65px; height:65px;
      border-radius:50%;
      display:flex; align-items:center; justify-content:center;
      background:#E4405F;      /* color IG */
      color:#fff;
      font-size:28px;
      box-shadow:0 15px 30px rgba(228,64,95,.35);
      transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease;
      animation: ig-pulse 2s infinite;
    }
    .ig-float:hover{
      transform:scale(1.1) rotate(5deg);
      box-shadow:0 20px 40px rgba(228,64,95,.45);
      text-decoration:none;
      color:#fff;
    }
    @keyframes ig-pulse{
      0%   { box-shadow:0 0 0 0 rgba(228,64,95,.6); }
      70%  { box-shadow:0 0 0 12px rgba(228,64,95,0); }
      100% { box-shadow:0 0 0 0 rgba(228,64,95,0); }
    }
    /* Evitar superposición en pantallas muy chicas */
    @media (max-width: 420px){
      .ig-float{ bottom:95px; right:20px; width:58px; height:58px; font-size:26px; }
    }
    /* Respeta accesibilidad si el usuario reduce animaciones */
    @media (prefers-reduced-motion: reduce){
      .ig-float{ animation:none; }
    }

      
Manifest preview
{
    "template": "estudiocornagliayasociados.com/index.html",
    "template_mtime": 1765241256,
    "template_mtime_human": "2025-12-09T00:47:36+00:00",
    "css_links_found": [
        "https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@400;500&display=swap",
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
        "https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css",
        "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"
    ],
    "css_links_external": [
        "https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@400;500&display=swap",
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
        "https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css",
        "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"
    ],
    "css_links_embedded": [],
    "inline_style_blocks": 12,
    "inline_imports_external": [],
    "inline_imports_embedded": [],
    "missing_css_files": []
}