/* 
 * Estilos generales para Glamour Agency
 * Colores de lujo y glamour:
 * - Negro: #000000
 * - Dorado: #D4AF37
 * - Platino: #E5E4E2
 * - Gris oscuro: #333333
 * - Blanco: #FFFFFF
 * - Rosa dorado: #B76E79
 */

/* Reset y estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 0.5em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo h1 {
  font-size: 2rem;
  letter-spacing: 2px;
  margin: 0;
  color: #D4AF37;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

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

.nav-links a {
  color: #E5E4E2;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

.nav-links a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #D4AF37;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #D4AF37;
}

.nav-links a:hover:after {
  width: 100%;
}

/* Botón de Login modificado */
.login-btn {
  background-color: transparent;
  color: #D4AF37;
  border: 1px solid #D4AF37;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background-color: #D4AF37;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../../images/barcos.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 10%;
  color: #fff;
}

.hero-content {
  max-width: 800px;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 0.2em;
  color: #D4AF37;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero h3 {
  font-size: 2rem;
  margin-bottom: 0.5em;
  color: #E5E4E2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2em;
  color: #E5E4E2;
  max-width: 600px;
}

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

.btn {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: #D4AF37;
  color: #000;
  border: none;
}

.btn-primary:hover {
  background-color: #c9a732;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #E5E4E2;
  border: 1px solid #E5E4E2;
}

/* Soluciones */
.solutions {
  padding: 5rem 10%;
  background-color: #f9f9f9;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #666;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.solution-item {
  display: flex;
  margin-bottom: 5rem;
  gap: 5rem;
  align-items: center;
}

.solution-item.reverse {
  flex-direction: row-reverse;
}

.solution-image {
  flex: 1;
}

.solution-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.solution-content {
  flex: 1;
}

.solution-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #000;
}

.solution-content p {
  margin-bottom: 1.5rem;
  color: #555;
}

.solution-content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.solution-content li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.solution-content li::before {
  content: '•';
  color: #D4AF37;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -0.2rem;
}

/* Portfolio */
.portfolio {
  padding: 5rem 10%;
  background-color: #050505;
  color: #fff;
}

.portfolio .section-header h2 {
  color: #D4AF37;
}

