@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Oswald:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Roboto&display=swap");


/* ESTILOS GLOBALES */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: var(--font-primary);
}

body {
	background: var(--color-bg-light);
	min-height: 100vh;
	padding-top: 56px;
}

::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--color-bg-light);
}

::-webkit-scrollbar-thumb {
	background: var(--color-primary-light);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

:root {
    /* Colores Primarios */
    --color-primary: #776ecb;           /* Violeta principal */
    --color-primary-light: #b6aff0;     /* Lavanda claro */
    --color-primary-dark: #5a4f9e;      /* Violeta oscuro */
    --color-primary-transparent: rgba(88, 36, 118, 0.4);  /* Violeta semi-transparente */

    /* Colores de Acento */
    --color-accent: #8074eb;            /* Violeta vivo para links */
    --color-accent-hover: #9d93f0;      /* Hover más claro */

    /* Colores Neutros */
    --color-white: #ffffff;
    --color-text-dark: #1a1a2e;         /* Texto oscuro */
    --color-text-light: #ffffff;        /* Texto claro */
    --color-text-muted: #6b6b7b;        /* Texto secundario */

    /* Fondos */
    --color-bg-light: #f8f7ff;          /* Fondo claro con tinte violeta */
    --color-bg-card: rgba(255, 255, 255, 0.85);
    --color-bg-glass: rgba(255, 255, 255, 0.15);
    --color-bg-dark: #1a1a2e;

    /* Sombras */
    --shadow-soft: 0 4px 15px rgba(119, 110, 203, 0.15);
    --shadow-medium: 0 8px 30px rgba(119, 110, 203, 0.2);
    --shadow-strong: 0 15px 40px rgba(119, 110, 203, 0.25);

    /* Efectos */
    --blur-light: blur(10px);
    --blur-medium: blur(15px);
    --blur-strong: blur(25px);

    /* Bordes */
    --border-radius-sm: 10px;
    --border-radius-md: 15px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    --border-radius-full: 50px;

    --border-light: 2px solid rgba(255, 255, 255, 0.3);
    --border-primary: 2px solid var(--color-primary-light);

    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Fuentes */
    --font-primary: 'Poppins', 'Roboto', sans-serif;
    --font-heading: 'Oswald', sans-serif;
}

/* Utilidades de Glassmorphism */
.glass {
    background: var(--color-bg-glass);
    backdrop-filter: var(--blur-medium);
    -webkit-backdrop-filter: var(--blur-medium);
    border: var(--border-light);
    border-radius: var(--border-radius-lg);
}

.glass-card {
    background: var(--color-bg-card);
    backdrop-filter: var(--blur-light);
    -webkit-backdrop-filter: var(--blur-light);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
}

/* Botón primario unificado */
.btn-primary {
    background: var(--color-primary-transparent);
    color: var(--color-white);
    border: none;
    border-radius: var(--border-radius-full);
    padding: 12px 30px;
    font-family: var(--font-primary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Gradiente de fondo para secciones */
.bg-gradient {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

/* HEADER */
.header {
	position: fixed;
	top: 0;
	left: 0;
	height: 36px;
	width: 100%;
	padding: 0 2%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;
}

.header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(182, 175, 240, 0.9) 100%);
	backdrop-filter: var(--blur-medium);
	-webkit-backdrop-filter: var(--blur-medium);
	z-index: -1;
}

.header::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: var(--transition-slow);
}

.header:hover::after {
	left: 100%;
}

/* Mejor alineación y estética del header */
.header {
	height: 36px;
	width: 100%;
	padding: 0 2%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: height 0.3s, padding 0.3s;
}

/* Efectos hover globales */
.social-link:hover,
.item-Txt:hover,
.enviar:hover,
.navbar a:hover,
#icon_log:hover {
	  text-decoration: none;

	color: var(--color-white);
	transform: translateY(-2px);
	transition: var(--transition-fast);
}
/* NAVBAR */
.navbar a:hover {
	  text-decoration: none;

	background: rgba(255, 255, 255, 0.3);
	color: var(--color-text-dark);
}

/* Navbar responsive y alineado */
.navbar {
text-decoration: none;

width: 100%;
height: 48px;
background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(182, 175, 240, 0.9) 100%);
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 2%;
position: fixed;
 top: 0;
 left: 0;
 z-index: 1000;
  box-shadow: 0 2px 10px rgba(119,110,203,0.08);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.brand_logo {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text-dark);
  letter-spacing: 0.5px;
  line-height: 1;
}
.menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  align-items: center;
  margin-left: 16px;
}
.menu-icon .bx-x { display: none; }
.menu-toggle { display: none; }
.navbar-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-login-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(119,110,203,0.08);
  transition: background 0.2s, color 0.2s;
}
.navbar-login-btn:hover {
  background: var(--color-primary-light);
  color: var(--color-white);
}

@media (max-width: 900px) {
  .navbar {
	  text-decoration: none;

    flex-direction: column;
    height: auto;
    padding: 8px 1%;
  }
  .navbar-brand {
    justify-content: center;
    width: 100%;
    margin-bottom: 8px;
  }
  .logo {
    width: 48px;
    height: 48px;
  }
  .menu-icon {
    display: flex;
    margin: 0 auto 8px auto;
  }
  .navbar-links {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: #6c63ff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 24px rgba(119,110,203,0.12);
    padding: 12px 0;
    margin-top: 8px;
  }
  .navbar-links a {
    display: block;
    text-align: center;
    margin: 8px auto;
    font-size: 1.1rem;
    color: #fff;
    background: #7c6fff;
    border-radius: 12px;
    width: 80%;
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(119,110,203,0.08);
  }
  .navbar-links a:hover {
    background: #fff;
    color: #6c63ff;
  }
  .navbar-login-btn {
    width: 80%; 
    font-size: 1.1rem;
    background: #fff;
    color: #6c63ff;
    border-radius: 12px;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(119,110,203,0.08);
  }
  .menu-toggle:checked ~ .navbar-links {
    display: flex;
  }
  .menu-toggle:checked ~ .menu-icon .bx-menu { display: none; }
  .menu-toggle:checked ~ .menu-icon .bx-x { display: inline-block; }
}
@media (min-width: 901px) {
    .navbar {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(182, 175, 240, 0.9) 100%);
    box-shadow: 0 2px 10px rgba(119,110,203,0.08);
    flex-direction: row;
    align-items: center;
    padding: 0 2%;
    text-decoration: none;

}
  .navbar a {
	  text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: center;  
    height: 32px;
    padding: 0 10px;
    font-size: 0.92rem;
    border-radius: 8px;
    background: none;
    color: var(--color-text-dark);
    margin: 0 4px;
  }
  .navbar-login-btn {
    background: rgba(119,110,203,0.08);
    color: var(--color-primary);
    font-size: 0.92rem;
    border-radius: 8px;
    padding: 6px 14px;
    margin-left: 12px;
  }
  .navbar-login-btn:hover {
    background: var(--color-primary-light);
    color: var(--color-white);
  }
}

