/* 
* Auditoría Nueva Línea - Main Stylesheet
* Colors:
* - Primary: #00E6D3 (neón-turquesa)
* - Accent: #FF6B57 (coral-naranja)
* - Background: #1E1E1E (grafito)
* - Text: #F2F2F2 (blanco-humo)
* - UI Elements: gradient from #A8E063 to #56AB2F (lima)
*/

/* ===== RESET & BASE STYLES ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 10px = 1rem */
}

body {
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #F2F2F2;
  background-color: #1E1E1E;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 4.8rem;
  margin-bottom: 2rem;
}

h2 {
  text-align: center;
  font-size: 3.3rem;
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 4rem;
}

h2::after {
  content: '';
  position: absolute;
  left: 46%;
  bottom: 0;
  height: 4px;
  width: 8rem;
  background: linear-gradient(90deg, #00E6D3, #FF6B57);
  transition: width 0.3s ease;
}

section:hover h2::after {
  width: 12rem;
}

h3 {
  font-size: 2.4rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: #00E6D3;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #FF6B57;
}

ul, ol {
  list-style-position: inside;
  margin-bottom: 1.5rem;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 8rem 0;
  position: relative;
}


/* ===== COOKIE POPUP ===== */
.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background-color: rgba(30, 30, 30, 0.95);
  padding: 2rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: bottom 0.5s ease;
  border-top: 3px solid #00E6D3;
}

.cookie-popup.active {
  bottom: 0;
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin: 0;
  flex: 1;
}

.cookie-button {
  background: linear-gradient(90deg, #A8E063, #56AB2F);
  color: #1E1E1E;
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
}

.cookie-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(168, 224, 99, 0.3);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(30, 30, 30, 0.95);
  padding: 1.5rem 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: block;
  width: 180px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  width: 100%;
  height: auto;
}

.main-nav .nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  gap: 2rem;
}

.nav-list a {
  color: #F2F2F2;
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #00E6D3;
  transition: width 0.3s ease;
}

.nav-list a:hover {
  color: #00E6D3;
}

.nav-list a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger, .hamburger::before, .hamburger::after {
  display: block;
  width: 24px;
  height: 3px;
  background: #F2F2F2;
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.phone-link {
  color: #FF6B57;
  font-weight: 700;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.phone-link::before {
  content: '☎';
}

.phone-link:hover {
  color: #00E6D3;
  transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(30, 30, 30, 0.7), rgba(30, 30, 30, 0.9)), url('../img/07l3NY.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding-top: 8rem;
}

.hero h1 {
  color: #F2F2F2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tagline {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  opacity: 1;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #00E6D3, #00B8A9);
  color: #1E1E1E;
  font-weight: 700;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0, 230, 211, 0.3);
  transition: all 0.3s ease;
  opacity: 1;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 230, 211, 0.4);
  color: #1E1E1E;
}

/* ===== ABOUT SECTION ===== */
.about {
  background-color: #232323;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.about-text {
  animation: slideInLeft 1s ease-out both;
}

.about-image {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: slideInRight 1s ease-out both;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* ===== BENEFITS SECTION ===== */
.benefits {
  background-color: #1E1E1E;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.benefit-card {
  background-color: #232323;
  border-radius: 10px;
  padding: 3rem;
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeIn 0.8s ease both;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background-color: #282828;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00E6D3, #00B8A9);
  border-radius: 50%;
  color: #1E1E1E;
  font-size: 3rem;
}

.icon {
  width: 40px;
  height: 40px;
  fill: #1E1E1E;
}

/* Apply different animation delays */
.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.3s; }
.benefit-card:nth-child(3) { animation-delay: 0.5s; }

/* ===== SERVICES SECTION ===== */
.services {
  background-color: #232323;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.service-card {
  background-color: #1E1E1E;
  border-radius: 10px;
  padding: 3rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(180deg, #FF6B57, #FF9057);
  transition: height 0.5s ease;
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
  color: #00E6D3;
}

.service-card ul {
  list-style-type: none;
  margin-bottom: 2rem;
}

.service-card li {
  padding-left: 2.5rem;
  position: relative;
  margin-bottom: 1rem;
}

.service-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #A8E063;
}