.portfolio .section-header p {
  color: #E5E4E2;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.portfolio-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  padding: 2rem;
  transform: translateY(100px);
  transition: all 0.3s ease;
  opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay h3 {
  color: #D4AF37;
  margin-bottom: 0.5rem;
}

.portfolio-overlay p {
  color: #E5E4E2;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

/* Contacto */
.contact {
  padding: 5rem 10%;
  background-color: #f9f9f9;
}

.contact-container {
  display: flex;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-form {
  flex: 2;
  background: #fff;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.full-width {
  width: 100%;
}

.contact-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.contact-card i {
  font-size: 2rem;
  color: #D4AF37;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.contact-card p {
  color: #666;
}

.contact-social {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.contact-social h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333;
}

.contact-social .social-icons {
  justify-content: center;
}

@media (max-width: 992px) {
  .solution-item {
    flex-direction: column;
    gap: 2rem;
  }
  
  .solution-item.reverse {
    flex-direction: column;
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-container {
    flex-direction: column;
  }
}

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


/* Estilos para el Dashboard y Admin Panel */

/* Estilos generales */
.dashboard-body,
.admin-body {
background-color: #f5f5f5;
min-height: 100vh;
margin: 0;
font-family: 'Montserrat', sans-serif;
}

/* Dashboard principal después del login */
.dashboard-container {
max-width: 1200px;
margin: 0 auto;
padding: 3rem 2rem;
}

.dashboard-header {
text-align: center;
margin-bottom: 3rem;
}

.dashboard-header h1 {
font-family: 'Playfair Display', serif;
font-size: 3rem;
color: #D4AF37;
letter-spacing: 2px;
margin-bottom: 0.5rem;
}

.dashboard-header p {
color: #666;
font-size: 1.2rem;
}

.service-selection {
display: flex;
gap: 2rem;
justify-content: center;
flex-wrap: wrap;
}

.service-card {
background: #fff;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
padding: 2.5rem;
flex: 1;
min-width: 300px;
max-width: 500px;
transition: all 0.3s ease;
cursor: pointer;
border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
border-color: rgba(212, 175, 55, 0.3);
}

.service-icon {
font-size: 3rem;
color: #D4AF37;
margin-bottom: 1.5rem;
text-align: center;
}

.service-card h2 {
font-family: 'Playfair Display', serif;
font-size: 1.8rem;
color: #333;
margin-bottom: 1rem;
}

.service-card p {
color: #666;
margin-bottom: 1.5rem;
font-size: 1rem;
}

.service-features {
display: flex;
flex-direction: column;
gap: 0.8rem;
margin-bottom: 2rem;
}

.service-features span {
display: flex;
align-items: center;
gap: 0.5rem;
color: #555;
font-size: 0.95rem;
}

.service-features i {
color: #D4AF37;
}

.service-action {
display: flex;
justify-content: center;
align-items: center;
margin-top: auto;
}

.service-action span {
display: flex;
align-items: center;
gap: 0.5rem;
font-weight: 600;
color: #D4AF37;
padding: 0.5rem 1rem;
border-radius: 50px;
transition: all 0.3s ease;
}

.service-card:hover .service-action span {
background-color: #D4AF37;
color: #fff;
}

.dashboard-footer {
display: flex;
justify-content: center;
margin-top: 3rem;
}

.logout-btn {
background: transparent;
border: 1px solid #D4AF37;
color: #D4AF37;
padding: 0.8rem 1.5rem;
border-radius: 50px;
cursor: pointer;
font-size: 1rem;
display: flex;
align-items: center;
gap: 0.5rem;
transition: all 0.3s ease;
}

.logout-btn:hover {
background: #D4AF37;
color: #fff;
}

/* Admin Panel para Modelos */
.admin-navbar {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem 2rem;
background-color: #fff;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.admin-logo h1 {
font-family: 'Playfair Display', serif;
font-size: 1.5rem;
color: #D4AF37;
margin: 0;
}

.admin-nav-links {
display: flex;
gap: 1.5rem;
}

.nav-link {
display: flex;
align-items: center;
gap: 0.5rem;
color: #555;
padding: 0.5rem 1rem;
border-radius: 5px;
transition: all 0.3s ease;
}

.nav-link:hover {
background-color: rgba(212, 175, 55, 0.1);
color: #D4AF37;
}

.nav-link.active {
background-color: rgba(212, 175, 55, 0.15);
color: #D4AF37;
font-weight: 600;
}

.admin-user {
display: flex;
align-items: center;
gap: 1rem;
}

.user-info {
display: flex;
flex-direction: column;
text-align: right;
}

.user-name {
font-weight: 600;
color: #333;
font-size: 0.9rem;
}

.user-role {
color: #777;
font-size: 0.8rem;
}

.admin-user .logout-btn {
background: transparent;
border: none;
color: #999;
padding: 0.5rem;
cursor: pointer;
font-size: 1.2rem;
display: flex;
align-items: center;
transition: all 0.3s ease;
}

.admin-user .logout-btn:hover {
color: #D4AF37;
}

.admin-container {
max-width: 1400px;
margin: 0 auto;
padding: 2rem;
}

.admin-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 2rem;
}

.admin-header h2 {
font-family: 'Playfair Display', serif;
font-size: 2rem;
color: #333;
}

.admin-content {
background: #fff;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
padding: 2rem;
}

.search-bar {
position: relative;
margin-bottom: 1.5rem;
}

.search-bar input {
width: 100%;
padding: 0.8rem 1rem 0.8rem 2.5rem;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 1rem;
}

.search-bar i {
position: absolute;
left: 1rem;
top: 50%;
transform: translateY(-50%);
color: #777;
}

.models-table {
overflow-x: auto;
}

.models-table table {
width: 100%;
border-collapse: collapse;
}

.models-table th, 
.models-table td {
padding: 1rem;
text-align: left;
border-bottom: 1px solid #eee;
}

.models-table th {
font-weight: 600;
color: #555;
background-color: #f9f9f9;
}

.model-photo img {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
}

.actions {
display: flex;
gap: 0.5rem;
}

.edit-btn, 
.delete-btn {
background: transparent;
border: none;
width: 32px;
height: 32px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
}

.edit-btn {
color: #D4AF37;
}

.delete-btn {
color: #ff6b6b;
}

.edit-btn:hover, 
.delete-btn:hover {
background-color: #f5f5f5;
}

.pagination {
display: flex;
justify-content: center;
margin-top: 2rem;
gap: 0.5rem;
}

.page-btn {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #ddd;
background: #fff;
border-radius: 5px;
cursor: pointer;
transition: all 0.3s ease;
}

.page-btn.active {
background: #D4AF37;
color: #fff;
border-color: #D4AF37;
}

.page-btn:hover:not(.active) {
background: #f5f5f5;
}

/* Modal para añadir/editar modelo */
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.5);
z-index: 1000;
justify-content: center;
align-items: center;
padding: 1rem;
}

.modal-content {
background-color: #fff;
border-radius: 10px;
width: 100%;
max-width: 800px;
max-height: 90vh;
overflow-y: auto;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.5rem 2rem;
border-bottom: 1px solid #eee;
}

.modal-header h3 {
font-family: 'Playfair Display', serif;
font-size: 1.8rem;
color: #333;
margin: 0;
}

.close-btn {
background: transparent;
border: none;
font-size: 1.5rem;
color: #777;
cursor: pointer;
transition: all 0.3s ease;
}

.close-btn:hover {
color: #D4AF37;
}

.modal-body {
padding: 2rem;
}

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

.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: 600;
color: #333;
}