@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Roboto&display=swap");

.centered_title{
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5em;
    color: white;
}

.main-container-form {
    margin: 7em 1.5em 2em 1.5em;
    font-family: 'Roboto', sans-serif;
    color: #626262;
}

.desciption-title {
    font-size: 1.25em;
    font-family: "Oswald", sans-serif;
    margin-bottom: 1em;
    color: #000;
}

.description-text {
    font-size: 0.875em;
    margin-bottom: 1em;
    text-align: justify;
    
}

.container-form {
    border: 3px solid #B8B7B7;
    border-radius: 10px;
}

.container-from-gobal {
    margin: 1.5em 1em 2em 1em;
}

.container-from-title {
    font-size: 1.3em;
    color: #000000;
    margin-top: 1em;
    margin-bottom: 1em;
}

.container-from-imput {
    display: flex;
    flex-direction: column;
    margin-top: 1em;
    margin-bottom: 1em;
    font-size: 0.9375em;
    justify-content: start;
}

.container-from-imput input {
    margin-top: 0.7em;
    border: 3px solid #B6AFF0;
    border-radius: 5px;
    height: 2em;
}

.container-from-textarea {
    margin-top: 1em;
    margin-bottom: 1em;
}

.container-from-textarea textarea {
    margin-top: 0.7em;
    border: 3px solid #B6AFF0;
    border-radius: 5px;
    resize: none;
    width: 100%;
}

.checkbox {
    margin-top: 1em;
    align-items: center;
    justify-content: start;
    display: flex;
    flex-direction: row-reverse;
}

.checkbox input {
    border: 2px solid #B8B7B7;
    height: 20px;
    width: 20px;
    margin-right: 0.5em;
}

.button-send {
    display: flex;
    justify-content: flex-end;
}

.button-send button {
    background-color: #B6AFF0;
    width: 125px;
    height: 30px;
    border-radius: 6px;
    border: #B6AFF0;
    color: white;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 1em;
    cursor: pointer;
}

.button-send button:hover {
    background: white;
    color: #b6aff0;
    border: 1px solid #b6aff0;
}

@media (min-width: 768px) {
    .centered_title{
        font-size: 3em;
        font-family: Impact, sans-serif;
        font-weight: 400;
    }
}

@media (min-width: 1024px) {

    .banner img {
        height: 450px;
    }
    .centered_title{
        font-size: 6em;
    }

    .main-container-form{
        margin: 4.9375em;
        margin-top: 8em;
    }

    .desciption-title {
        font-size: 1.5em;
        margin-bottom: 2em;
    }

    .description-text {
        font-size: 1.25em;
    }

    .container-from-gobal {
        margin: 2em 4em 3em 4em;
    }

    .container-from-data {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .container-from-imput {
        width: 45%;
    }

    .container-from-textarea{
        width: 45%;
    }

    .button-send {
        justify-content: center;
    }

    .button-send button {
        width: 350px;
    }
}

/* PERFIL */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Roboto", sans-serif;
}

p {
	font-family: "Roboto", sans-serif;
	font-size: 13px;
}

.container-gral {
	width: 100%;
	margin: auto;
	margin-top: 22%;
}

.return-btn button {
	width: 35%;
	height: 30px;
	margin-left: 5%;
	background: #b6aff0;
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	color: white;
	border: none;
	border-radius: 20px;
	cursor: pointer;
}

.return-btn button:hover {
	background: white;
	color: black;
	border: 2px solid #b6aff0;
}

.container-profile {
	width: 95%;
	margin: 6% auto;
	border: 3px solid #B6AFF0;
	border-radius: 20px;
	box-shadow: 0px 1px 15px #b8b7b7;
}

.profile-img {
	width: 100%;
	object-fit: cover;
	height: 300px;
	border-radius: 18px 18px 0 0;
}

.profile-header-data {
	margin-top: 5%;
	margin-left: 5%;
	line-height: 1.6;
}

/* .profile {
	background-color: #f1efef;
	border-radius: 20px;
} */

.profile-title,
.health-title {
	font-size: 14px;
	margin-bottom: 8%;
}

.general-profile p,
.health-profile p {
	line-height: 1.6;
}

.profile-data {
	display: flex;
	justify-content: space-around;
	margin: 5%;
	margin-top: 10%;
}

.general-profile {
	margin-left: -5%;
}

.profile-icons,
.adoption-require {
	display: none;
}

.profile-description {
	padding: 0 5% 15% 5%;
	text-align: justify;
}

.profile-description p {
	padding-top: 5%;
}

.buttons-groups {
	display: flex;
	justify-content: space-around;
	padding-bottom: 5%;
}

.buttons-groups button {
	font-family: "Oswald", sans-serif;
	font-size: 1rem;
	background: #b6aff0;
	border: none;
	border-radius: 12px;
	color: white;
	width: 100px;
	height: 30px;
	cursor: pointer;
}

.buttons-groups a:nth-of-type(2) button {
	background: #b8b7b7;
}

.buttons-groups a:nth-of-type(2) button:hover {
	background: white;
	color: #b8b7b7;
	border: 1px solid #b8b7b7;
}

.buttons-groups button:hover {
	background: white;
	color: #b6aff0;
	border: 1px solid #b6aff0;
}

