/* MIXED CSS PACK */
/* Template: estudiojuridicovelazquezyasoc.com.ar/index.html */
/* Template mtime: 2025-07-04 14:52:20 */

/* external link (no embedded): https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700&display=swap */
/* external link (no embedded): https://unpkg.com/aos@2.3.1/dist/aos.css */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css */

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
            --primary-color: #6a1b1a;
            --primary-light: #8d2a28;
            --secondary-color: #1a3e6a;
            --accent-color: #d4af37;
            --accent-light: #e8c96a;
            --light-bg: #f8f5f0;
            --dark-text: #333333;
            --light-text: #f8f9fa;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            --shadow-sm: 0 2px 15px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: #fff;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .text-serif {
            font-family: 'Playfair Display', serif;
        }
        
        /* Navbar */
        .navbar {
            background-color: rgba(106, 27, 26, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            padding: 20px 0;
        }
        
        .navbar.scrolled {
            padding: 12px 0;
            background-color: rgba(106, 27, 26, 0.98);
            box-shadow: var(--shadow-md);
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand span {
            color: var(--accent-color);
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: var(--transition);
            padding: 8px 12px !important;
            border-radius: 4px;
        }
        
        .nav-link:hover, .nav-link:focus {
            color: white !important;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .nav-link.active {
            color: white !important;
            font-weight: 600;
        }
        
        .nav-link.active::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background: var(--accent-color);
            bottom: 0;
            left: 0;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            bottom: 0;
            left: 0;
            transition: var(--transition);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        .icono-flotante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.icono-flotante.instagram {
  bottom: 80px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.icono-flotante:hover {
  transform: scale(1.1);
}

   /* WhatsApp Button */
   .whatsapp-btn {
     position: fixed;
     bottom: 30px;
     right: 30px;
     width: 60px;
     height: 60px;
     background: #25D366;
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.8rem;
     z-index: 999;
     box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
     transition: var(--transition);
     animation: pulse 2s infinite;
   }
   
   .whatsapp-btn:hover {
     transform: scale(1.1);
     color: white;
   }
   
   @keyframes pulse {
     0% {
       box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
     }
     70% {
       box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
     }
     100% {
       box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
     }
   }
   
   /* Back to Top Button */
   .back-to-top {
     position: fixed;
     bottom: 100px;
     right: 30px;
     width: 50px;
     height: 50px;
     background: var(--gradient-purple);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
     z-index: 999;
     opacity: 0;
     visibility: hidden;
     transition: var(--transition);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
   }
   
   .back-to-top.active {
     opacity: 1;
     visibility: visible;
   }
   
   .back-to-top:hover {
     background: var(--gradient-orange);
     transform: translateY(-3px);
   }
   
   /* Animations */
   .animate-up {
     transform: translateY(50px);
     opacity: 0;
     transition: var(--transition);
   }
   
   .animate-up.show {
     transform: translateY(0);
     opacity: 1;
   }
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(106, 27, 26, 0.9) 0%, rgba(141, 42, 40, 0.85) 100%), 
                        url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 200px 0 180px;
            text-align: center;
            position: relative;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            margin-bottom: -80px;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: white;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 25px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.4rem;
            margin-bottom: 15px;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero .divider {
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            margin: 30px auto;
            border-radius: 2px;
        }
        
        /* Section Styling */
        .section {
            padding: 100px 0;
            position: relative;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 60px;
            color: var(--primary-color);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            bottom: -20px;
            left: 0;
            border-radius: 2px;
        }
        
        .section-title.center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .bg-light-custom {
            background-color: var(--light-bg);
            position: relative;
        }
        
        /* About Section */
        .about-img {
            border-radius: 8px;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            transform: rotate(-2deg);
        }
        
        .about-img:hover {
            transform: rotate(0deg) scale(1.02);
        }
        
        .stats-box {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: var(--shadow-sm);
            text-align: center;
            transition: var(--transition);
            border-bottom: 4px solid var(--accent-color);
        }
        
        .stats-box:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        
        .stats-box h3 {
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        /* Services Section */
        .service-card {
            background: white;
            border: none;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            height: 100%;
            position: relative;
            z-index: 1;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary-color);
            transition: var(--transition);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .service-card:hover::before {
            height: 8px;
            background: var(--accent-color);
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            background: rgba(106, 27, 26, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary-color);
            font-size: 1.8rem;
        }
        
        /* Accordion Styles */
        .accordion-button {
            font-weight: 600;
            padding: 20px 25px;
            background-color: white;
            border: none;
            box-shadow: var(--shadow-sm);
            border-radius: 8px !important;
            font-size: 1.1rem;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: white;
            color: var(--primary-color);
            box-shadow: var(--shadow-sm);
        }
        
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(106, 27, 26, 0.15);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 20px;
            border-radius: 8px !important;
            overflow: hidden;
        }
        
        .accordion-body {
            padding: 25px;
            background-color: #fefefe;
            border-radius: 0 0 8px 8px;
        }
        
        .accordion-body ul {
            padding-left: 20px;
        }
        
        .accordion-body li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 15px;
        }
        
        .accordion-body li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 6px;
            height: 6px;
            background: var(--accent-color);
            border-radius: 50%;
        }
        
        /* Form Styles */
        .form-control {
            padding: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            transition: var(--transition);
            font-size: 1rem;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(106, 27, 26, 0.15);
        }
        
        .form-container {
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow-md);
            overflow: hidden;
            position: relative;
        }
        
        .form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
        }
        
        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
            padding: 15px 35px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            border-radius: 6px;
            font-size: 1rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-primary-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: var(--transition);
            z-index: -1;
        }
        
        .btn-primary-custom:hover {
            background-color: var(--primary-light);
            border-color: var(--primary-light);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        
        .btn-primary-custom:hover::before {
            left: 100%;
        }
        
        .btn-outline-custom {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            font-weight: 600;
            padding: 12px 30px;
            transition: var(--transition);
            border-radius: 6px;
        }
        
        .btn-outline-custom:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow-sm);
        }
        
        /* Contact Info */
        .contact-info {
            list-style: none;
            padding: 0;
        }
        
        .contact-info li {
            margin-bottom: 20px;
            padding-left: 40px;
            position: relative;
        }
        
        .contact-info i {
            position: absolute;
            left: 0;
            top: 3px;
            color: var(--accent-color);
            font-size: 1.5rem;
        }
        
        .contact-info strong {
            color: var(--primary-color);
            display: block;
            margin-bottom: 5px;
        }
        
        /* Map Container */
        .map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            height: 100%;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            min-height: 400px;
            border: none;
        }
        
        /* Footer */
        footer {
            background-color: #1a1a1a;
            color: rgba(255, 255, 255, 0.8);
            padding: 120px 0 0;
            position: relative;
            clip-path: polygon(0 8%, 100% 0, 100% 100%, 0% 100%);
            margin-top: 80px;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 12px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        }
        
        footer h5 {
            color: white;
            margin-bottom: 25px;
            font-family: 'Playfair Display', serif;
            position: relative;
            padding-bottom: 15px;
        }
        
        footer h5::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--accent-color);
            bottom: 0;
            left: 0;
        }
        
        footer a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }
        
        footer a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links i {
            margin-right: 10px;
            color: var(--accent-color);
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            text-align: center;
            margin-right: 12px;
            transition: var(--transition);
            background: var(--accent-color);
            font-size: 1.2rem;
        }
        
        .social-links a:hover {
            background: var(--accent-color);
            color: #1a1a1a !important;
            transform: translateY(-5px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 25px;
            margin-top: 60px;
            padding-bottom: 20px;
        }
        
        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
            border: 2px solid white;
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--accent-color);
            color: var(--primary-color);
            transform: translateY(-5px);
        }
        
        /* Decorations */
        .decorative-shape {
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            z-index: -1;
        }
        
        /* Animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .hero {
                padding: 180px 0 160px;
            }
            
            .hero h1 {
                font-size: 3.5rem;
            }
        }
        
        @media (max-width: 992px) {
            .hero {
                padding: 160px 0 140px;
                clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
                margin-bottom: -60px;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .section {
                padding: 80px 0;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 140px 0 120px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            footer {
                clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 100%);
                padding-top: 100px;
            }
            
            .back-to-top {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
                bottom: 30px;
                right: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                padding: 120px 0 100px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .navbar-brand {
                font-size: 1.5rem;
            }
            
            .section {
                padding: 60px 0;
            }
            
            footer {
                clip-path: polygon(0 3%, 100% 0, 100% 100%, 0% 100%);
                padding-top: 80px;
            }
        }
    
/* Floating WhatsApp menu */
.floating-menu{
  position:fixed;
  bottom:30px;
  right:30px;
  z-index:1000;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
}
.floating-menu .toggle-btn{
  width:60px;height:60px;border-radius:50%;
  background:#25D366;color:#fff;border:none;
  display:flex;align-items:center;justify-content:center;
  font-size:1.8rem;box-shadow:0 5px 20px rgba(37,211,102,.4);
  transition:var(--transition);cursor:pointer;
}
.floating-menu .toggle-btn:hover{transform:scale(1.1);}
.floating-menu .contact-btn{
  position:relative;margin-bottom:20px;
  width:60px;height:60px;border-radius:50%;
  background:#25D366;color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:1.5rem;box-shadow:0 5px 20px rgba(37,211,102,.4);
  opacity:0;visibility:hidden;
  transform:translateY(20px) scale(.5);
  transition:var(--transition);
  text-decoration:none;
}
.floating-menu.open .contact-btn{
  opacity:1;visibility:visible;
  transform:translateY(0) scale(1);
}
.contact-btn .contact-label{
  position:absolute;right:70px;
  background:#25D366;color:#fff;
  padding:16px 10px;
  border-radius:4px;
  font-size:0.9rem;
  white-space:nowrap;
  opacity:0;transform:translateX(10px);
  transition:var(--transition);
}
.floating-menu.open .contact-btn:hover .contact-label{
  opacity:1;transform:translateX(0);
}

