#inicio{background: url('https://www.23web.com.ar/abturismo/slider2.jpg');background-position: center;background-size: cover;height: 100vh;width: 100%;padding-top: 40vh;color: white;text-align: center;}
		#contacto{    background: linear-gradient(rgba(0, 0, 0, 0.5), rgb(0 0 0 / 83%)), url(https://www.23web.com.ar/abogadosturismo//Law%20Firm%20%E2%80%93%20Dictum_files/contacto.jpg);
    background-position: center;
    background-size: cover;
    height: auto;
    width: 100%;
    padding-top: 10vh;
    padding-bottom: 10vh;
    color: white;}
		
		/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333;
}


/* Top Contact Bar */
.top-bar {
 background: #00000094;
    color: white;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.contact-info {
     display: block;
  gap: 30px;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-item .icon {
  font-size: 12px;
}

/* Main Header */
.main-header {
  background: #2d3748;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  min-height: 70px;
}

/* Logo */
.logo {
  flex-shrink: 0;
}

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

.logo-text {
  display: flex;
  flex-direction: column;
  color: white;
}

.logo-main {
  font-family: "Lora", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
}

.logo-sub {
  font-family: "Lora", serif;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: #e2e8f0;
  margin-top: -2px;
}

.logo-icon {
  color: #f7fafc;
  display: flex;
  align-items: center;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
    font-weight: 400;
}

.nav-link:hover {
  color: #cbd5e0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #cbd5e0;
  transition: width 0.3s ease;
}

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

/* CTA Button */
.cta-section {
  flex-shrink: 0;
}

.cta-button {
    background: #d5d5d5;
    color: #3e3e3e;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cta-button:hover {
    background: #0c0c0c;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
}



/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  background: #1a202c;
  border-top: 1px solid #4a5568;
}

.mobile-nav.active {
  display: block;
  animation: slideDown 0.3s ease;
}

.mobile-nav-content {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mobile-nav-link {
  color: white;
  text-decoration: none;
  padding: 15px 20px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
  background: #2d3748;
  border-left-color: #cbd5e0;
}

.mobile-cta-button {
  background: #e2e8f0;
  color: #2d3748;
  border: none;
  padding: 15px 20px;
  margin: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-cta-button:hover {
  background: #cbd5e0;
}

/* Demo Content */
.demo-content {
  padding: 50px 0;
}

.demo-content h1 {
  font-family: "Lora", serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2d3748;
}

.demo-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #4a5568;
}

.demo-content ul {
  margin-left: 20px;
  margin-bottom: 30px;
}

.demo-content li {
  margin-bottom: 8px;
  color: #4a5568;
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.main-header {
    background: #00000094;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
}
/* Responsive Design */
@media (max-width: 768px) {
	h3 {
    font-family: "Lora", serif;
    font-weight: 100;
    font-size: 34px !important;
}
.col-md-8{padding-left: 15px !important;}
#contamos p {font-size: 19px;}
.section-subtitle {
        font-size:25px !important;margin-bottom: 20px;
    }
    .contacto-dentro {
    background-color: #0000005C;
    padding: 35px !important;
    backdrop-filter: blur(18px) brightness(92%);
}
.contacto-dentro h3{margin-bottom: 30px;}
.info-text {
    font-size: 13px !important;
}
form{margin-top: 50px;}
    .section-title{        font-size: 40px !important;}

.servicios{margin-bottom: 20px;}
  .desktop-nav {
    display: none;
  }

  .cta-section {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .logo-main {
    font-size: 20px;
  }

  .logo-sub {
    font-size: 14px;
  }

  .logo-icon svg {
    width: 32px;
    height: 32px;
  }

  .contact-info {
    gap: 15px;
  }

  .contact-item {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .contact-info {
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
  }

  .top-bar {
    padding: 5px 0;
  }

  .logo-content {
    gap: 10px;
  }

  .logo-main {
    font-size: 18px;
  }

  .logo-sub {
    font-size: 12px;
  }

  .logo-icon svg {
    width: 28px;
    height: 28px;
  }
}

/* Sticky Header Effect */
.main-header.scrolled {
  background: rgba(45, 55, 72, 0.95);
  backdrop-filter: blur(10px);
}
h1{font-family: "Lora", serif;font-size: 80px;font-weight: 400;opacity: 0.8;}
h2{   font-family: "Montserrat", sans-serif;font-weight: 100;font-size: 35px;}
h3{      font-family: "Lora", serif;font-weight: 100;font-size: 40px;}
p {
    /* font-weight: 300 !important; */
    color:#333333;
    font-size: 20px;
    text-align: left;
        line-height: 27px;
    font-weight: 400;
    letter-spacing: -.015em;
}#intro{padding-top: 80px;padding-bottom: 80px;}
.servicios{border-radius: 20px;padding:20px;position: relative;background: url('familia.jpg');height: 550px;width: 100%;background-position: center;background-size: cover;}
.nosotros{border-radius: 20px;position:relative;padding:20px;position: relative;background: url('glaciar.jpg');height: 550px;width: 100%;background-position: center;background-size: cover;}
.nosotros::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* 50% transparencia */
  z-index: 1;
  border-radius: 20px;
}
.servicios a,.nosotros a{
	color: white !important;
	position: absolute;
	bottom: 30px;
	left: 30px;
text-decoration: none;
	font-size: 30px;
	z-index: 999;
	   font-family: "Lora", sans-serif;font-weight: 100;
	 padding-bottom: 0px;
	 border-bottom:1px solid white;
}
.servicios > * {
  position: relative;
  z-index: 2;
}
.servicios::before {
	border-radius: 20px;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* 50% transparencia */
  z-index: 1;
}

.servicios > * {
  position: relative;
  z-index: 2;
}
#nosotros{padding-top: 30px;padding-bottom: 80px;}
#nosotros img{filter: grayscale(1);border-radius: 20px;}
#nosotros img:hover{filter: none;}
#contamos {
	background-position: center;
	text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgb(0 0 0 / 83%)), url(https://abogadosenturismo.com.ar/wp-content/uploads/2014/03/02.Grupal1.jpg);
    background-attachment: fixed;
    filter: grayscale(1);
    padding-top: 100px;
    color: white;
    padding-bottom: 100px;
    background-size: cover;
    margin-bottom: 80px;
    font-family: 30px;
}
h4{    font-weight: 400;font-family: "Lora", serif;
    margin-top: 10px;
    margin-bottom: 0px;}

    p {
    /* font-weight: 300 !important; */
    font-size: 18px;
    text-align: left;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: -.015em;
}
/* Servicios Section Styles */
.servicios-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
      
transform: none !important;
}

.servicios-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.02"/><circle cx="10" cy="90" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

/* Header Styles */
.servicios-header {
  margin-bottom: 60px;
}

.section-title {
  font-family: "Lora", serif;

  font-weight: 300;
  color: #2d3748;
  margin-bottom: 20px;
  position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    background: linear-gradient(90deg, #4b4b4b, #000000);
    border-radius: 2px;
}
.section-subtitle {
   font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: #2d3748
  margin-bottom: 30px;
}

.section-description {
  font-size: 1.2rem;
  color: #333333;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Navigation Tabs */
.services-nav {
  margin-bottom: 50px;
}

.nav-tabs-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background: white;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  max-width: 900px;
  padding-top: 20px;
}

.service-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 25px;
  border: none;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  min-width: 150px;
}

.service-tab:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
}

.service-tab.active {
    background: linear-gradient(135deg, #565656, #000000);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgb(13 13 13 / 30%);
}

.tab-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.service-tab:hover .tab-icon {
  transform: scale(1.1);
}

.service-tab.active .tab-icon {
  animation: bounce 0.6s ease;
}

.tab-text {
    font-family: "Lora", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.3;
}
#nosotros h4 {
        font-size: 19px;
    }
/* Content Styles */
.services-content {
  position: relative;
}

.service-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.service-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease;
}