@media screen and (min-width: 768px) {
	.container-gral {
		margin-top: 12%;
	}

	.return-btn button {
		font-size: 20px;
		width: 20%;
		height: 35px;
		margin-left: 3%;
		padding-bottom: 1%;
	}

	.container-profile {
		border: none;
	}

	.profile-header {
		display: flex;
		height: 260px;
		margin-bottom: 2%;
		background-color: #f1efef;
		border: 4px solid #b6aff0;
		border-radius: 20px;
	}

	.profile-header-data {
		margin-top: 5%;
	}

	.profile-data {
		display: flex;
		margin: 5%;
		margin-top: 5%;
	}

	.general-profile {
		margin-left: 0;
	}

	.profile-img {
		width: 375px;
		height: 254px;
		border-radius: 20px 0 0 20px;
	}

	.container-profile-description {
		border: 4px solid #b6aff0;
		background-color: #f1efef;
		border-radius: 20px;
	}

	.general-profile,
	.health-profile {
		flex: 5;
	}

	.profile-title,
	.health-title,
	.general-profile p,
	.health-profile p,
	.profile-description p {
		font-size: 15px;
	}

	.profile-icons {
		display: flex;
		flex: 2;
		flex-direction: row;
	}

	.material-symbols-outlined {
		font-size: 26px;
		margin: 0 15%;
	}

	.profile-description {
		margin: 5%;
		padding: 0;
	}

	.adoption-require {
		display: block;
		margin: 8%;
	}

	.adoption-require li {
		font-size: 12px;
		line-height: 1.5;
	}

	.adoption-require h6 {
		font-size: 13px;
		margin-left: -3%;

	}

	.buttons-groups {
		padding: 0;
		margin-bottom: 5%;
	}

	.buttons-groups button {
		font-size: 1.6rem;
		width: 200px;
		height: 40px;
		border-radius: 20px;
	}
}

@media screen and (min-width: 1280px) {
	p {
		font-size: 16px;
	}

	.container-gral {
		margin-top: 10%;
	}

	.container-profile {
		width: 90%;
		border: 5px solid #B6AFF0;
		border-radius: 20px;
		margin-top: 4%;
	}

	.profile-header,
	.container-profile-description {
		border: none;
	}

	.general-profile p,
	.health-profile p,
	.profile-description p {
		font-size: 18px;
	}

	.profile-header-data {
		padding-left: 0;
		margin-left: 10%;
	}

	.profile-img {
		width: 400px;
		height: 350px;
		border-radius: 20px;
		margin: 8%;
	}

	.profile {
		position: relative;
		display: flex;
		flex-direction: column;
	}

	.profile-title,
	.health-title {
		font-size: 18px;
	}

	.profile-data {
		position: absolute;
		width: 52%;
		top: 150px;
		right: 0;
	}

	.profile-description {
		width: 90%;
		margin-top: 10%;
		margin-left: 3%;
	}

	.material-symbols-outlined {
		font-size: 30px;
	}

	.profile-description p {
		line-height: 2;
	}

	.adoption-require {
		margin: 3% 0 6% 5.5%;
	}

	.adoption-require li {
		font-size: 14px;
	}

	.adoption-require h6 {
		font-size: 15px;
		margin-bottom: 1%;
	}

	.buttons-groups button {
		width: 240px;
		height: 50px;
		border-radius: 25px;
	}

	.return-btn button {
		font-size: 30px;
		width: 15%;
		height: 45px;
	}
}

/* ORGANIZACIONES */
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Roboto&display=swap");

body {
    width: 100%;
    font-family: 'Roboto', sans-serif;
}

main {
    margin-top: 15%;
}

.organizacion {
    margin: auto;
    width: 95%;
}

.organizacion h1 {
    font-size: 1.4rem;
    font-family: "Oswald", sans-serif;
    margin: 30% auto 2% auto;
    text-align: center;
}

.organizacion p {
    margin: 5%;
    text-align: justify;
}

.container-organizacion {
    margin: 5%;

    padding: 1%;
}

.org-member {
    display: flex;
    gap: 5%;
    margin-bottom: 5%;
    border: 1px solid lightgrey;
    border-radius: 5px;
}

.org-member img {
    width: 150px;
    border-radius: 5px 5px 0 0;
    object-fit: cover;
}

