@font-face {
    font-family:'Rubik';
    src: url('../fonts/Rubik Regular.eot');
	src: url('../fonts/Rubik Regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Rubik Regular.woff2') format('woff2'),
		url('../fonts/Rubik Regular.woff') format('woff'),
		url('../fonts/Rubik Regular.svg#Rubik Regular') format('svg');
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-2084;
}

@font-face {
    font-family:'Rubik';
    src: url('../fonts/Rubik Bold.eot');
	src: url('../fonts/Rubik Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Rubik Bold.woff2') format('woff2'),
		url('../fonts/Rubik Bold.woff') format('woff'),
		url('../fonts/Rubik Bold.svg#Rubik Bold') format('svg');
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-2084;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family:'Rubik';font-weight:400;
    line-height: 1.6;
}
h1,h2,h3,h4,h5{font-family:'Rubik';font-weight: 700;}
/* Header */
.header {
    background-color: white;
    border-bottom: 2px solid #e0e0e0;
}
header{position:fixed;top:0;left:0;width:100%;z-index:99}
main{padding-top:70px;}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 40px;
    margin-right: 20px;
}

.main-nav ul {
    display: flex;
    list-style-type: none;
}

.main-nav ul li {
    margin-left: 20px;
}

.main-nav ul li a {
    text-decoration: none;
    color: #BF0D65;
    font-family:'Rubik';font-weight: 700;
	font-size:14px;
}

.menu-toggle {
    display: none;
}

.banner{margin:0;padding:0;}
.banner img{max-width:100%;margin:0;display: block;}
.hero {
    background: #BF0D65;
    color: white;
    padding: 70px 20px;
}

.hero-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
	min-width:300px;
    border-radius: 10px;
}

.hero-text {
    padding-left: 50px;
}

