@font-face {
    font-family: 'Anton';
    src: url('../webfonts/Anton-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Caveat';
    src: url('../webfonts/CaveatBrush-Regular.ttf') format('truetype');
    font-weight: 100 700;
    font-style: normal;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Caveat', cursive;
    background: #fff;
    color: #000;
    overflow-x: hidden;
    padding-top: 90px;
}

:root {
    --purple: #65176F;
    --yellow: #F0B432;
    --red: #F21C43;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f6f6f6;
    --beige: #FBECD4;
}

/* Utilities */
.padding-top-10px {
  padding-top: 10px !important;
}

.margin-top-10px {
  margin-top: 10px !important;
}

.margin-top-2rem {
  margin-top: 2rem !important;
}

.margin-top-4rem {
  margin-top: 4rem !important;
}

.margin-top-0 {
  margin-top: 0 !important;
}

.padding-top-0 {
  padding-top: 0 !important;
}

.padding-bottom-10px {
    padding-bottom: 10px !important;
}

.margin-bottom-0 {
  margin-bottom: 0 !important;
}

.margin-bottom-2rem {
  margin-bottom: 2rem !important;
}

.margin-bottom-4rem {
  margin-bottom: 4rem !important;
}

.padding-bottom-0 {
  padding-bottom: 0 !important;
}

.padding-bottom-2rem {
    padding-bottom: 2rem !important;
}

.padding-0 {
    padding: 0 !important;
}

.color-black {
    color: var(--black) !important;
}

.color-red {
    color: var(--red) !important;
}
.color-yellow {
    color: var(--yellow) !important;
}

.color-beige {
    color: #FBECD4 !important;
}

.padding-inline-6rem {
    padding-inline: 6rem !important;
}

@media (max-width: 576px) {
    .padding-sides-1rem-mobile {
        padding: 0 1rem !important;
    }

    .padding-block-2rem-mobile {
        padding-block: 2rem !important;
    }

    .padding-1rem-mobile {
        padding: 1rem !important;
    }

    .padding-top-2rem-mobile {
        padding-top: 2rem !important;
    }

    .padding-bottom-2rem-mobile {
        padding-bottom: 2rem !important;
    }

    .text-center-mobile {
        text-align: center !important;
    }
}

/* Home */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: var(--yellow);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5rem;
    transition: padding 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header.shrink {
    padding: 0.5rem 2.5rem;
    transition: padding 0.3s ease;
}

.header.shrink .logo img {
    max-height: 40px;
}

.nav-link {
    color: var(--white);
}

    .nav-link:hover {
        color: var(--purple);
        transform: scale(1.15);
        -webkit-text-stroke: 1px currentColor;
    }

.nav-link.active {
    transform: scale(1.15);
    -webkit-text-stroke: 1px currentColor;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4)
}

.nav-left {
    display: flex;
    gap: 26px;
    align-items: center;
    justify-content: flex-start;
}

.nav-right {
    display: flex;
    gap: 26px;
    align-items: center;
    justify-content: flex-end;
}

.nav a {
    margin-left: 0;
    color: var(--black);
    margin-left: 1rem;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s ease;
    font-family: 'Caveat', sans-serif;
}

.header > .logo {
    display: none;
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 2rem;
    }
    
    .header > .logo {
        display: flex;
        order: 0;
    }
    
    .menu-toggle {
        display: block;
        order: 1;
    }
    
    .nav .logo-desktop {
        display: none !important;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--yellow);
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s ease;
        justify-content: flex-start;
        gap: 2rem;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-left, .nav-right {
        flex-direction: column;
        width: 100%;
    }
    
    .menu-close {
        display: block;
        align-self: flex-end;
        font-size: 2rem;
        background: none;
        border: none;
        color: var(--black);
        cursor: pointer;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .nav {
        width: 80%;
        padding: 1.5rem !important;
        gap: 1.5rem;
    }
    
    .nav-left, .nav-right {
        gap: 1rem;
    }
    
    .nav a {
        font-size: 1.1rem;
        margin-left: 0;
    }
    
    .btn-header {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1rem;
    }
}