.org-data {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.org-data a {
    font-size: 12px;
}

@media screen and (min-width: 540px){
    .organizacion h1 {
        margin: 18% auto 2% auto;
        text-align: center;
    }

    .organizacion p {
            margin-bottom: 10%;
        }
    
}
@media screen and (min-width: 768px) {
    
    .organizacion h1 {
        font-size: 2rem;
        margin: 15% auto auto auto;
        text-align: center;
    }
    .organizacion p {
        margin: 5% auto 2% auto;
    }
    main {
        margin: 5% 3%;
    }

    .container-organizacion {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2%;
        margin: 5% 0;
    }

    .org-member {
        display: flex;
        flex-direction: column;
        height: 260px;
        margin-bottom: 2%;
        border: 1px solid lightgrey;
        border-radius: 5px;
    }

    .org-member img {
        
        width: 100%;
        height: 17vw;
        border-radius: 5px 5px 0 0;
    }

    .org-data {
        margin-left: 5%;
    }
}

@media screen and (min-width: 1024px) {
    main {
        margin: 0;
    }
    .organizacion h1 {
        margin-top: 12%;
    }
    .organizacion p {
        margin-top: 3%;
        margin-bottom: 5%;
    }

    .container-organizacion {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .org-member {
        flex-wrap: wrap;
    }
    .org-member img {
        height: 12vw;
    }
}

@media screen and (min-width: 1280px) {

    h1 {
        margin-top:15%
    }

    .container-organizacion {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-container img {
        width: 500px;
        height: 380px;
    }

    .org-section p {
        font-size: 20px;
    }

    .team-section p {
        margin-top: 2%;
    }
}

/*  NOSOTROS */
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Roboto&display=swap");

body {
    width: 100%;
    font-family: 'Roboto', sans-serif;
}

main {
    margin-top: 15%;
}

section {
    margin: 10%;
}

.about-section p {
    text-align: justify;
    line-height: 1.5;
    padding-top: 5%;
}

.about-section h2,
.about-section h3 {
    padding-top: 8%;
}

.about-img {
    display: none;
}


/* .image-gallery {
    display: flex;
    flex-wrap: wrap;
}

.image-gallery img {
    max-width: 300px;
    margin: 10px;
} */

.team-section p {
    margin-top: 5%;
}

.container-team {
    margin-top: 5%;
}

.team-member {
    display: flex;
    gap: 5%;
    margin-bottom: 5%;
    border: 1px solid lightgrey;
    border-radius: 5px;
}

.team-data {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-data a {
    font-size: 12px;
}

@media screen and (min-width: 768px) {
    main {
        margin: 5% 3%;
    }

    .about-container {
        display: flex;
    }


    .about-container img {
        object-fit: cover;
        width: 300px;
        height: 300px;
        border-radius: 10px;
        margin: 8% 0 0 6%;
    }

    .about-img {
        display: block;
    }

    .container-team {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2%;
    }

    .team-member {
        display: flex;
        flex-direction: column;
        height: 260px;
        margin-bottom: 2%;
        border: 1px solid lightgrey;
        border-radius: 5px;
    }

    .team-member img {
        width: 200px;
        border-radius: 5px 5px 0 0;
    }

    .team-data {
        margin-left: 5%;
    }
}

@media screen and (min-width: 1024px) {
    main {
        margin: 0;
    }

    section {
        margin: 4%;
    }

    .about-text {
        flex: 4;
    }

    .about-img {
        flex: 3;
    }

    .about-container img {
        width: 350px;
        height: 300px;
        margin: 15% 10% 0 6%;
    }

    .container-team {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .team-member {
        flex-wrap: wrap;
        width: 200px;
    }

    .mision-vision {
        display: flex;
        flex-direction: row;
        gap: 10%;
        border-top: 3px solid rgb(174, 174, 174);
        border-bottom: 3px solid rgb(174, 174, 174);
        margin: 5% 0 5% 0;
    }

    .mision,
    .vision {
        display: flex;
        flex-direction: column;
        margin: 0 0 4% 0;
    }

}

@media screen and (min-width: 1280px) {
    section {
        margin: 4% 8%;
    }

    .container-team {
        grid-template-columns: repeat(5, 1fr);
    }

    .about-container img {
        width: 440px;
        height: 380px;
    }

    .about-section p, .team-section p {
        font-size: 20px;
    }

    .team-section p {
        margin-top: 2%;
    }
}

@media screen and (min-width: 1440px) {
    .container-team {
        grid-template-columns: repeat(6, 1fr);
    }

    .about-container img {
        width: 520px;
        height: 380px;
    }
}



@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,900;1,800&display=swap");

section {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 41px;
	width: 100%;
	min-height: 100vh;
	background: url(/img/matchea.jpg) no-repeat;
	background-size: cover;
	background-position: center;
}

.contenedor {
	position: relative;
	width: 400px;
	border: 2px solid rgba(255, 255, 255, 0.6);
	border-radius: 20px;
	backdrop-filter: blur(15px);
	height: 500px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.contenedor h2 {
	color: #fff;
	font-size: 2rem;
	text-align: center;
}

.input-contenedor {
	position: relative;
	margin: 30px 0;
	width: 300px;
	border-bottom: 2px solid #fff;
}

.input-contenedor label {
	position: absolute;
	left: 5px;
	top: 50%;
	color: #fff;
	font-size: 1rem;
	transform: translateY(-50%);
	transition: 0.6s;
	pointer-events: none;
	font-weight: bold;
}

.input-contenedor input {
	width: 100%;
	background-color: transparent;
	border: none;
	outline: none;
	color: #fff;
	font-size: 1.2rem;
	padding: -35 0 5px;
	height: 50px;
}

.input-contenedor span {
	position: absolute;
	right: 8px;
	top: 20px;
	color: #fff;
	font-size: 1.2rem;
}

.recuperar {
	margin: -15px 0 15px;
	font-size: 0.9em;
	color: #fff;
	display: flex;
	justify-content: center;
}

.recuperar label input {
	margin: 3px;
}

.recuperar label a {
	color: #fff;
	text-decoration: none;
	transition: 0.3s;
	font-size: 0.9em;
	margin-left: 3px;
}

.recuperar label a:hover {
	text-decoration: underline;
}

input:focus ~ label,
input:valid ~ label {
	top: -5px;
}

.ingresar {
	width: 100%;
	height: 50px;
	margin: 30px 0px;
	background-color: #58247667;
	border-radius: 40px;
	border: none;
	cursor: pointer;
	outline: none;
	font-size: 1rem;
}

.ingresar:hover {
	opacity: 0.9;
	background: #776ecb;
}

.crear_cuenta {
	margin: 20px 0 10px;
	text-align: center;
	color: #fff;
	font-size: 0.9em;
}

.crear_cuenta p a {
	color: #fff;
	text-decoration: none;
	transition: 0.3s;
	font-size: 0.9em;
	margin-left: 3px;
}

.crear_cuenta p a:hover {
	text-decoration: underline;
}

/* Estilos de registro de usuarios*/

.cont-registro {
	width: 450px;
	height: 600px;
	border: 2px solid rgba(255, 255, 255, 0.6);
	border-radius: 20px;
	backdrop-filter: blur(15px);
	text-align: center;
	padding: 0px 35px;
}

.cont-registro header {
	font-size: 28px;
	font-weight: 600;
	margin: 20px 0 30px 0;
	color: #fff;
}

.cont-registro .form-princ {
	width: 100%;
	margin: 20px 0 30px 0;
	overflow: hidden;
}

.form-princ form {
	display: flex;
	width: 300%;
}

/* Estilos Barra de Progreso */
.cont-registro .progress-bar {
	display: flex;
	margin: 40px 0;
	color: #fff;
}

.cont-registro .progress-bar .paso {
	text-align: center;
	width: 100%;
	position: relative;
}

.progress-bar .paso p {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 8px;
}

.progress-bar .paso p.active {
	color: #776ecb;
	font-weight: 700;
	font-size: 21px;
}

.progress-bar .paso .num {
	position: relative;
	width: 30px;
	height: 30px;
	border: 2px solid #fff;
	border-radius: 50%;
	display: inline-block;
	font-weight: 500;
	font-size: 17px;
	line-height: 25px;
	transition: 0.2s;
}
.progress-bar .paso .num.active {
	border-color: #776ecb;
	background: #776ecb;
}

.progress-bar .paso .num span {
	font-weight: 500;
	font-size: 17px;
	line-height: 25px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.progress-bar .paso .num.active span {
	display: none;
}

.progress-bar .paso .check {
	display: none;
	position: absolute;
	left: 50%;
	top: 70%;
	font-size: 15px;
	transform: translate(-50%, -50%);
}

.progress-bar .paso .check.active {
	display: block;
	color: #fff;
}

.progress-bar .paso .num:before,
.progress-bar .paso .num:after {
	position: absolute;
	content: "";
	width: 80px;
	height: 4px;
	bottom: 11px;
	right: -90px;
	background: #fff;
}

.progress-bar .paso:last-child .num:before,
.progress-bar .paso:last-child .num:after {
	display: none;
}

.progress-bar .paso .num.active:after {
	background: #58247667;
	color: #fff;
	animation: mov_linea 0.3s linear forwards;
	transform: scaleX(0);
	transform-origin: left;
}

@keyframes mov_linea {
	100% {
		transform: scaleX(1);
	}
}
/* Estilos paso 1 */

.form-princ form .paso1 {
	width: 35%;
	transition: margin-left 0.3s ease-in-out;
}

.form-princ form .paso1 .titulo {
	text-align: left;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 50px;
	color: #fff;
}

.form-princ form .paso1 .campo {
	height: 35px;
	width: 350px;
	margin: 40px 0;
}

/*  Estilos paso 2 */

.form-princ form .paso2 {
	width: 33%;
	margin-left: 50px;
}

.form-princ form .paso2 .titulo {
	text-align: left;
	font-size: 20px;
	font-weight: 500;
	color: #fff;
}
.form-princ form .paso2 .campo {
	height: 35px;
	width: 90%;
	margin: 40px 0;
	display: flex;
	position: relative;
}

.form-princ form .paso2 .campoBtn {
	height: 35px;
	width: 100%;
	margin: 0;
	margin-top: -50px;
	display: flex;
	position: relative;
}

.labelsCampo {
	position: absolute;
	top: -30px;
	font-weight: 500;
	font-size: 14px;
	color: #fff;
	float: left;
	text-align: left;
	width: 100%;
}
.form-princ form .paso2 .campo input {
	height: 100%;
	width: 100%;
	border: 1px solid lightgrey;
	border-radius: 5px;
	font-size: 16px;
	padding-left: 15px;
}

/*  Estilos paso 3 */

.form-princ form .paso3 {
	width: 33%;
}

.form-princ form .paso3 .titulo {
	text-align: left;
	font-size: 20px;
	font-weight: 500;
	color: #fff;
}
.form-princ form .paso3 .campo {
	height: 35px;
	width: 350px;
	margin: 40px 0;
	display: flex;
	position: relative;
}

.form-princ form .paso3 .campo .label {
	position: absolute;
	top: -30px;
	font-weight: 500;
	font-size: 14px;
	color: #fff;
	float: left;
	text-align: left;
	width: 100%;
}
.form-princ form .paso3 .campo input {
	height: 100%;
	width: 100%;
	border: 1px solid lightgrey;
	border-radius: 5px;
	font-size: 16px;
	padding-left: 15px;
}

/* Estilos de mostrar / ocultar contraseña */

.ojitos {
	position: absolute;
	top: 29%;
	right: 7px;
	font-size: 18px;
	color: #58247667;
}

/* Estilos de mensaje de erro */
.error {
	color: red;
	font-size: 17px;
	float: right;
	margin: -4px;
	text-align: right;
}

#ocultar,
#ocultar2 {
	display: none;
	cursor: pointer;
}
#ocultar,
#ocultar2 {
	cursor: pointer;
}

/* Breakpoints */
/*? Falla en tamaño tableta!!  */

@media (max-width: 768px) {
	.contenedor {
		width: 100%;
		height: 100vh;
	}
	.contenedor h2 {
		font-size: 1.5rem;
	}
	.input-contenedor input {
		font-size: 1rem;
	}
	.input-contenedor span {
		font-size: 1rem;
	}
	.ingresar {
		font-size: 1rem;
	}
	.crear_cuenta {
		font-size: 0.8rem;
	}
	.recuperar {
		font-size: 0.8rem;
	}
}


@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Oswald:wght@400;500;700&display=swap");


* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: var(--font-primary);
}

.fontStyle {
	margin-top: 10%;
	font-size: 0.9rem;
	color: var(--color-text-dark);
}

h1 {
	margin: 0 auto 10% auto;
	font-size: 1.1rem;
	text-align: center;
	letter-spacing: 0.06em;
	font-family: var(--font-heading);
	color: var(--color-white);
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

a {
	color: var(--color-accent);
	transition: var(--transition-normal);
}

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

.cardFooter a {
	text-decoration: none;
	color: var(--color-text-dark);
	font-family: var(--font-heading);
}

.textoInicial {
	display: none;
}

/* Fondo principal con imagen */
.fondo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 18%;
	width: 100%;
	min-height: 82vh;
	background: url("/img/matchea.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}

.fondo::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(119, 110, 203, 0.3) 0%, rgba(182, 175, 240, 0.2) 100%);
}

/* Card principal con efecto glassmorphism */
.landing {
	display: flex;
	flex-direction: column;
	margin: 3% auto 2% auto;
	background: rgba(255,255,255,0.6);
	backdrop-filter: blur(15px);
	border: 2px solid rgba(255,255,255,0.3);
	border-radius: 20px;
	width: 350px;
	min-height: 350px;
	padding: 24px 18px;
	box-shadow: 0 4px 24px rgba(119,110,203,0.12);
	position: relative;
	z-index: 1;
}

.matchea {
	margin: 0 auto;
	padding: 0;
	width: 100%;
}

/* Select con estilo moderno */
.selectStyle {
	width: 100%;
	height: 45px;
	background: var(--color-white);
	border-radius: var(--border-radius-sm);
	border: 2px solid var(--color-primary-light);
	padding: 0 15px;
	font-size: 1rem;
	color: var(--color-text-dark);
	transition: var(--transition-normal);
}

.selectStyle:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 4px rgba(119, 110, 203, 0.2);
}

/* Botones de especie */
.btnEspecie {
	display: flex;
	margin: 0 auto;
	justify-content: space-between;
	margin-top: 18px;
	gap: 8px;
}

.btnEsp {
	border-radius: 12px;
	padding: 8px 12px;
	border: 1.5px solid var(--color-primary-light);
	background: var(--color-white);
	cursor: pointer;
	transition: var(--transition-normal);
	font-size: 0.95rem;
	min-width: 36px;
	min-height: 36px;
}

.btnEsp:hover {
	background: var(--color-primary-light);
	transform: translateY(-3px);
	box-shadow: var(--shadow-soft);
}

.btnEsp:active,
.btnEsp.active {
	background: var(--color-primary);
	border-color: var(--color-primary);
}

.btnEsp img,
.btnEsp span {
	filter: none;
	transition: var(--transition-normal);
}

.btnEsp:hover img,
.btnEsp:hover span {
	transform: scale(1.1);
}

/* Botones de sexo */
.btnSexo {
	display: flex;
	height: 36px;
	margin-top: 24px;
	text-align: center;
	border-radius: 18px;
	overflow: hidden;
	border: 1.5px solid var(--color-primary-light);
}

.btnIzqSex {
	border-radius: 0;
	background: var(--color-primary-light);
	width: 50%;
	border: none;
	cursor: pointer;
	transition: var(--transition-normal);
	font-size: 0.95rem;
}

.btnDerSex {
	border-radius: 0;
	width: 50%;
	border: none;
	background: var(--color-white);
	cursor: pointer;
	transition: var(--transition-normal);
	font-size: 0.95rem;
}

.btnIzqSex:hover,
.btnDerSex:hover {
	background: var(--color-primary);
	color: var(--color-white);
}

.btnIzqSex:active,
.btnDerSex:active,
.btnIzqSex.active,
.btnDerSex.active {
	background: var(--color-primary);
	color: var(--color-white);
}

/* Botón principal de ver resultados */
.btnFooter {
	margin-top: 32px;
}

.cardFooter {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 18px;
	background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
	padding: 8px 18px;
	margin: auto;
	border: none;
	font-family: var(--font-heading);
	font-size: 1rem;
	text-decoration: none;
	color: var(--color-white);
	cursor: pointer;
	transition: var(--transition-normal);
	box-shadow: 0 2px 10px rgba(119,110,203,0.08);
}

.cardFooter:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-medium);
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.cardFooter a {
	color: var(--color-white) !important;
	text-decoration: none;
}

.question {
	margin: 10% auto;
	text-align: center;
	text-decoration: none;
	color: var(--color-text-dark);
}

.question a {
	color: var(--color-primary);
	font-weight: 500;
	text-decoration: none;
}

.question a:hover {
	text-decoration: underline;
}

/* Media Queries */
@media screen and (max-width: 350px) {
}

@media screen and (min-width: 540px) {
	h1 {
		font-size: 1.2rem;
		margin-bottom: 7%;
		letter-spacing: 0.25em;
	}

	.fondo {
		margin-top: 10%;
		min-height: 90vh;
	}

	.landing {
		margin: 10% auto 5% auto;
	}

		width: 290px;
		min-height: 260px;
		padding: 12px 8px;
}

@media screen and (min-width: 720px) {
	h1 {
		font-size: 2.1rem;
		margin-bottom: 7%;
		letter-spacing: 0.2em;
	}

	p {
		font-size: 1.2rem;
		margin-bottom: 4%;
		color: var(--color-text-dark);
	}

	.fontStyle {
		font-size: 1.2rem;
	}

	.fondo {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 0;
		width: 100%;
		min-height: 91vh;
		background: url("/img/matchea.jpg");
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
	}

	.landing {
		display: flex;
		margin: 15% auto 5% auto;
		width: 80%;
		padding: auto;
	}

	.matchea {
		padding: 2%;
		margin: 10% auto;
		margin: 0 auto;
		padding: 0;
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 6px;
		align-items: center;
	.selectStyle {
		width: 100%;
		height: 50px;
		border-width: 2px;
		border-radius: var(--border-radius-md);
	}

	.btnEspecie {
		display: flex;
		margin: auto;
		justify-content: space-between;
	}

	.btnEsp {
		margin-top: 5%;
	}

	.btnIzqSex,
	.btnDerSex {
		height: 100%;
	}

	.btnFooter {
		margin-top: 20%;
	}

	.cardFooter {
		font-size: 1.3rem;
		padding: 15px 40px;
	}
}

@media screen and (min-width: 1024px) {
	.textoInicialCelu {
		display: none;
	}

	.textoInicial {
		display: flex;
		position: absolute;
		left: 10%;
		top: 40%;
	}

	h1 {
		color: var(--color-white);
		font-size: 2.5rem;
		margin-top: 5%;
		font-weight: 700;
		letter-spacing: 0.15em;
		text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
	}

	.fontStyle {
		font-size: 1.3rem;
	}

	.selectStyle {
		width: 100%;
		height: 45px;
	}

	p {
		font-size: 1.3rem;
		margin-bottom: 4%;
	}

	.fondo {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 0;
		width: 100%;
		min-height: 91vh;
		background: url("/img/matchea.jpg");
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
	}

	.landing {
		display: flex;
		margin: 12% 0 5% auto;
		margin-right: 10%;
		width: 37%;
		height: auto;
		padding: 20px;
	}

	.matchea {
		padding: 20px;
		width: 90%;
		height: auto;
	}

	.btnEspecie {
		margin-top: 2%;
	}

	.btnEsp {
		margin-top: 4%;
	}

	.btnsexo {
		margin-top: 5%;
	}

	.btnFooter {
		margin-top: 15%;
	}

	.cardFooter {
		font-size: 1.3rem;
	}

	.question {
		padding-bottom: 5%;
		text-align: center;
	}
}
}


/* Banner con overlay */
.banner {
    margin-top: 80px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: brightness(0.8);
}

.centered_title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.1em;
}

/* Contenedor principal del formulario */
.main-container-form {
    margin: 2.5em 1.5em 2em 1.5em;
    font-family: var(--font-primary);
    color: var(--color-text-dark);
}

.description-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: var(--blur-light);
    -webkit-backdrop-filter: var(--blur-light);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(182, 175, 240, 0.3);
}

