@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Raleway:wght@400;500;600;700&display=swap');

html {
  scroll-behavior: smooth;
}


:root {
  --font-sans: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-title: 'Raleway', sans-serif;

  --accent: #8b5e3c;      
  --accent-2: #c4a484;   
  --bg: #fdf8f0;          
  --muted: #6e5a47;       
  --card: #fffaf2;        
  --radius: 14px;
  --max-width: min(100%, 1300px);
}

/* === Reset y globales === */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: #3a2a1a;         
  line-height: 1.6;
  margin: 0;
  background: var(--bg);
  padding-top: 120px;     
}

/* === Tipografía === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 600;
  color: #5a3921;          
  margin: 0 0 12px 0;
}

p, li, a, span {
  font-family: var(--font-sans);
  font-weight: 400;
  color: #4b3a2a;
}

/* === Botones === */
button, .order-btn {
  font-family: var(--font-sans);
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover, .order-btn:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(139, 94, 52, 0.25);
}

/* === Container principal === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* === Main === */
main {
  background: transparent;  
  border-radius: 0;          
  box-shadow: none;          
  padding: 0;              
  margin: 0 auto;
}

/* === Sections === */
section {
  width: 100%;
  margin: 0;
  padding: 60px 0;        
}

section .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
section h3 {
  font-size: 1.8rem;
  color: #6e4b2d;
  border-bottom: 3px solid #d6b98c;
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 20px;
}

/* === Footer === */
footer {
  background: #d9b176;
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 22px 0;
  border-top: 3px solid #b98a55;
  font-size: 0.9rem;
}

#inicio {
  background-color: #e0d7bc;
}

#sobre {
  background-color: #fafafa;  
}

#menu {
  background-color: #eecfac;  
}

#contacto {
  background-color: #f8ecd6;
}

.icon {
  display: inline-flex;          
  justify-content: center;
  align-items: center;
  width: 70px;                   
  height: 70px;
  font-size: 30px;                
  color: white;
  background-color: #333;
  border-radius: 50%;             
  margin: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.icon:hover {
  transform: scale(1.2);
}

.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.facebook:hover {
  background-color: #1877f2;
}

