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

:root {
  --primary-color: #233352;
  --secondary-color: #726186;
  --accent-color: #d4905b;
  --highlight-color: #cbb12b;
  --tertiary-color: #895f7b;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --dark-gray: #333333;
  --text-color: #2c3e50;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
  width: auto;
}

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

.nav-menu a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 120px 0 80px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.hero-content 
{
  margin: 0 auto;
}
.hero-content .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--highlight-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-location {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent-color);
  color: var(--white);
}

.btn-primary:hover {
  background: #c17d47;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--secondary-color);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  padding: 80px 0;
  background: var(--light-gray);
}

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

.about-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white);
}

.about-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Schedule Section */
.schedule {
  padding: 80px 0;
  background: var(--white);
}

.schedule-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--secondary-color);
  color: var(--white);
}

.schedule-content {
  display: none;
}

.schedule-content.active {
  display: block;
}

.schedule-period {
  margin-bottom: 3rem;
}

.schedule-period h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
  padding: 1rem;
  background: var(--light-gray);
  border-radius: 10px;
}

.schedule-grid {
  display: grid;
  gap: 2rem;
}

.schedule-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--accent-color);
  align-items: start;
}

.speaker-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Remove the old schedule-time styles and replace with responsive adjustments */
@media (max-width: 768px) {
  .schedule-item {
    grid-template-columns: 60px 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .speaker-photo {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .schedule-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .speaker-photo {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }
}

.schedule-details h4 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.schedule-details p {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.schedule-image {
  margin-top: 1rem;
}

.schedule-image img {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.evening-event {
  background: linear-gradient(135deg, var(--tertiary-color), var(--secondary-color));
  color: var(--white);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
}

.evening-event h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}

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

.ceremony-details p {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
}

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

.parallel-event {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 15px;
  border-left: 5px solid var(--highlight-color);
}

.parallel-event h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

/* Speakers Section */
.speakers {
  padding: 80px 0;
  background: var(--light-gray);
}

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

.speaker-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.speaker-card:hover {
  transform: translateY(-5px);
}

.speaker-image {
  height: 250px;
  overflow: hidden;
}

.speaker-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.speakers-grid.menor {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

}
.speakers-grid.menor  .speaker-image {
  height: 230px;
}

.speaker-info {
  padding: 1.5rem;
  text-align: center;
}

.speaker-info h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.speaker-cref {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.speaker-topic {
  color: var(--secondary-color);
  font-size: 0.9rem;
  display: none;
}

.speaker-social a {
  color: var(--secondary-color);
  font-size: 1rem;
 text-decoration: none;
}


/* Location Section */
.location {
  padding: 80px 0;
  background: var(--white);
}

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

.location-details h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.location-details p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.location-details i {
  color: var(--accent-color);
  width: 20px;
}

.location-features {
  margin-top: 2rem;
}

.location-features h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.location-features ul {
  list-style: none;
}

.location-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.location-features i {
  color: var(--highlight-color);
  width: 20px;
}

.location-map img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
}

/* Registration Section */
.registration {
  padding: 80px 0;
  background: var(--light-gray);
}

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

.certificados {
  padding: 40px 0;
  background: var(--light-gray);
}

.certificados-content {
  display: grid;
  max-width: 100%;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.certificados-content  .registration-info
{
  margin: auto;
}

.price-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.price-card h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 2rem;
}

.currency {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
}

.period {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.price-features {
  list-style: none;
  text-align: left;
}

.price-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-features i {
  color: var(--highlight-color);
  width: 20px;
}

.registration-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-color);
}

.btn-full {
  width: 100%;
  font-size: 1.1rem;
  padding: 1.2rem;
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 3rem 0 1rem;
}

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

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--highlight-color);
}

.footer-section p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}

/* Countdown Styles */
.countdown {
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.countdown-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.countdown-item {
  text-align: center;
  min-width: 80px;
}

.countdown-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--highlight-color);
  line-height: 1;
}

.countdown-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-started {
  text-align: center;
  font-size: 1.5rem;
  color: var(--highlight-color);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .hero-image {
    max-height: 43vh;
  }
  .nav-menu {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-content .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .schedule-item {
    grid-template-columns: 60px 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .speaker-photo {
    width: 60px;
    height: 60px;
  }

  .location-content,
  .registration-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-buttons {
    justify-content: center;    
  }
  .schedule-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 200px;
  }

  .countdown-container {
    gap: 1rem;
  }

  .countdown-number {
    font-size: 2rem;
  }

  .countdown-item {
    min-width: 60px;
  }
}

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

  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .about-grid,
  .speakers-grid {
    grid-template-columns: 1fr;
  }

  .ceremony-details {
    grid-template-columns: 1fr;
  }

  .parallel-events {
    grid-template-columns: 1fr;
  }
}

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

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}
.hero-buttons
{
  margin-top: 20px;
}
.hero-buttons a.btn.btn-primary {
    margin: auto !important;
}
.section-buttons
{
  margin: auto;
  margin-top: 40px;
  text-align: center;
}