/* Design System Variables */
:root {
  /* Colors */
  --background: hsl(220, 13%, 8%);
  --foreground: hsl(45, 96%, 89%);
  --card: hsl(220, 13%, 12%);
  --card-foreground: hsl(45, 96%, 89%);
  --popover: hsl(220, 13%, 12%);
  --popover-foreground: hsl(45, 96%, 89%);
  --primary: #dda90d;
  --primary-foreground: hsl(220, 13%, 8%);
  --secondary: hsl(220, 13%, 15%);
  --secondary-foreground: hsl(45, 96%, 89%);
  --muted: hsl(220, 13%, 15%);
  --muted-foreground: hsl(45, 30%, 65%);
  --accent: hsl(45, 96%, 70%);
  --accent-foreground: hsl(220, 13%, 8%);
  --destructive: hsl(0, 84.2%, 60.2%);
  --destructive-foreground: hsl(45, 96%, 89%);
  --border: hsl(220, 13%, 20%);
  --input: hsl(220, 13%, 15%);
  --ring: hsl(45, 96%, 70%);

  /* Custom design tokens */
  --gold: hsl(45, 96%, 70%);
  --gold-light: hsl(45, 96%, 80%);
  --gold-dark: hsl(45, 96%, 60%);
  --dark: hsl(220, 13%, 8%);
  --dark-card: hsl(220, 13%, 12%);
  --dark-border: hsl(220, 13%, 20%);
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, hsl(45, 96%, 60%), hsl(45, 96%, 80%));
  --gradient-dark: linear-gradient(135deg, hsl(220, 13%, 8%), hsl(220, 13%, 15%));
  
  /* Shadows */
  --shadow-gold: 0 10px 30px -10px hsl(45, 96%, 70%, 0.3);
  --shadow-elegant: 0 20px 60px -10px hsl(220, 13%, 8%, 0.8);
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --radius: 1rem;
  --container-padding: 1rem;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(28, 32, 40, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 6rem;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}


.container-logo{
    display: flex;
    width: 30%;
    flex-direction: row;
    align-items: center;
}

.logo-img-menu{
    width: 10%;
    height: auto;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
}
.logo-img-menu img{
    width: 100%;
    height: auto;
}


.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.nav {
  display: none;
  gap: 2rem;
}

.nav-link {
  color: var(--foreground);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

/* Buttons */
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28, 32, 40, 0.9) 0%, rgba(28, 32, 40, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 100%;
  padding: 0 1rem;
}

.badge {
  display: inline-block;
  background: rgba(246, 213, 92, 0.2);
  color: var(--primary);
  border: 1px solid rgba(246, 213, 92, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.text-primary {
  color: var(--primary);
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: rgba(59, 67, 81, 0.2);
}

.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.service-card:hover {
  border-color: rgba(246, 213, 92, 0.5);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.service-icon {
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.service-icon img{
  width: 12%;
  height: auto
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.service-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
  padding: 5rem 0;
}

.portfolio-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.portfolio-card:hover {
  border-color: rgba(246, 213, 92, 0.5);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.portfolio-image {
  aspect-ratio: 13 / 11;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.portfolio-description {
  color: var(--muted-foreground);
}

/* About Section */
.about {
  padding: 5rem 0;
  background: rgba(59, 67, 81, 0.2);
}

.about-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-features {
  margin-bottom: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.about-feature svg {
  color: var(--primary);
  flex-shrink: 0;
}

.about-feature span {
  color: var(--foreground);
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
}

/* Contact Section */
.contact {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--foreground);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-items img{
  width: 5% ;
  height: auto
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.instagram, .email, .whatsapp{
  cursor: pointer;
}

.contact-value {
  color: var(--foreground);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-label {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.contact-form-container {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.form-input,
.form-textarea {
  padding: 0.75rem 1rem;
  background: var(--input);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-family: inherit;
  transition: var(--transition-smooth);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(246, 213, 92, 0.2);
}

.form-textarea {
  resize: none;
  min-height: 120px;
}

/* Footer */
.footer {
  padding: 3rem 0;
  background: rgba(59, 67, 81, 0.2);
  border-top: 1px solid var(--border);
}

.footer-content {
  text-align: center;
}

.footer-content .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-subtitle {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.logo-img{
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
}
.logo-img img{
    width: 7%;
    height: auto;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Responsive adjustments */
@media (max-width: 767px) {

  .container-logo .logo{
      display: none;
  }

  .container-logo {
    display: flex;
    width: 20%;
    flex-direction: row;
    align-items: center;
  }

  .logo-img-menu{
    width: 40%;
    height: auto;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
  }
  .logo-img-menu img{
      width: 100%;
      height: auto;
  }


  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-content{
    margin-top: 6rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }

  .logo-img img{
      width: 12%;
      height: auto;
  }

  
  .section-title {
    font-size: 2rem;
  }

  .contact-form-container{
    display: none;
  }
}