.content-header {
  text-align: center;
  margin-bottom: 50px;
}

.content-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.content-header h4 {
  font-family: "Lora", serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: #2d3748;
  margin-bottom: 15px;
}

/* Services Grid */
.services-grid {
    display: grid
;
    grid-template-columns: repeat(auto-fit, minmax(302px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4b4b4b, #000000);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-item h5 {
  font-family: "Lora", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
}

.service-item p {
  color: #6c757d;
  line-height: 1.6;
  font-size: 1rem;
}

/* Call to Action */
.services-cta {
  text-align: center;
  margin-top: 80px;
  padding: 50px;
  background: linear-gradient(135deg, #2d3748, #4a5568);
  border-radius: 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

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

.services-cta h4 {
  font-family: "Lora", serif;
  font-size: 2rem;
  margin-bottom: 15px;
}

.services-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}



/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Scroll Animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }

  .section-subtitle {
    font-size: 1.4rem;
  }

  .nav-tabs-container {
    flex-direction: column;
    max-width: 400px;
      
  }

  .service-tab {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    min-width: auto;
    width: 100%;
  }

  .tab-icon {
    margin-right: 15px;
    margin-bottom: 0;
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-item {
    padding: 25px;
  }

  .services-cta {
    padding: 30px 20px;
    margin-top: 50px;
  }

  .services-cta h4 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .servicios-section {
    padding: 60px 0;
  }

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

  .content-header h4 {
    font-size: 1.8rem;
  }

  .service-item {
    padding: 20px;
  }

  .service-item h5 {
    font-size: 1.2rem;
  }
}
.servicios-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
 
}
/* Contact Form Section Styles */
.contact-form-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

/* Background */
.section-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #1e293b 75%, #0f172a 100%);
}