@media (max-width: 360px) {
    .nav {
        width: 85%;
        padding: 1rem;
        gap: 1rem;
    }
    
    .nav a {
        font-size: 1rem;
    }
}

.banner-static {
  overflow: hidden;
  padding: 4rem 0;
  min-height: 100vh;
  height: auto;
  display: flex;
  align-items: center;
}

.btn-header {
    background-image: url('../img/btn-black-container.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    color: var(--black);
    padding: 1.5rem;
    border-radius: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    height: 24px;
    min-width: 100px;
}

    .btn-header:hover {
        font-weight: bold;
        color: var(--purple);
        transform: scale(1.04);
        filter: brightness(1.1);
    }

.banner-btn {
  background-color: var(--yellow);
  color: var(--black);
  padding: 1.2rem 2.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'Caveat', sans-serif;
  font-weight: bold !important;
  font-size: 2rem !important;
  text-transform: uppercase;
  letter-spacing: 4px;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  width: 60%;
  text-align: center;
}

    .banner-btn:hover {
    transform: scale(1.08);
    background-color: var(--white);
    color: var(--purple);
    box-shadow: 0 6px 20px rgba(247, 198, 0, 0.5);
    }

.logo {
    height: 60px;
    display: flex;
    align-items: center;
}

.header.shrink .logo {
    height: 40px;
}

.logo a {
    display: inline-block;
    height: 100%;
}

.logo img {
    max-height: 60px;
    transition: max-height 0.3s ease;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
}

.menu-close {
    display: none;
}

.nav.active + .menu-overlay,
.menu-overlay.active {
    display: block;
}

.banner-content-container {
    padding: 3rem 2.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}

.banner-content-title {
    color: var(--beige);
    font-family: 'Anton', sans-serif !important;
    font-size: 8rem !important;
    font-weight: 400 !important;
    text-align: center;
}

.banner-img {
    position: relative;
    height: 100%;
    width: auto;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
}

.carousel-item {
    height: 60vh;
    position: relative;
    background-color: var(--purple);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.carousel-image-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-image-wrapper::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.7) 100%);
    z-index: 0;
    pointer-events: none;
}

.carousel-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.carousel-caption {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    z-index: 2;
}

@media (max-width: 992px) {
    .header {
        padding: 1.4rem 2rem;
    }

    .header.shrink {
        padding: 0.5rem 1rem;
    }

    .logo img {
        max-height: 50px;
    }

    .header.shrink .logo img {
        max-height: 35px;
    }

    .banner-img {
        height: 60vh;
    }

    .carousel-caption h1 {
        font-size: 2.5rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100%;
        width: 60%;
        background-color: var(--yellow);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease-in-out;
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .btn-header {
        font-size: 0.6rem;
        height: auto;
        padding: 0.75rem 1.25rem;
    }

    .menu-close {
        display: block;
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--white);
        align-self: flex-end;
        margin-bottom: 2rem;
        cursor: pointer;
    }
}