input[type="text"],
input[type="number"],
textarea,
select {
width: 100%;
padding: 0.8rem;
border: 1px solid #ddd;
border-radius: 5px;
font-family: 'Montserrat', sans-serif;
font-size: 1rem;
}

textarea {
resize: vertical;
min-height: 100px;
}

/* Estilos para el nuevo selector de fotos */
.photo-upload-area {
margin-top: 10px;
}

.dropzone {
border: 2px dashed #ccc;
border-radius: 8px;
padding: 30px;
text-align: center;
background-color: #f9f9f9;
cursor: pointer;
transition: all 0.3s ease;
}

.dropzone:hover {
border-color: #007bff;
background-color: #f0f8ff;
}

.dropzone.dragover {
border-color: #28a745;
background-color: #f0fff4;
}

.dropzone-content {
margin-bottom: 20px;
}

.dropzone-content i {
font-size: 48px;
color: #999;
margin-bottom: 15px;
}

.dropzone-content .browse-text {
color: #007bff;
text-decoration: underline;
cursor: pointer;
}

.dropzone-content .small-text {
font-size: 0.8em;
color: #777;
margin-top: 10px;
}

#previewContainer {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 15px;
}

.image-preview {
position: relative;
width: 120px;
height: 120px;
border-radius: 4px;
overflow: hidden;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.remove-image {
position: absolute;
top: 5px;
right: 5px;
background: rgba(0, 0, 0, 0.6);
color: white;
border: none;
border-radius: 50%;
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}

.blur-option-container {
margin-top: 20px;
display: flex;
align-items: center;
justify-content: space-between;
display: none;
}

.btn-preview {
background-color: #28a745;
color: white;
font-weight: bold;
padding: 10px 20px;
border-radius: 5px;
border: none;
display: flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
font-size: 16px;
}

.btn-preview:hover {
background-color: #218838;
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Estilos para toast notifications */
.toast-container {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 9999;
}

.toast {
background-color: #333;
color: white;
padding: 12px 20px;
border-radius: 4px;
margin-bottom: 10px;
display: flex;
align-items: center;
animation: fadeIn 0.3s, fadeOut 0.3s 2.7s;
opacity: 0;
animation-fill-mode: forwards;
max-width: 350px;
}

.toast.success {
background-color: #28a745;
border-left: 5px solid #1e7e34;
}

.toast.error {
background-color: #dc3545;
border-left: 5px solid #bd2130;
}

.toast-icon {
margin-right: 10px;
font-size: 20px;
}

.toast-message {
flex-grow: 1;
}

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

@keyframes fadeOut {
from { opacity: 1; transform: translateY(0); }
to { opacity: 0; transform: translateY(-20px); }
}




/* Estilos modernos para la carga de fotos */
.photo-upload-container {
width: 100%;
margin-bottom: 20px;
}

.photo-upload-row {
display: flex;
justify-content: space-between;
margin-bottom: 15px;
}

.photo-upload {
width: 32%;
position: relative;
aspect-ratio: 1/1;
background-color: #f9f9f9;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}

.photo-upload:hover {
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.upload-label {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
cursor: pointer;
padding: 15px;
text-align: center;
transition: all 0.2s ease;
background-color: #f9f9f9;
border: 2px dashed #ddd;
border-radius: 8px;
}

.upload-label:hover {
background-color: #f0f8ff;
border-color: #007bff;
}

.upload-label i {
font-size: 24px;
color: #007bff;
margin-bottom: 10px;
transition: all 0.3s ease;
}

.upload-label span {
color: #666;
font-size: 14px;
}

.upload-label:hover {
background-color: #f0f8ff;
}

.upload-label:hover i {
transform: scale(1.2);
}

.photo-preview {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
display: none;
}

.photo-preview.has-image {
display: block;
}

.remove-photo {
position: absolute;
top: 5px;
right: 5px;
width: 30px;
height: 30px;
border-radius: 50%;
background-color: rgba(0, 0, 0, 0.5);
border: none;
color: white;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.2s ease;
}

.remove-photo:hover {
background-color: rgba(220, 53, 69, 0.8);
transform: scale(1.1);
}

/* Estilo mejorado para las opciones de previsualización */
.preview-options {
background-color: #f8f9fa;
padding: 15px;
border-radius: 8px;
border-left: 4px solid #007bff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
margin-top: 20px !important;
}

.blur-option {
display: flex;
align-items: center;
margin-bottom: 15px;
}

.blur-option input[type="checkbox"] {
margin-right: 10px;
}

.btn-secondary {
background-color: #6c757d;
color: white;
border: none;
padding: 8px 16px;
border-radius: 4px;
cursor: pointer;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
}

.btn-secondary i {
margin-right: 5px;
}

.btn-secondary:hover {
background-color: #5a6268;
transform: translateY(-1px);
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Estilos para el Footer */
footer {
background-color: #000000;
color: #E5E4E2;
padding: 4rem 5% 2rem;
}

.footer-content {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 3rem;
gap: 2rem;
}

.footer-logo {
flex: 1;
min-width: 250px;
}

.footer-logo h2 {
font-family: 'Playfair Display', serif;
font-size: 1.8rem;
color: #D4AF37;
margin-bottom: 1rem;
text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.footer-logo p {
color: #E5E4E2;
font-size: 0.9rem;
max-width: 300px;
}

.footer-links, .footer-social, .footer-contact {
flex: 1;
min-width: 180px;
}

.footer-links h3, .footer-social h3, .footer-contact h3 {
font-family: 'Playfair Display', serif;
font-size: 1.2rem;
color: #D4AF37;
margin-bottom: 1.5rem;
position: relative;
padding-bottom: 0.8rem;
}

.footer-links h3:after, .footer-social h3:after, .footer-contact h3:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 2px;
background-color: #D4AF37;
}

.footer-links ul {
display: flex;
flex-direction: column;
gap: 0.8rem;
}

.footer-links a {
color: #E5E4E2;
font-size: 0.9rem;
transition: all 0.3s ease;
display: inline-block;
}

.footer-links a:hover {
color: #D4AF37;
transform: translateX(5px);
}

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

.footer-social .social-icons a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background-color: rgba(229, 228, 226, 0.1);
border-radius: 50%;
color: #E5E4E2;
transition: all 0.3s ease;
}

.footer-social .social-icons a:hover {
background-color: #D4AF37;
color: #000000;
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-contact p {
display: flex;
align-items: center;
gap: 0.8rem;
margin-bottom: 1rem;
font-size: 0.9rem;
color: #E5E4E2;
}

.footer-contact i {
color: #D4AF37;
font-size: 1.1rem;
width: 20px;
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(229, 228, 226, 0.1);
}

.footer-bottom p {
font-size: 0.9rem;
color: rgba(229, 228, 226, 0.7);
}

/* Eliminar completamente el botón de menú hamburguesa */
.menu-toggle {
  display: none !important; /* El !important asegura que siempre se oculte */
}

/* Media Queries Mejoradas */
@media (max-width: 1100px) {
  .solution-item {
    gap: 3rem;
  }

  .hero h2 {
    font-size: 3rem;
  }

  .hero h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 992px) {
  /* Modificar el comportamiento responsive para que la navegación sea siempre visible */
  .nav-links {
    position: static;
    flex-direction: row;
    background-color: transparent;
    padding: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .hero {
    text-align: center;
    padding: 0 5%;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

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

  .contact-container {
    flex-direction: column;
  }

  .contact-form {
    order: 2;
  }

  .contact-info {
    order: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .footer-content {
    gap: 3rem;
  }

  .footer-logo {
    flex: 100%;
    text-align: center;
  }

  .footer-logo p {
    max-width: 100%;
  }

  .footer-links, .footer-social, .footer-contact {
    flex: 1;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  /* Para pantallas muy pequeñas, ajustar el tamaño del navbar */
  .navbar {
    flex-direction: column;
    padding: 1rem 5%;
    gap: 1rem;
  }
  
  .logo h1 {
    font-size: 1.5rem;
  }
  
  .nav-links {
    font-size: 0.8rem;
    gap: 0.8rem;
  }
  
  .login-btn {
    margin-top: 0.5rem;
  }

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

  .hero h3 {
    font-size: 1.5rem;
  }

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

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

  .section-header p {
    font-size: 1rem;
  }

  .solution-content h3 {
    font-size: 1.5rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

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

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 3rem 5% 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }

  .footer-links h3:after, .footer-social h3:after, .footer-contact h3:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links ul {
    align-items: center;
  }

  .footer-social .social-icons {
    justify-content: center;
  }

  .footer-contact p {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero h2 {
    font-size: 2rem;
  }

  .hero h3 {
    font-size: 1.3rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .solutions, .portfolio, .contact {
    padding: 3rem 5%;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .solution-item {
    margin-bottom: 3rem;
    gap: 2rem;
  }

  .solution-content ul {
    padding-left: 0;
  }

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

/* Ajustes para el formulario en dispositivos pequeños */
@media (max-width: 480px) {
  .form-group {
    margin-bottom: 1rem;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.7rem;
    font-size: 0.9rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  footer {
    padding: 2.5rem 5% 1rem;
  }

  .footer-content {
    gap: 2rem;
  }

  .footer-logo h2 {
    font-size: 1.5rem;
  }

  .footer-links h3, .footer-social h3, .footer-contact h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
}

/* Modificación para la navegación móvil */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 5%;
    align-items: center;
  }
  
  .nav-links {
    display: none !important; /* Ocultar completamente en móvil */
  }
  
  .logo h1 {
    font-size: 1.5rem;
    margin: 0;
  }
  
  .login-btn {
    margin-top: 0;
  }

  .hero-buttons .btn-secondary {
    background-color: #6c757d; /* Color gris similar al de la imagen */
    color: white;
    border: none;
    border-radius: 30px; /* Bordes muy curvos, como en la imagen */
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  /* Para el botón amarillo (NUESTROS SERVICIOS) si necesitas ajustarlo también */


  .footer-links {
    display: none !important;
  }
}