.desciption-title {
    font-size: 1.4em;
    margin-bottom: 1em;
    color: var(--color-primary);
    font-weight: 600;
}

.desciption-title strong {
    color: var(--color-primary-dark);
}

.description-text {
    font-size: 0.95em;
    margin-bottom: 1em;
    text-align: justify;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Formulario con glassmorphism */
.container-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--blur-light);
    -webkit-backdrop-filter: var(--blur-light);
    border: 2px solid rgba(182, 175, 240, 0.4);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.container-from-gobal {
    margin: 1.5em 1.5em 2em 1.5em;
}

.container-from-title {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 1em;
    margin-bottom: 1.5em;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary-light);
}

.container-from-data {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.container-from-imput {
    display: flex;
    flex-direction: column;
    font-size: 0.95em;
    justify-content: start;
}

.container-from-imput label,
.container-from-textarea label {
    color: var(--color-text-dark);
    font-weight: 500;
    margin-bottom: 8px;
}

.container-from-imput input {
    border: 2px solid var(--color-primary-light);
    border-radius: var(--border-radius-sm);
    height: 45px;
    padding: 0 15px;
    font-size: 1em;
    color: var(--color-text-dark);
    transition: var(--transition-normal);
    background: var(--color-white);
}

.container-from-imput input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(119, 110, 203, 0.15);
}