@media (max-width: 576px) {
    .banner-content-title {
        font-size: 4rem !important;
    }

    .banner-img {
        height: 50vh;
    }

    .carousel-caption {
        padding: 1rem;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }

    .btn-header {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .banner-btn {
        font-size: 1.5rem !important;
        padding: 0.8rem 1rem;
        width: 80%;
        text-align: center;
    }
}


/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('../img/bg-home.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-buttons {
    max-width: 1200px;
    padding: 2rem;
    gap: 2rem;
    margin: 12rem 0;
}

.hero-btn {
    background-color: var(--yellow);
    color: var(--black);
    padding: 1.2rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Caveat', sans-serif;
    font-weight: bold !important;
    font-size: 2.5rem !important;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 60%;
    text-align: center;
}

.hero-btn:hover {
    transform: scale(1.08);
    background-color: var(--white);
    color: var(--purple);
    box-shadow: 0 6px 20px rgba(247, 198, 0, 0.5);
}

@media (max-width: 992px) {
    .hero-section {
        min-height: 80vh;
        background-attachment: scroll;
    }
    
    .hero-overlay {
        min-height: 80vh;
    }
    
    .hero-btn {
        font-size: 1.3rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-overlay {
        min-height: 70vh;
    }
    
    .hero-buttons {
        gap: 1.5rem !important;
    }

    .hero-btn {
        font-size: 1.2rem;
        padding: 0.9rem 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-btn {
        font-size: 1.5rem !important;
        padding: 0.8rem 1rem;
        width: 90%;
        text-align: center;
    }
    
    .hero-buttons {
        gap: 2rem !important;
    }
}


/* Footer */
.footer-title {
    font-family: 'Anton', sans-serif;
    font-weight: 400 !important;
    font-size: 2rem !important;
    text-transform: uppercase;
    color: var(--beige) !important;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.footer-item {
    font-family: 'Caveat', cursive !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    color: var(--beige) !important;
    border-bottom: none !important;
    transition: all 0.3s ease;
    padding: 0.3rem 1.2rem;
    display: inline-block;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: none;
    position: relative;
}

.footer-item:hover {
    z-index: 100;
    background-image: url('../img/btn-yellow-container.png');
    color: var(--yellow) !important;
    -webkit-text-stroke: 1px currentColor;
}

.footer-social-handle {
    font-family: 'Anton', sans-serif;
    font-size: 1rem !important;
    color: var(--white);
    margin-bottom: 0.5rem;
    color: var(--beige) !important;
}

#tempaltemo_footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: transparent;
    color: white;
    position: relative;
}

#tempaltemo_footer::before {
    display: none;
}

.footer-purple-section {
    background-color: var(--purple);
    padding: 3rem 0 2rem 0;
}

.footer-yellow-section {
    background-color: var(--yellow);
    padding: 1.5rem 0;
}

.footer-logo {
    max-height: 100px;
    width: auto;
}

.footer-box {
    padding: 2rem 3rem;
    border-radius: 0;
}

.footer-box .row {
    flex-wrap: wrap;
}

.footer-quote {
    font-family: 'Anton', sans-serif !important;
    font-size: 1.2rem !important;
    font-weight: 400 !important;
    color: var(--beige) !important;
    margin: 0;
    text-align: right;
    letter-spacing: 1px;
}

.footer-btns .footer-btn img {
    transition: all 0.3s ease;
}

.footer-btns .footer-btn img:hover {
    transform: translateY(-20px);
}

.social-networks-other {
    display: block;
}

.social-networks-mobile {
    display: none !important;
}

@media (max-width: 991.98px) {
    .footer-purple-section {
        padding: 2rem 0;
    }

    .footer-btns .footer-btn img {
        max-width: 180px !important;
    }
    
    .footer-box {
        padding: 1.5rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-item {
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .footer-purple-section {
        padding: 2rem 1rem;
    }
    
    .footer-purple-section .row > .col-12.col-md-6 .row > .col-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }    
    
    .social-networks-other {
        display: none;
    }
    
    .social-networks-mobile {
        display: block;
        margin-top: 2rem;
        text-align: center;
    }
    
    .footer-btns {
        justify-content: center !important;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .footer-quote {
        text-align: center;
        margin-top: 1.5rem;
        font-size: 1.8rem !important;
    }

    .footer-yellow-section {
        padding: 1rem 0;
    }
    
    .footer-logo {
        max-height: 60px;
    }
    
    .footer-purple-section .col-12.col-md-5 {
        align-items: center !important;
    }
}

@media (max-width: 575.98px) {
    .footer-btns .footer-btn img {
        max-width: 160px !important;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-item {
        font-size: 1.1rem;
    }
    
    .footer-social-handle {
        font-size: 1.2rem;
    }
}


/* Separador */
.wave-separator-top {
    width: 100%;
    line-height: 0;
    overflow: hidden;
    margin-top: -48px;
    position: relative;
    z-index: 10;
}

.wave-separator-top svg {
    width: 100%;
    height: 48px;
    display: block;
}

.wave-separator-bottom {
    width: 100%;
    line-height: 0;
    overflow: hidden;
    margin-top: -58px;
    margin-bottom: -2px;
    position: relative;
    z-index: 10;
}

.wave-separator-bottom svg {
    width: 100%;
    height: 50px;
    margin-top: 0;
    display: block;
}

@media (max-width: 768px) {
    .wave-separator-top {
        margin-top: -30px;
        margin-bottom: -2px;
    }
    
    .wave-separator-bottom {
        margin-top: -40px;
        margin-bottom: -2px;
    }
    
    .wave-separator-top svg {
        height: 20px;
    }
    
    .wave-separator-bottom svg {
        height: 20px;
        margin-top: 0;
    }
}


/* Form Section */
.form-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.form-container .form-group {
    display: flex;
    flex-direction: column;
}

.form-container .form-group label {
    font-size: 1.6rem !important;
    font-weight: bold !important;
    font-family: 'Caveat', sans-serif !important;
}

.form-container .form-group input {
    height: 40px;
}

.form-container .form-group input,
.form-container .form-group textarea {
    background-color: #EBDEC8;
    font-family: 'Anton', sans-serif !important;
    border-color: #dc3545;
}

.form-container label {
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.form-container input,
.form-container textarea {
    border: 1px solid #ccc;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.form-container textarea,
.form-btn-submit {
    grid-column: span 1 !important;
}

.form-btn-submit {
    font-family: 'Caveat', cursive;
    background: var(--yellow);
    font-size: 1.6rem;
    display: block;
    margin: 0 auto;
    width: 180px;
    letter-spacing: 4px;
    padding: 10px 20px;
    text-align: center;
    transition: 0.2s ease;
    border: none;
    border-radius: 10px;
}


.form-btn-submit:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
    }

    .form-btn-submit,
    .form-container textarea {
        grid-column: span 1;
    }
}


/* Date input */
.date-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.date-input-wrapper input {
    flex: 1;
    padding-right: 40px;
}

.calendar-icon {
    position: absolute;
    right: 12px;
    font-size: 1.3rem;
    pointer-events: none;
    opacity: 0.7;
}

.flatpickr-calendar {
    background: var(--beige, #f5e6d3);
    border: 2px solid var(--black);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.flatpickr-months {
    background: var(--yellow, #FFD700);
    border-radius: 10px 10px 0 0;
}

.flatpickr-current-month {
    color: var(--black);
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
}

.flatpickr-weekdays {
    background: var(--yellow, #FFD700);
}

.flatpickr-weekday {
    color: var(--black);
    font-family: 'Caveat', cursive;
}

.flatpickr-day {
    color: var(--black);
    border-radius: 5px;
    font-family: 'Caveat', cursive;
}

.flatpickr-day:hover {
    background: var(--yellow, #FFD700);
    border-color: var(--yellow, #FFD700);
}

.flatpickr-day.selected {
    background: var(--purple, #65176F);
    border-color: var(--purple, #65176F);
    color: white;
}

.flatpickr-day.today {
    border-color: var(--purple, #65176F);
}

.flatpickr-day.disabled {
    color: #ccc;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    fill: var(--black);
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
    fill: var(--purple);
}


/* Mensajes de error */
.error-message {
    display: none;
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    font-family: 'Caveat', cursive;
}

.form-group input:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.form-group input:valid:not(:placeholder-shown) {
    border-color: #28a745;
}

.form-loader {
    text-align: center;
    padding: 1rem;
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    color: var(--purple);
}

.form-message {
    display: none;
    text-align: center;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 10px;
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
}