/* 
  LTX Seguros - Swiss Minimalism Corporativo
  Design: Clean, professional, generous whitespace
  Colors: Navy (#001c4f) + Orange (#ff7726)
  Typography: Inter Bold/Regular with clear hierarchy
*/

:root {
  --ltx-navy: #001c4f;
  --ltx-navy-light: #002d6a;
  --ltx-orange: #ff7726;
  --ltx-orange-light: #ff9552;
  --text-dark: #25252b;
  --text-light: #7f8089;
  --bg-light: #f5f5f7;
  --border-color: #e5e5e7;
  --white: #ffffff;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  color: var(--text-light);
  line-height: 1.7;
}

.accent {
  color: var(--ltx-orange);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-orange {
  background: var(--ltx-orange);
  color: var(--white);
}

.btn-orange:hover {
  background: var(--ltx-orange-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 119, 38, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
}

.btn-cta-hdr {
  padding: 0.625rem 1.25rem;
  font-size: 0.9rem;
}

.btn-hero {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}

.logo-img {
  height: 3rem;
  width: auto;
  margin-top: 0.25rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 1.5rem;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
  border-radius: 1px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ltx-navy);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ltx-orange);
  border-radius: 1px;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-wrap {
    position: fixed;
    top: 5rem;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 2rem 1rem;
    max-height: calc(100vh - 5rem);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .nav-wrap.active {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
  }

  .btn-cta-hdr {
    width: 100%;
    margin-top: 1rem;
  }
}

/* Contact Links */
.contact-info a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info a:hover {
  color: var(--ltx-orange);
}

.contact-info i {
  color: var(--ltx-orange);
  width: 1.2rem;
  text-align: center;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  background: #128c7e;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: var(--ltx-navy);
  color: var(--white);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-text {
  max-width: 600px;
}

.tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 640px) {
  .hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
    min-height: auto;
  }

  .hero-cta-row {
    flex-direction: column;
  }

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

/* Stats Bar */
.stats-bar {
  background: var(--bg-light);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

/* Enhanced Stats Section */
.stats-bar {
  background: linear-gradient(135deg, var(--ltx-navy) 0%, var(--ltx-navy-light) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 119, 38, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.stat-item:hover::before {
  transform: translateX(100%);
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--ltx-orange);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  text-shadow: 0 2px 10px rgba(255, 119, 38, 0.3);
}

.stat-number::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--ltx-orange);
  transition: width 0.6s ease;
}

.stat-item:hover .stat-number::after {
  width: 80%;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  transition: color 0.3s ease;
}

.stat-item:hover p {
  color: var(--white);
}

/* Animated icons for stats */
.stat-item::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  background: var(--ltx-orange);
  border-radius: 50%;
  opacity: 0.1;
  animation: pulse 3s ease-in-out infinite;
}

/* Counter animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.stat-number.counting {
  animation: countUp 1s ease-out forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-item {
    padding: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

.stat-item h2 {
  color: var(--ltx-navy);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.section-title {
  margin: 1rem 0;
}

.section-header p {
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

/* Partners Section */
.partners-section {
  padding: 6rem 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  filter: grayscale(100%);
  transition: var(--transition);
  cursor: pointer;
}

.partner-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.partner-logo img {
  max-height: 3rem;
  width: auto;
  object-fit: contain;
}

/* Seguros Section */
.seguros-section {
  background: var(--bg-light);
  padding: 6rem 0;
}

.seguros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.seguro-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 28, 79, 0.08);
  transition: var(--transition);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.seguro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 28, 79, 0.12);
}

.seguro-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.seguro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.seguro-content {
  padding: 2rem;
}