.service-link {
  display: inline-block;
  color: #FF6B57;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.service-link:hover {
  border-bottom-color: #FF6B57;
  letter-spacing: 1.5px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background-color: #1E1E1E;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial {
  background-color: #232323;
  border-radius: 10px;
  padding: 3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: fadeIn 0.8s ease both;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
  position: relative;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.testimonial-content::before, .testimonial-content::after {
  content: '"';
  position: absolute;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: #00E6D3;
  opacity: 0.2;
}

.testimonial-content::before {
  top: -20px;
  left: -10px;
}

.testimonial-content::after {
  bottom: -40px;
  right: -10px;
  transform: rotate(180deg);
}

.testimonial-author {
  text-align: right;
  border-top: 1px solid rgba(242, 242, 242, 0.1);
  padding-top: 2rem;
}

.testimonial-author h4 {
  margin-bottom: 0.5rem;
  color: #FF6B57;
}

.testimonial-author p {
  margin: 0;
  font-size: 1.4rem;
  opacity: 0.8;
}

/* Apply different animation delays */
.testimonial:nth-child(1) { animation-delay: 0.1s; }
.testimonial:nth-child(2) { animation-delay: 0.3s; }
.testimonial:nth-child(3) { animation-delay: 0.5s; }
.contact-info{
  display: none;
}
/* ===== CONTACT SECTION ===== */
.contact {
  background-color: #232323;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  background-color: #1E1E1E;
  padding: 4rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-group label {
  font-weight: 600;
}

.form-group input,
.form-group select {
  padding: 1.2rem;
  border: 2px solid #333;
  border-radius: 5px;
  background-color: #232323;
  color: #F2F2F2;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #00E6D3;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 230, 211, 0.2);
}

.form-group.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.form-group.checkbox input {
  width: 18px;
  height: 18px;
  padding: 0;
}

.submit-button {
  background: linear-gradient(90deg, #FF6B57, #FF9057);
  color: #1E1E1E;
  border: none;
  padding: 1.5rem;
  border-radius: 5px;
  font-weight: 700;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 87, 0.3);
}

/* ===== FAQ SECTION ===== */
.faq {
  background-color: #1E1E1E;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
  border: 1px solid #333;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  padding: 2rem;
  background-color: #232323;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 {
  margin: 0;
  font-size: 2rem;
}

.faq-toggle {
  font-size: 2.4rem;
  font-weight: 700;
  color: #00E6D3;
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-question {
  background-color: #282828;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 2rem;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
  background: linear-gradient(rgba(30, 30, 30, 0.9), rgba(30, 30, 30, 0.9)), url('../img/2RYNOb.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 6rem 0;
}

.newsletter h2 {
  margin-left: auto;
  margin-right: auto;
}

.newsletter h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.newsletter p {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form input {
  flex-grow: 1;
  padding: 1.5rem 2rem;
  border: none;
  border-radius: 5px 0 0 5px;
  background-color: #232323;
  color: #F2F2F2;
  font-size: 1.6rem;
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form button {
  background: linear-gradient(90deg, #A8E063, #56AB2F);
  color: #1E1E1E;
  border: none;
  padding: 0 3rem;
  border-radius: 0 5px 5px 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: linear-gradient(90deg, #56AB2F, #3D7B20);
}

/* ===== FOOTER ===== */
.footer {
  background-color: #191919;
  padding: 6rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer h3 {
  color: #00E6D3;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.footer-contact ul, .footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li, .footer-legal li {
  margin-bottom: 1rem;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(242, 242, 242, 0.1);
  padding-top: 2rem;
  font-size: 1.4rem;
  opacity: 0.7;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 992px) {
  html {
    font-size: 60%;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
  }
  
  .service-card, .benefit-card {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 58%;
  }
  
  h1 {
    font-size: 3.6rem;
  }
  
  h2 {
    font-size: 2.8rem;
  }
  
  .header-content {
    flex-wrap: wrap;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  .nav-list {
    display: none;
    flex-direction: column;
    padding: 2rem 0;
  }
  
  .nav-list.active {
    display: flex;
  }
  
  .testimonials-slider {
    padding: 0 1rem;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 1rem;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    border-radius: 5px;
  }
  
  .contact-form {
    padding: 3rem 2rem;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 55%;
  }
  
  section {
    padding: 6rem 0;
  }
  
  h1 {
    font-size: 3.2rem;
  }
  
  h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .logo {
    width: 150px;
  }
  
  .services-grid, .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-question h3 {
    font-size: 1.8rem;
  }
  
  .testimonial, .contact-form {
    padding: 2rem;
  }
  
  .footer-content {
    gap: 3rem;
  }
}

/* ===== POLICY PAGES STYLES ===== */
.policy {
  padding-top: 12rem;
  min-height: 80vh;
  background-color: #232323;
  background: linear-gradient(rgba(30, 30, 30, 0.85), rgba(30, 30, 30, 0.95)), url('../img/23oxJ9.jpg');
  background-size: cover;
  background-position: center;
}

.policy h1 {
  font-size: 3.6rem;
  margin-bottom: 3rem;
  animation: fadeIn 0.8s ease;
}

.policy h2 {
  font-size: 2.4rem;
  color: #00E6D3;
  margin-top: 4rem;
  padding-bottom: 1rem;
}

.policy h3 {
  font-size: 2rem;
  color: #FF6B57;
  margin-top: 2.5rem;
}

.policy-content {
  background-color: rgba(30, 30, 30, 0.85);
  padding: 4rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 4rem;
  animation: fadeIn 1s 0.3s ease-out forwards;
}

.policy-content ul {
  margin-left: 2rem;
  margin-bottom: 2rem;
}

.policy-content li {
  margin-bottom: 1rem;
}

.last-update {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(242, 242, 242, 0.1);
  font-style: italic;
  color: #999;
  text-align: right;
}

@media (max-width: 768px) {
  .policy {
    padding-top: 10rem;
  }
  
  .policy-content {
    padding: 3rem 2rem;
  }
  
  .policy h1 {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .policy-content {
    padding: 2rem 1.5rem;
  }
} 