.container-from-textarea {
    margin-top: 0;
    margin-bottom: 0;
}

.container-from-textarea textarea {
    border: 2px solid var(--color-primary-light);
    border-radius: var(--border-radius-sm);
    resize: none;
    width: 100%;
    padding: 12px 15px;
    font-size: 1em;
    font-family: var(--font-primary);
    color: var(--color-text-dark);
    transition: var(--transition-normal);
    background: var(--color-white);
}

.container-from-textarea textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(119, 110, 203, 0.15);
}

/* Checkboxes estilizados */
.checkbox {
    margin-top: 10px;
    align-items: center;
    justify-content: start;
    display: flex;
    flex-direction: row-reverse;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
}

.checkbox:hover {
    background: rgba(182, 175, 240, 0.1);
}

.checkbox input {
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid var(--color-primary-light);
    height: 22px;
    width: 22px;
    margin-right: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
}

.checkbox input:checked {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.checkbox input:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Separador */
hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary-light), transparent);
    margin: 20px 0;
}

/* Botón de enviar */
.button-send {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.button-send button {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    width: 200px;
    height: 50px;
    border-radius: var(--border-radius-full);
    border: none;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.1em;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-soft);
}

.button-send button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.button-send button:active {
    transform: translateY(-1px);
}

/* Media Queries */
@media (min-width: 768px) {
    .banner img {
        height: 350px;
    }

    .centered_title {
        font-size: 4em;
    }

    .main-container-form {
        margin: 3em;
    }

    .container-from-data {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .container-from-imput,
    .container-from-textarea {
        width: calc(50% - 10px);
    }
}

@media (min-width: 1024px) {
    .banner img {
        height: 450px;
    }

    .centered_title {
        font-size: 5em;
        letter-spacing: 0.15em;
    }

    .main-container-form {
        max-width: 1200px;
        margin: 4em auto;
        padding: 0 2em;
    }

    .description-form {
        padding: 35px;
    }

    .desciption-title {
        font-size: 1.6em;
    }

    .description-text {
        font-size: 1.1em;
    }

    .container-from-gobal {
        margin: 2.5em 3em;
    }

    .container-from-title {
        font-size: 1.3em;
    }

    .button-send button {
        width: 300px;
        height: 55px;
        font-size: 1.2em;
    }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red; */
}
a {
  text-decoration: none;
  color: white;
  font-family: "Oswald", sans-serif;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 80px 0;
  padding-left: 15px;
}

.dashboard-header {
  margin: 30px auto;
}

.container-btn-create {
  width: 100%;
  justify-content: flex-start;
  margin-bottom: 30px;
}

/* .container-dashboard {
  display: grid;
  grid-template-columns: 2fr 4fr;
  width: 100%;
  margin-top: 25px;
} */

.publication {
  display: grid;
  grid-template-columns: 2fr 4fr;
  width: 98%;
  margin-top: 25px;
  padding-left: 25px;
  border-bottom: 2px solid rgb(207, 207, 207);
} 


.pet-info {
  width: 80%;
  padding-left: 5px;
  line-height: 1.5;
}

.dash-buttons {
  display: flex;
  width: 200%;
  justify-content: center;
  margin: 20px 0;
}

.dash-name {
  text-align: center;
  padding-bottom: 20px;
}

.dash-img {
  width: 150px;
  height: 180px;
  object-fit: cover;
}

.dash-body-description {
  overflow: hidden; /* Oculta el contenido que sobresale del contenedor */
  text-overflow: ellipsis; /* Agrega puntos suspensivos (...) al final del texto recortado */
  white-space: nowrap; /* Evita que el texto se divida en varias líneas */
  max-width: 200px;
  cursor: pointer;
}

.parrafo-completo {
  overflow: visible;
  white-space: normal; /* Permite que el texto se divida en varias líneas */
  max-width: 100%;
}

.dashboard-btn {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  margin: 0 auto;
  background: #b6aff0;
  border: none;
  border-radius: 12px;
  color: white;
  width: 50%;
  height: 30px;
  padding-bottom: 2%;
  cursor: pointer;
  margin: 0 20px;
}

.dashboard-btn:hover {
  background: white;
  color: black;
  border: 2px solid #b6aff0;
}

.dashboard-btn img {
  width: 25px;
  padding-right: 10px;
}

.dashboard-btn a:hover {
  background: white;
  color: black;
}

.dash-buttons {
  margin: 20px 0;
}

.dash-buttons2 {
  display: none;
}

/* .line {
  border: 2px solid rgb(207, 207, 207);
  width: 85%;
} */

@media screen and (min-width: 768px) {
  .dashboard-header {
    margin: 30px 15px;
  }

  .publication {
    grid-template-columns: 1fr 3fr 1fr;
    align-items: center;
  }

  .dash-img {
    width: 174.59px;
  }

  .dash-buttons {
    display: none;
  }

  .dashboard-btn {
    font-size: 1.2rem;
    width: 25%;
    height: 40px;
    margin-top: 15px;
  }

  #btn-edit,
  #btn-delete {
    width: 55%;
  }

  .dash-buttons2 {
    grid-column: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
  }

  .pet-info {
    width: 100%;
    display: flex;
  }

  .pet-info-basic,
  .pet-info-aditional {
    width: 100%;
    padding: 0 15px;
    line-height: 1.5;
  }
}