.bg-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23fff" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23fff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.05));
  animation: floatShape 8s ease-in-out infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 70%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  top: 40%;
  right: 25%;
  animation-delay: 6s;
}

/* Classical Pattern */
.classical-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.pattern-element {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  animation: rotatePattern 15s linear infinite;
}

.pattern-1 {
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}

.pattern-2 {
  bottom: 25%;
  right: 8%;
  animation-delay: 5s;
}

.pattern-3 {
  top: 60%;
  left: 15%;
  animation-delay: 10s;
}

/* Form Container */
.form-container {
  position: relative;
  z-index: 2;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

/* Form Header */
.form-header {
  text-align: center;
  margin-bottom: 60px;
}

.header-ornament {
  color: rgba(212, 175, 55, 0.6);
  margin-bottom: 30px;
  animation: breathe 3s ease-in-out infinite;
}

.form-title {
  font-family: "Lora", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.2;
}

.title-accent {
  color: #d4af37;
  font-weight: 400;
}

.form-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}

.title-underline {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #f4d03f);
  margin: 0 auto;
  border-radius: 1px;
}

/* Form Sections */
.form-section {
  margin-bottom: 50px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.form-section:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(212, 175, 55, 0.2);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-icon {
  color: #d4af37;
  flex-shrink: 0;
}



/* Form Grid */
.form-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

/* Form Groups */
.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 18px 50px 18px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2"><polyline points="6,9 12,15 18,9"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: #d4af37;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label,
.form-group select:valid + label {
  transform: translateY(-25px) scale(0.8);
  color: #d4af37;
}

.form-group label {
  position: absolute;
  top: 18px;
  left: 0;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  transition: all 0.3s ease;
  pointer-events: none;
  transform-origin: left top;
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #f4d03f);
  transition: width 0.3s ease;
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line,
.form-group select:focus ~ .form-line {
  width: 100%;
}

.field-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

.form-group input:focus ~ .field-icon,
.form-group textarea:focus ~ .field-icon,
.form-group select:focus ~ .field-icon {
  color: #d4af37;
}

/* Character Counter */
.char-counter {
  position: absolute;
  bottom: -25px;
  right: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Consultation Types */
.consultation-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.type-option {
  position: relative;
}

.type-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.type-label {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.type-label:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.type-option input[type="radio"]:checked + .type-label {
  background: rgba(212, 175, 55, 0.1);
  border-color: #d4af37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.type-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.type-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.type-title {
  font-family: "Lora", serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
}

.type-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}

/* Terms Section */
.terms-section {
  margin-bottom: 40px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  cursor: pointer;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-group input[type="checkbox"]:checked + .checkbox-label .checkbox-custom {
  background: #d4af37;
  border-color: #d4af37;
}

.checkbox-group input[type="checkbox"]:checked + .checkbox-label .checkbox-custom::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: solid #0f172a;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.terms-link {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

.terms-link:hover {
  color: #f4d03f;
  text-decoration: underline;
}

/* Submit Section */
.submit-section {
  text-align: center;
}

.submit-btn {
    position: relative;
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    background: linear-gradient(135deg, #111111, #000000);
    color: #ffffff;
    border: none;
    border-radius: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    min-width: 100%;
}

.submit-btn:hover {
  transform: translateY(-5px) scale(1.05);
 
}

.submit-btn:active {
  transform: translateY(-2px) scale(1.02);
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.btn-icon {
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.submit-btn:hover .btn-ripple {
  width: 300px;
  height: 300px;
}

.btn-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  animation: rotateGlow 3s linear infinite;
}

.submit-btn:hover .btn-glow {
  opacity: 1;
}

.submit-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* Messages */
.message-container {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 1000;
  max-width: 400px;
}

.success-message,
.error-message {
  display: none;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  animation: slideInRight 0.5s ease;
}

.success-message {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.error-message {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.success-message.show,
.error-message.show {
  display: flex;
}

.message-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.message-content h4 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.message-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Animations */
@keyframes floatShape {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes rotatePattern {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes breathe {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes rotateGlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll Animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .form-container {
    padding: 40px;
  }

  .form-title {
    font-size: 2.8rem;
  }

  .consultation-types {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
	.top-bar{display: none;}
  .contact-form-section {
    padding: 40px 0;
  }
h1{font-size: 35px;}
h2{font-size: 25px;}
.cta-section{        display: block;}
.cta-section2{        display: none;}
  .form-container {
    padding: 30px 20px;
  }

  .form-title {
    font-size: 2.2rem;
  }

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

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .message-container {
    top: 20px;
    right: 20px;
    left: 20px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .form-container {
    padding: 20px 15px;
  }

  .form-title {
    font-size: 1.8rem;
  }

  .submit-btn {
    padding: 18px 40px;
    font-size: 1rem;
  }

  .type-label {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus States */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

.submit-btn:focus {
  outline: 2px solid rgba(212, 175, 55, 0.5);
  outline-offset: 4px;
}

.type-label:focus-within {
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}
.info-icon{float: left;
    margin-right: 10px;}
    .info-item{margin-bottom: 10px;}
    .servicios:hover{transform: scale(1.05);transition: 1s;border-radius: 20px;height:550px;}
    .nosotros:hover{transform: scale(1.05);transition: 1s;border-radius: 20px;height:550px;}
    /* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* Demo Page Styles */
.demo-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.demo-content {
  text-align: center;
  max-width: 600px;
}

.demo-content h1 {
  font-family: "Lora", serif;
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.demo-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
}

.demo-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.demo-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.demo-btn.primary {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: #0f172a;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.demo-btn.secondary {
  background: linear-gradient(135deg, #1e293b, #334155);
  color: #ffffff;
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.demo-btn.accent {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.demo-btn:hover {
  transform: translateY(-3px) scale(1.05);
}

.demo-btn.primary:hover {
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.demo-btn.secondary:hover {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.demo-btn.accent:hover {
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
}

/* Floating Particles */
.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(212, 175, 55, 0.6);
  border-radius: 50%;
  animation: floatParticle 6s ease-in-out infinite;
}

.particle-1 {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.particle-2 {
  top: 60%;
  left: 25%;
  animation-delay: 1.5s;
}

.particle-3 {
  top: 30%;
  right: 20%;
  animation-delay: 3s;
}

.particle-4 {
  bottom: 40%;
  right: 30%;
  animation-delay: 4.5s;
}

.particle-5 {
  bottom: 25%;
  left: 35%;
  animation-delay: 2s;
}

/* Modal Container */
.modal-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 1001;
  display: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-width: 90vw;
  max-height: 90vh;
  width: 50%;
}

.modal-container.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* Modal Decorations */
.modal-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.decoration {
  position: absolute;
  color: rgba(212, 175, 55, 0.2);
  animation: rotateDecoration 20s linear infinite;
}

.decoration-1 {
  top: -30px;
  right: -30px;
  animation-direction: normal;
}

.decoration-2 {
  bottom: -20px;
  left: -20px;
  animation-direction: reverse;
}

/* Modal Content */
.modal-content {
  position: relative;
  z-index: 2;
  background: rgb(255 255 255 / 95%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* Modal Header */
.modal-header {
  position: relative;
  padding: 30px 40px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.header-ornament {
  color: rgba(212, 175, 55, 0.6);
  margin-bottom: 20px;
  animation: breathe 3s ease-in-out infinite;
}

.modal-title {
  font-family: "Lora", serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: #000;
  margin: 0;
  line-height: 1.3;
 
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.4);
  color: #ef4444;
  transform: scale(1.1) rotate(90deg);
}

/* Modal Body */
.modal-body {
  padding: 40px;
  text-align: center;
}

.modal-icon {
  color: #d4af37;
  margin-bottom: 30px;
  animation: float 3s ease-in-out infinite;
}

.modal-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.modal-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.modal-text p:last-child {
  margin-bottom: 0;
}

.modal-text h3 {
  font-family: "Lora", serif;
  font-size: 1.5rem;
  color: #d4af37;
  margin-bottom: 15px;
}

.modal-text ul {
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
  padding-left: 20px;
}

.modal-text li {
  margin-bottom: 10px;
  position: relative;
}

.modal-text li::marker {
  color: #d4af37;
}

/* Modal Footer */
.modal-footer {
  padding: 20px 40px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-ornament {
  color: rgba(212, 175, 55, 0.4);
  margin-bottom: 20px;
}

.modal-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.modal-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border: none;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.modal-btn.primary {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: #0f172a;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.modal-btn.secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.modal-btn:hover {
  transform: translateY(-2px) scale(1.05);
}

.modal-btn.primary:hover {
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.modal-btn.secondary:hover {
  border-color: rgba(212, 175, 55, 0.5);
  color: #d4af37;
}

/* Modal Glow Effect */
.modal-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  opacity: 0;
  animation: rotateGlow 10s linear infinite;
  pointer-events: none;
}

.modal-container.active .modal-glow {
  opacity: 1;
}

/* Animations */
@keyframes floatParticle {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-15px) rotate(180deg);
    opacity: 1;
  }
}

@keyframes rotateDecoration {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes breathe {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

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

@keyframes rotateGlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .demo-content h1 {
    font-size: 2.2rem;
  }

  .demo-buttons {
    flex-direction: column;
    align-items: center;
  }

  .demo-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .modal-container {
    width: 95vw;
    max-height: 85vh;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    padding-left: 25px;
    padding-right: 25px;
  }

  .modal-title {
    font-size: 1.8rem;
  }

  .modal-text p {
    font-size: 1rem;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .modal-container {
    width: 98vw;
    max-height: 90vh;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .modal-body {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .decoration {
    display: none;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus States */
.modal-close:focus,
.modal-btn:focus {
  outline: 2px solid rgba(212, 175, 55, 0.5);
  outline-offset: 4px;
}

.demo-btn:focus {
  outline: 2px solid rgba(212, 175, 55, 0.5);
  outline-offset: 4px;
}

/* Custom Scrollbar for Modal Content */
.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.5);
  border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.7);
}
.mobile-nav {
 
    background: #1f1f1f;
   
}
 .active img{
    filter: invert(100%);
  }
  .content-icon img{filter: none;}
  #imagen {
      width: 100%;
      height: 600px;
      object-fit: contain;
      margin-bottom: 50px;
      border-radius: 50px;
      transition: opacity 1s ease-in-out;
      opacity: 1;
    }
      .contacto-dentro{background-color: #0000005C;
            padding: 50px;backdrop-filter: blur(18px) brightness(92%);}
            .info-text{font-size: 15px;}