/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --larafy-dark: #001a2c;
  --larafy-navy: #002b45;
  --larafy-cyan: #00d9ff;
  --larafy-cyan-hover: #00b3d4;
  --larafy-text-gray: #a0aec0;
}

body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #002F43;
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
}

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

::-webkit-scrollbar-track {
  background: var(--larafy-dark);
}

::-webkit-scrollbar-thumb {
  background: #004d6b;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--larafy-cyan);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Utility Classes */
.text-cyan {
  color: var(--larafy-cyan);
}

.font-bold {
  font-weight: 700;
}

/* App Container */
.app {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  background-color: #002F43;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url('./assets/img/Banner_2.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position-x: 80%;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px;
  z-index: 20;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-social {
  display: flex;
  gap: 16px;
}

.social-link {
  color: white;
  transition: color 0.3s;
}

.social-link:hover {
  color: var(--larafy-cyan);
}

.hero-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 48px 24px;
  z-index: 10;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-content {
    flex-direction: row;
  }
}

.hero-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 15;
}

@media (min-width: 1024px) {
  .hero-text {
    width: 50%;
  }
}

.hero-text h1 {
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .hero-text h1 {
    font-size: 3.75rem;
  }
}

.hero-text h2 {
  color: #d1d5db;
  line-height: 1.75;
  font-size: 1.125rem;
  max-width: 36rem;
}

.hero-text p {
  color: #d1d5db;
  line-height: 1.75;
  font-size: 1.125rem;
  max-width: 36rem;
}

.hero-button {
  padding-top: 16px;
}



.hero-image-caption {
  position: absolute;
  bottom: 40px;
  right: 16px;
  z-index: 20;
  text-align: right;
}

@media (min-width: 1024px) {
  .hero-image-caption {
    right: 40px;
    bottom: 60px;
  }
}

.hero-image-caption h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.hero-image-caption p {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Video Section */
.video-section {
  background-color: #002F43;
  padding: 80px 0;
}

.video-section .container {
  text-align: center;
}

.section-title-cyan {
  font-size: 1.875rem;
  font-weight: 300;
  color: var(--larafy-cyan);
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .section-title-cyan {
    font-size: 3rem;
  }
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background-color: black;
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1f2937;
  cursor: pointer;
  transition: border-color 0.3s;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

.video-container:hover {
  border-color: var(--larafy-cyan);
}

.video-play-button {
  width: 80px;
  height: 80px;
  background-color: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 8px;
  transition: transform 0.3s;
}

.video-container:hover .video-play-button {
  transform: scale(1.1);
}

/* Opportunity Section */
.opportunity-section {
    background-color: #002F43;
    background-image: url('./assets/img/Wave\ Light.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    padding: 80px 0;
}

.opportunity-section .container {
  text-align: center;
  position: relative;
  z-index: 10;
}

.section-title-cyan-large {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--larafy-cyan);
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .section-title-cyan-large {
    font-size: 3rem;
  }
}

.section-title-white-large {
  font-size: 1.875rem;
  font-weight: 300;
  color: white;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .section-title-white-large {
    font-size: 3rem;
  }
}

.opportunity-text {
  color: #d1d5db;
  max-width: 48rem;
  margin: 0 auto 48px;
  font-size: 1.125rem;
  line-height: 1.75;
}

.opportunity-button {
  margin-bottom: 96px;
}

.opportunity-stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  text-align: center;
}

@media (min-width: 768px) {
  .opportunity-stats {
    flex-direction: row;
  }
}

.opportunity-stats-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .opportunity-stats-left {
    align-items: flex-end;
  }
}

.opportunity-stats-left span {
  font-size: 1.5rem;
  color: white;
}

@media (min-width: 768px) {
  .opportunity-stats-left span {
    font-size: 1.875rem;
  }
}

.opportunity-stats-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .opportunity-stats-right {
    align-items: flex-start;
  }
}

.stats-number {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--larafy-cyan);
  line-height: 1;
}

@media (min-width: 768px) {
  .stats-number {
    font-size: 8rem;
  }
}

.opportunity-stats-right span:last-child {
  font-size: 1.5rem;
  color: white;
}

@media (min-width: 768px) {
  .opportunity-stats-right span:last-child {
    font-size: 1.875rem;
  }
}

.opportunity-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 256px;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.5;
}

/* Pillars Section */
.pillars-section {
    background-color: #002F43;
    padding: 80px 0;
}

.pillars-intro {
  text-align: center;
  margin-bottom: 64px;
}