.seguro-icon {
  width: 3rem;
  height: 3rem;
  background: var(--ltx-navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.seguro-content h3 {
  margin-bottom: 0.75rem;
}

.seguro-content p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

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

/* Diferenciais Section */
.diferenciais-section {
  padding: 6rem 0;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.diferencial-card {
  position: relative;
  padding-left: 2rem;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.diferencial-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--ltx-orange);
  border-radius: 2px;
}

.diferencial-num {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0, 28, 79, 0.1);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.diferencial-icon {
  width: 3rem;
  height: 3rem;
  background: var(--ltx-navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.diferencial-card h3 {
  margin-bottom: 0.75rem;
}

.diferencial-card p {
  font-size: 0.95rem;
}

/* About Section */
.about-section {
  background: var(--bg-light);
  padding: 6rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  animation: fadeInLeft 0.6s ease forwards;
  opacity: 0;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-manifesto {
  background: var(--white);
  padding: 2rem;
  border-left: 4px solid var(--ltx-orange);
  border-radius: 8px;
  margin-top: 2rem;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.about-manifesto h3 {
  margin-bottom: 1rem;
  color: var(--ltx-navy);
}

.about-manifesto blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-manifesto blockquote p {
  color: var(--text-dark);
}

.about-manifesto p {
  font-size: 0.95rem;
}

.about-image {
  animation: fadeInRight 0.6s ease forwards;
  opacity: 0;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 28, 79, 0.12);
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Contact Section */
.contato-section {
  padding: 6rem 0;
}

.contato-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.trust-item {
  display: flex;
  gap: 1.5rem;
  animation: fadeInLeft 0.6s ease forwards;
  opacity: 0;
}

.trust-icon {
  width: 3rem;
  height: 3rem;
  background: var(--ltx-navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.trust-item span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.form-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 28, 79, 0.08);
  animation: fadeInRight 0.6s ease forwards;
  opacity: 0;
}

.form-card h3 {
  margin-bottom: 0.5rem;
}

.form-card p {
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ltx-orange);
  box-shadow: 0 0 0 3px rgba(255, 119, 38, 0.1);
}

.form-group textarea {
  resize: vertical;
}

@media (max-width: 768px) {
  .contato-content {
    grid-template-columns: 1fr;
  }

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

  .form-card {
    padding: 1.5rem;
  }
}

/* Footer */
.footer {
  background: var(--ltx-navy);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--ltx-orange);
}

.footer-logo {
  height: 2.5rem;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.contact-info i {
  margin-top: 0.2rem;
  color: var(--ltx-orange);
}

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

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

.social-links a:hover {
  background: var(--ltx-orange);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes slideInScale {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 119, 38, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 119, 38, 0.8);
  }
}

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.reveal {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.reveal-left {
  animation: fadeInLeft 0.6s ease forwards;
  opacity: 0;
}

.reveal-right {
  animation: fadeInRight 0.6s ease forwards;
  opacity: 0;
}

.reveal-scale {
  animation: slideInScale 0.8s ease forwards;
  opacity: 0;
}

.reveal-bounce {
  animation: bounceIn 1s ease forwards;
  opacity: 0;
}

/* Scroll animations */
.reveal.visible {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 1;
}

.reveal-left.visible {
  animation: fadeInLeft 0.6s ease forwards;
  opacity: 1;
}

.reveal-right.visible {
  animation: fadeInRight 0.6s ease forwards;
  opacity: 1;
}

.reveal-scale.visible {
  animation: slideInScale 0.8s ease forwards;
  opacity: 1;
}

.reveal-bounce.visible {
  animation: bounceIn 1s ease forwards;
  opacity: 1;
}

/* Enhanced hover effects */
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 28, 79, 0.15);
}

.btn-orange:hover {
  background: var(--ltx-orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 119, 38, 0.3);
}

.btn-ghost:hover {
  background: rgba(255, 119, 38, 0.1);
  border-color: var(--ltx-orange);
  color: var(--ltx-orange);
  transform: translateY(-2px);
}

/* Card hover effects */
.seguro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 28, 79, 0.12);
}

.seguro-card:hover .seguro-icon {
  animation: pulse 1s infinite;
}

.diferencial-card:hover {
  transform: translateX(8px);
}

.diferencial-card:hover .diferencial-icon {
  color: var(--ltx-orange);
  transform: scale(1.1);
}

.partner-logo:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.partner-logo:hover img {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Floating animations */
.hero-headline .accent {
  animation: glow 2s ease-in-out infinite;
}

.about-image img {
  animation: float 6s ease-in-out infinite;
}

.whatsapp-float {
  animation: pulse 2s ease-in-out infinite;
}

/* Staggered animations */
.stats-grid .stat-item:nth-child(1) { animation-delay: 0.1s; }
.stats-grid .stat-item:nth-child(2) { animation-delay: 0.2s; }
.stats-grid .stat-item:nth-child(3) { animation-delay: 0.3s; }
.stats-grid .stat-item:nth-child(4) { animation-delay: 0.4s; }

.partners-grid .partner-logo:nth-child(1) { animation-delay: 0.05s; }
.partners-grid .partner-logo:nth-child(2) { animation-delay: 0.1s; }
.partners-grid .partner-logo:nth-child(3) { animation-delay: 0.15s; }
.partners-grid .partner-logo:nth-child(4) { animation-delay: 0.2s; }
.partners-grid .partner-logo:nth-child(5) { animation-delay: 0.25s; }
.partners-grid .partner-logo:nth-child(6) { animation-delay: 0.3s; }
.partners-grid .partner-logo:nth-child(7) { animation-delay: 0.35s; }
.partners-grid .partner-logo:nth-child(8) { animation-delay: 0.4s; }
.partners-grid .partner-logo:nth-child(9) { animation-delay: 0.45s; }
.partners-grid .partner-logo:nth-child(10) { animation-delay: 0.5s; }
.partners-grid .partner-logo:nth-child(11) { animation-delay: 0.55s; }
.partners-grid .partner-logo:nth-child(12) { animation-delay: 0.6s; }

/* Parallax effect */
.hero-bg img {
  transform: scale(1.1);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0% {
    transform: scale(1.1) translateY(0);
  }
  100% {
    transform: scale(1.2) translateY(-20px);
  }
}

/* Loading animations */
.form-card {
  animation: slideInScale 0.8s ease forwards;
}

.trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-item:nth-child(2) { animation-delay: 0.2s; }
.trust-item:nth-child(3) { animation-delay: 0.3s; }

/* Enhanced footer animations */
.footer-col {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.footer-col:nth-child(1) { animation-delay: 0.1s; }
.footer-col:nth-child(2) { animation-delay: 0.2s; }
.footer-col:nth-child(3) { animation-delay: 0.3s; }
.footer-col:nth-child(4) { animation-delay: 0.4s; }

/* Icon animations */
.nav-link:hover i {
  transform: translateX(4px);
}

.social-links a:hover {
  transform: translateY(-4px) rotate(360deg);
  background: var(--ltx-orange);
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--ltx-navy);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--ltx-orange);
}