.hero-text h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}
.hero-text p {
    margin-bottom: 20px;
	font-size:1.2rem
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #e6007e;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

/* Categories Section */
.categories {
    padding: 50px 20px;
    background:  url(../images/bg-categorias.png) top center no-repeat;
    color: white;
}

.categories h2 {
    text-align: center;
    margin-bottom: 30px;
	font-size:40px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-item {
	
    text-align: center;
}

.category-item .img-category {
	height:110px;display:flex;align-items:center;justify-content:center;
}
.category-item img {
    max-width: 100%;
}

.category-item h3 {
    color: #333;
    margin-bottom: 10px;
}



/* Footer */
.footer {
    background-color: #e6007e;
    color: white;
    padding: 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo img {
    height: 30px;
}

.footer-text {
    text-align: right;
    font-size: 12px;
}

.social-icon {margin-right:8px;}
.social-icon img{max-height:26px;}

.footer-text a {
    color: white;
    text-decoration: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .logo-container {
        order: 1;
        width: 70%;
        text-align: center;height:50px;
		display:flex;align-items:center;
    }
	.sancor-logo{display:none;}

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
        order: 2;
    }

    .hero-content {
        flex-direction: column;
		background:#fff;border-radius:25px;
		padding-top:1rem
    }
	.hero-content h1{color:#BF0D65}
	.hero-content p{color:#222222}

    .hero-image {
        margin-bottom: -6px;
		order: 2;
		
    }

    .hero-text {
        padding-left: 0;
		padding:0 1rem;
        text-align: left;
		order: 1;
		margin-bottom:2rem;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		gap: 20px;
    }

    .footer-content {
        
        text-align: center;
    }
	.footer-social{display:none;}

    .footer-text {
        text-align: left;
        margin-top: 10px;
		margin-left:20px;
    }
	
	.cta-button {
		display: inline-block;
		background-color: #e6007e;
		color: white;
		padding: 5px 15px;
		text-decoration: none;
		border-radius: 5px;
	}
}

.menu-toggle {
  display: none; /* Hide on desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #e6007e;
  margin: 5px 0;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e6007e;
  z-index: 1000;
  overflow-y: auto;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.mobile-logo {
  height: 30px;
}

.close-menu {
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.mobile-nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.mobile-nav ul li {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  display: block;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

.gallery-container {
  max-width: 100%;
  padding: 0 20px;
  margin: 2rem auto;
  text-align: center;
}

.gallery-container h2 {
  color: #003399;
  margin-bottom: 20px;
  font-size:40px;
}

.main-image {
  margin-bottom: 20px;
  max-width:870px;margin:0 auto 2rem auto;display:flex;align-items:center;justify-content:center;
}

.main-image img {
  width: 100%;border-radius:25px;
}

.thumbnail-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background:#304893;
  border-radius:25px;
  max-width: 870px;
  margin:0 auto 20px auto;
}

.thumbnails {
  display: flex;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  max-width: 1200px;
}

.thumbnail {
  flex: 0 0 auto;
  width: 100px;
  height: 60px;
  object-fit: cover;
  margin: 0 5px;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.thumbnail.active {
  opacity: 1;
  border: 2px solid #003399;
}

.nav-button {
  background: #fff;
  color: #003399;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 18px;
  flex: 0 0 auto;
}

.cycle-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.cycle-button {
  background: #003399;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.gallery-container{background:#D9D9D9;padding:2rem 0;margin:0;}
  .thumbnails {
    max-width: calc(100% - 60px);
  }

  .thumbnail {
    width: 80px;
    height: 48px;
  }

  .nav-button {
    font-size: 16px;
    padding: 5px 8px;
  }
}

@media (max-width: 480px) {
  .thumbnails {
    max-width: calc(100% - 40px);
  }

  .thumbnail {
    width: 60px;
    height: 36px;
  }

  .nav-button {
    font-size: 14px;
    padding: 3px 6px;
  }

  .cycle-button {
    padding: 8px 16px;
    font-size: 14px;
  }
}




.image-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.popup-content {
  position: relative;
  width: 100%;
  height: 100%;
  display:flex;align-items:center;justify-content:center;
}

.popup-content img {
  max-width: 80%;
}

.close-popup {
  position: absolute;
  top: 40px;
  right: 40px;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index:99;
}

@media (max-width: 768px) {
  .close-popup {
    top: 10px;
    right: 10px;
  }
  .popup-content {overflow-y:auto;padding:2rem 0;}
}


.main-image {
  margin-bottom: 20px;
}

.main-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.thumbnail-carousel {
  margin-bottom: 20px; position:relative;
}

.thumbnail {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.thumbnail.active {
  opacity: 1;
  border: 2px solid #003399;
}

.cycle-buttons {
  margin-top: 20px;
}

.cycle-button {
  background: #003399;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 0 10px;
  cursor: pointer;
  border-radius: 5px;
}

.owl-carousel .owl-nav{position:relative;}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot{color:#fff;position:absolute;margin-top:-60px;font-size:26px;z-index:2}
.owl-carousel .owl-nav button.owl-prev{left:-12px;}
.owl-carousel .owl-nav button.owl-next{right:-16px;}

.header-top{position:relative;overflow:auto;max-height:150px;}
@media (max-width: 768px) {
  .thumbnail {
    width: 80px;
    height: 48px;
  }
  .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot{margin-top:-40px}
}

@media (max-width: 480px) {
  .thumbnail {
    width: 60px;
  }
  
  .cycle-button {
    padding: 8px 16px;
    font-size: 14px;
  }
  .header-top img{height:150px;}
}


.container {
  
  padding: 20px;
}

.content-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Fundo cinza para blocos pares */
.container:nth-child(odd ) {
  background-color: #eee;
}

/* Inverte a ordem dos elementos nos blocos pares */
.container:nth-child(odd ) {
  flex-direction: row-reverse;
}

.text-content, .image-content {
  flex: 1;
}

.content-block h1,.content-block h2 {
  color: #BF0D65;
  margin-bottom: 20px;
  font-size:40px;
}
.content-block img{max-width:100%;border-radius:20px}


.cta-button {
  background-color: #e6007e;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #c4006b;
}

.image-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive design */
@media (max-width: 768px) {
  .content-block {
    flex-direction: column;
  }

  .content-block:nth-child(even) {
    flex-direction: column-reverse;
  }

  .text-content, .image-content {
    width: 100%;
  }

  h2 {
    font-size: 20px;
  }
}