.pillars-intro p {
  color: #d1d5db;
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.125rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  border: 1px solid var(--larafy-cyan);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: background-color 0.3s;
}

.pillar-card:hover {
  background-color: rgba(0, 43, 69, 0.5);
}

.pillar-icon {
  margin-bottom: 24px;
}

.pillar-card h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: white;
  margin-bottom: 16px;
}

.pillar-card p {
  color: #d1d5db;
}

.pillars-outro {
  text-align: center;
}

.pillars-outro h2 {
  font-size: 1.875rem;
  color: var(--larafy-cyan);
  font-weight: 400;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .pillars-outro h2 {
    font-size: 3rem;
  }
}

.pillars-outro p {
  color: #d1d5db;
  max-width: 48rem;
  margin: 0 auto;
  font-size: 1.125rem;
}

/* Deliverables Section */
.deliverables-section {
  background-color: #002F43;
  padding: 80px 0;
}

.deliverables-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
}

@media (min-width: 1024px) {
  .deliverables-container {
    flex-direction: row;
  }
}

.deliverables-title {
  width: 100%;
  text-align: center;
}

@media (min-width: 1024px) {
  .deliverables-title {
    width: 33.333333%;
    text-align: right;
  }
}

.deliverables-title h2 {
  font-size: 2.25rem;
  font-weight: 400;
  color: white;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .deliverables-title h2 {
    font-size: 3.75rem;
  }
}

.deliverables-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 1024px) {
  .deliverables-list {
    width: 50%;
  }
}

.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.deliverable-toggle {
  margin-top: 4px;
  flex-shrink: 0;
}

.toggle-icon {
  width: 64px;
  height: 40px;
  background-color: var(--larafy-cyan);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  padding: 0 4px;
}

.toggle-icon svg {
  width: 32px;
  height: 32px;
  background-color: #e5e7eb;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.deliverable-item h3 {
  font-size: 1.25rem;
  color: white;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.deliverable-item p {
  color: #d1d5db;
}

.deliverables-button {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--larafy-navy);
  padding: 80px 0;
}

.testimonials-title {
  font-size: 2.25rem;
  color: var(--larafy-cyan);
  text-align: center;
  margin-bottom: 64px;
  font-weight: 300;
}

.testimonials-container {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 10;
}

.testimonial-arrow:hover {
  color: var(--larafy-cyan);
}

.testimonial-arrow-left {
  left: 0;
  transform: translate(-16px, -50%);
}

@media (min-width: 768px) {
  .testimonial-arrow-left {
    transform: translate(-48px, -50%);
  }
}

.testimonial-arrow-right {
  right: 0;
  transform: translate(16px, -50%);
}