@media screen and (min-width: 1024px) {
  .dash-img {
    width: 253px;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

section {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 41px;
	width: 100%;
	min-height: 100vh;
	background: url(/img/matchea.jpg) no-repeat;
	background-size: cover;
	background-position: center;
}

.contenedor {
	position: relative;
	width: 400px;
	border: 2px solid rgba(255, 255, 255, 0.6);
	border-radius: 20px;
	backdrop-filter: blur(15px);
	height: 500px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.contenedor h2 {
	color: #fff;
	font-size: 2rem;
	text-align: center;
}

.input-contenedor {
	position: relative;
	margin: 30px 10px;
	width: 300px;
	border-bottom: 2px solid #fff;
}

.input-contenedor label {
	position: absolute;
	left: 5px;
	top: 50%;
	color: #fff;
	font-size: 1rem;
	transform: translateY(-50%);
	transition: 0.6s;
	pointer-events: none;
	font-weight: bold;
}

.input-contenedor input {
	width: 100%;
	background-color: transparent;
	border: none;
	outline: none;
	color: #fff;
	font-size: 1.2rem;
	padding: -35 0 5px;
	height: 50px;
}

#message {
	width: 100%;
	background-color: transparent;
	border: none;
	outline: none;
	color: #fff;
	font-size: 1.2rem;
	height: 100px;
	margin-top: 10px;
}

input:focus ~ label,
input:valid ~ label {
	top: -5px;
}

label.mensaje {
	margin-top: 10px;
	top: -15px;
}

.captcha {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.enviar_form {
	width: 100%;
	height: 50px;
	margin: 20px 0px;
	background-color: #58247667;
	border-radius: 40px;
	border: none;
	cursor: pointer;
	outline: none;
	font-size: 1rem;
}
.enviar_form:hover {
	background: #776ecb;
	opacity: 0.9;
}

/* Media Queries */
@media only screen and (max-width: 600px) {
	.contenedor {
		width: 80%;
	}
}

@media only screen and (max-width: 480px) {
	.input-contenedor {
		width: 90%;
	}
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Oswald:wght@400;500;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--color-bg-light);
}

.container-cards {
    margin-top: 100px;
    width: 100%;
    padding: 20px;
}

p {
    font-family: var(--font-primary);
    font-size: 13px;
    line-height: 1.4rem;
    margin-bottom: 0;
    color: var(--color-text-dark);
}

.container-cards h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 7%;
    color: var(--color-text-dark);
}

.cards-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 95%;
    margin: auto;
    gap: 15px;
}