@media (min-width: 768px) {
  .testimonial-arrow-right {
    transform: translate(48px, -50%);
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: white;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 16px;
  border: 2px solid #f3f4f6;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}

.testimonial-card p {
  color: #374151;
  font-size: 0.875rem;
  margin-bottom: 24px;
  flex-grow: 1;
  line-height: 1.75;
}

.testimonial-card h4 {
  font-weight: 700;
  color: var(--larafy-navy);
  font-size: 0.875rem;
}

.testimonial-role {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Bio Section */
.bio-section {
    background-image: url(./assets/img/Mundo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: bottom;
    padding: 80px 0;
}


.bio-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 10;
  padding-bottom: 705px;
}

@media (min-width: 768px) {
  .bio-container {
    flex-direction: row;
  }
}

.bio-text-left {
  width: 100%;
  text-align: right;
  display: none;
}

@media (min-width: 768px) {
  .bio-text-left {
    width: 33.333333%;
    display: block;
  }
}

.bio-text-left h2 {
  font-size: 1.875rem;
  color: var(--larafy-cyan);
  line-height: 1.2;
  font-weight: 300;
}

@media (min-width: 1024px) {
  .bio-text-left h2 {
    font-size: 2.25rem;
  }
}

.bio-image {
    position: relative;
    width: 100%;
    min-height: 50vh;
    background-image: url('./assets/img/Foto.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


@media (min-width: 768px) {
  .bio-image {
    width: 33.333333%;
  }
}

.bio-title-mobile {
  display: block;
  margin: 24px auto 0;
  font-size: 1.875rem;
  color: var(--larafy-cyan);
  text-align: center;
  line-height: 1.2;
  font-weight: 300;
  width: 100%;
}

@media (min-width: 768px) {
  .bio-title-mobile {
    display: none;
  }
}

.bio-text-right {
  width: 100%;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .bio-text-right {
    width: 33.333333%;
    margin-top: 0;
  }
}

.bio-text-right h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.bio-role {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 24px;
}

.bio-description {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.75;
}


/* Event Info Section */
.event-info-section {
  background-color: #002F43;
  padding: 80px 0;
  position: relative;
}

.event-info-title {
  font-size: 1.875rem;
  color: white;
  margin-bottom: 64px;
  text-align: center;
}

@media (min-width: 768px) {
  .event-info-title {
    font-size: 2.25rem;
  }
}

.event-info-boxes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 1024px) {
  .event-info-boxes {
    flex-direction: row;
  }
}

.event-info-box {
  border: 1px solid var(--larafy-cyan);
  border-radius: 16px;
  padding: 32px;
  width: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .event-info-box {
    width: 33.333333%;
  }
}

.event-info-box svg {
  margin-bottom: 16px;
}

.event-info-box p {
  font-size: 1.25rem;
  color: white;
}

@media (min-width: 1024px) {
  .event-info-box p {
    font-size: 1.125rem;
  }
}

.pricing-box {
  background-color: var(--larafy-cyan);
  border-radius: 8px;
  padding: 24px;
  max-width: 32rem;
  margin: 0 auto;
  transition: transform 0.3s;
}



.pricing-box h3 {
  color: var(--larafy-navy);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  font-weight: bold;

}

.pricing-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--larafy-navy);
}

.pricing-old {
  font-size: 0.875rem;
  text-decoration: line-through;
  opacity: 0.7;
}

.pricing-new {
  display: flex;
  align-items: baseline;
  font-weight: 700;
}

.pricing-currency {
  font-size: 1.5rem;
  margin-right: 4px;
}

.pricing-amount {
  font-size: 3.75rem;
}

.event-info-audience {
  margin-top: 32px;
  color: white;
  font-size: 1.125rem;
  text-align: center;
}

/* Footer Section */
.footer-section {
  background-color: #002F43;
  padding: 64px 0;
  border-top: 1px solid #1f2937;
}

.footer-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-button {
  margin-bottom: 64px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0.8;
}

.footer-logo-text {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: white;
}

.footer-logo-text-cyan {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--larafy-cyan);
}

.footer-tagline {
  color: #6b7280;
  font-size: 0.75rem;
  margin-top: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Button Styles */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--larafy-cyan);
  color: var(--larafy-navy);
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
  transition: all 0.3s;
  transform: scale(1);
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

@media (min-width: 768px) {
  .btn-primary {
    font-size: 1.25rem;
  }
}

.btn-primary:hover {
  background-color: var(--larafy-cyan-hover);
  transform: scale(1.05);
}

.btn-primary:active {
  transform: scale(0.98);
}

/* Mobile Optimizations */
@media (max-width: 767px) {
  .hero-section {
    min-height: auto;
    padding: 32px 0 48px;
    background-size: cover;
    background-position: center top;
  }

  .header {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .header-social {
    width: 100%;
    justify-content: center;
    gap: 12px;
  }

  .hero-content {
    padding: 24px 16px 56px;
  }

  .hero-text {
    text-align: center;
    align-items: center;
    gap: 20px;
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .hero-text h2,
  .hero-text p {
    font-size: 1rem;
  }

  .hero-button,
  .btn-primary {
    width: 100%;
  }

  .hero-image-caption {
    position: static;
    margin-top: 24px;
    text-align: center;
  }

  .video-section,
  .opportunity-section,
  .pillars-section,
  .deliverables-section,
  .bio-section,
  .event-info-section,
  .footer-section {
    padding: 56px 0;
  }

  .opportunity-text,
  .pillars-intro p,
  .pillars-outro p,
  .deliverable-item p,
  .bio-description p,
  .event-info-audience {
    font-size: 1rem;
  }

  .opportunity-stats {
    gap: 8px;
  }

  .stats-number {
    font-size: 3.5rem;
  }

  .deliverables-container {
    gap: 32px;
  }

  .deliverable-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .deliverable-toggle {
    margin-bottom: 12px;
  }

  .testimonials-section {
    padding: 56px 0;
  }

  .testimonials-title {
    font-size: 1.75rem;
  }

  .testimonials-grid {
    gap: 16px;
  }

  .bio-container {
    padding-bottom: 0;
  }

  .bio-text-right {
    margin-top: 24px;
  }

  .bio-description {
    font-size: 1rem;
  }

  .event-info-boxes {
    gap: 16px;
  }

  .event-info-box {
    padding: 24px;
  }

  .pricing-box {
    margin-top: 16px;
  }

  .footer-button {
    width: 100%;
  }
}