/* Card con efecto glassmorphism */
.card {
    width: 100%;
    height: 100%;
    margin: auto;
    margin-bottom: 5%;
    border: 2px solid rgba(182, 175, 240, 0.5);
    border-radius: var(--border-radius-lg);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: var(--blur-light);
    -webkit-backdrop-filter: var(--blur-light);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition-normal);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-primary);
}

.card-principal {
    position: relative;
}

/* Badge con nombre */
.name-box {
    display: flex;
    position: absolute;
    justify-content: center;
    top: 10px;
    left: 10px;
    align-items: center;
    padding: 8px 15px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-soft);
}

.card-img {
    object-fit: cover;
    width: 100%;
    height: 180px;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    transition: var(--transition-normal);
}

.card:hover .card-img {
    transform: scale(1.05);
}

.card-title {
    text-align: center;
    padding-top: 15px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-text-dark);
}

.card-text-lg {
    display: flex;
    flex-direction: column;
    padding: 15px;
    gap: 5px;
}

.card-text-lg p.raza,
p.tamanio,
p.color {
    display: none;
}

.profile-icons,
.card-button {
    display: none;
}

/* Contenedor de botones de resultados */
.container-btn-results {
    display: flex;
    margin: 30px 0;
    justify-content: center;
}

.btn-results {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    border: none;
    border-radius: var(--border-radius-full);
    color: var(--color-white);
    width: auto;
    padding: 12px 40px;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-soft);
}

.btn-results:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

/* Mobile */
@media screen and (max-width: 400px) {
    .container-cards {
        margin-top: 25%;
    }

    .cards-group {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        height: auto;
        min-height: 270px;
    }

    .name-box {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

/* Tablet */
@media screen and (min-width: 768px) {
    .container-cards {
        margin-top: 100px;
        padding: 30px;
    }

    .container-cards h2 {
        font-size: 1.8rem;
        margin: 0 0 40px 0;
    }

    .cards-group {
        display: flex;
        flex-wrap: wrap;
        gap: 25px;
    }

    .card {
        display: flex;
        width: 48%;
        height: 230px;
        margin-bottom: 0;
    }

    .name-box {
        display: flex;
        justify-content: center;
        padding: 8px 15px;
    }

    .card-body-info {
        display: flex;
        flex-direction: row-reverse;
        height: 130px;
        margin-top: 15px;
    }

    .profile-icons {
        display: flex;
        flex: 1;
        flex-direction: column;
        justify-content: space-evenly;
        height: 75px;
        color: var(--color-primary);
    }

    .material-symbols-outlined {
        font-size: 20px;
        color: var(--color-primary);
    }

    .card-text-lg {
        flex: 3;
        margin: 22px 0;
        padding: 0 15px;
    }

    .card-text-lg p {
        display: block;
        line-height: 22px;
    }

    .card-text.edad { order: 1; }
    .card-text.sexo { order: 2; }
    .card-text.tamanio { order: 3; }
    .card-text.ubicacion { order: 4; }

    .card-text-lg p.raza,
    p.color {
        display: none;
    }

    .card-img {
        object-fit: cover;
        width: 200px;
        height: 100%;
        padding: 0;
        border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
    }

    .card-button {
        display: block;
        margin-right: 20px;
    }

    .btnProfile {
        display: flex;
        justify-content: center;
        align-items: center;
        background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
        color: var(--color-white);
        font-family: var(--font-heading);
        font-size: 1rem;
        text-decoration: none;
        text-align: center;
        width: auto;
        padding: 10px 20px;
        border: none;
        border-radius: var(--border-radius-full);
        margin: 25% 0 0 10%;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-soft);
    }

    .btnProfile:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
        background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    }

    .btn-results {
        padding: 15px 50px;
        font-size: 1.1rem;
    }
}

/* Desktop */
@media screen and (min-width: 1024px) {
    .container-cards {
        margin-top: 120px;
    }

    .card {
        margin: auto;
        margin-bottom: 0;
    }

    .card-img {
        width: 260px;
    }

    .profile-icons {
        flex-direction: row;
        flex: 1.5;
        margin-right: 4%;
    }

    .material-symbols-outlined {
        font-size: 22px;
    }
}

/* Large Desktop */
@media screen and (min-width: 1280px) {
    .card-body {
        display: flex;
        flex-direction: column;
        width: 60%;
        margin-left: 5%;
    }

    .profile-icons {
        justify-content: space-between;
        margin-right: 10%;
    }

    .btnProfile {
        justify-content: center;
        margin: 15% 0 0 20%;
        padding: 12px 25px;
    }
}

/* Extra Large Desktop */
@media screen and (min-width: 1440px) {
    .container-cards {
        margin-top: 100px;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }

    .card-body {
        margin-top: 2%;
    }

    .cards-group {
        margin: auto;
        gap: 30px;
    }

    .card {
        width: 48%;
        height: 300px;
        margin: 0;
    }

    .card-img {
        width: 360px;
        height: 100%;
    }

    .card-text-lg p {
        font-size: 14px;
        line-height: 2;
    }

    .material-symbols-outlined {
        font-size: 24px;
    }

    .card-button {
        padding-left: 25%;
    }

    .btnProfile {
        width: auto;
        padding: 12px 30px;
        margin: 32% 0 0 0;
    }

    .btn-results {
        font-size: 1.3rem;
        padding: 15px 60px;
    }
}
