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

img, svg, video {
  display: block;
  width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #777777;
    overflow-x: hidden;
}

/* Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

/* Header */
header {
    background-color: #BF0D4B;
    color: #fcfcfc;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: #1E0101;
    width: 100%;
}

.grelha {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 20px;
}

.logo {
    grid-column: 1 / 3;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0;
}

.nav {
    display: flex;
    gap: 2rem;
    grid-column: 3 / 13;
    justify-self: flex-end;
    align-self: center;
}

nav a {
    color: #fcfcfc;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

nav a:hover {
    opacity: 0.8;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #fcfcfc;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: #BF0D4B;
    padding: 1rem 2rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-link {
    color: #fcfcfc;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: #777777;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #fcfcfc;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
}

.hero-circle {
    width: 380px;
    height: 380px;
    background-color: #777777;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 3.5rem;
    font-weight: 400;
    color: #fcfcfc;
    text-align: center;
    margin: 0 0 1.5rem 0;
    line-height: 1;
}

.hero-text {
    font-size: 1.25rem;
    color: #fcfcfc;
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-white {
    background-color: #fcfcfc;
}

.section-gray {
    background-color: #777777; 
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #BF0D4B;
    text-align: center;
    margin-bottom: 3rem;
}

.section-text {
    font-size: 1.125rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #777777;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    color: #fcfcfc;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #777777;
    margin-bottom: 1rem;
}

.card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #777777;
}

/* Seasons Section */
.seasons-section {
    padding: 5rem 2rem;
}



#seasons-text {
    grid-column: 2 / 8;
    grid-row: 1 / 3;
    margin-top: 100px;
}

.seasons-paragraph {
    font-size: 1rem;
    line-height: 1.8;
    color: #777777;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.seasons-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.season-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 50px;
    max-height: 310px;
}

.season-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.season-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #BF0D4B;
    color: #fcfcfc;
    padding: 1rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.25rem;
}

/* Grid para seasons */
#season-winter {
    grid-column: 9 / 12;
    grid-row: 2 / 4;
}

#season-spring {
    grid-column: 9 / 12;
    grid-row: 1;
}

#season-autumn {
    grid-column: 2 / 5;
    grid-row: 3 / 5;
}

#season-summer {
    grid-column: 5 / 8;
    grid-row: 3 / 5;
}

/* Contact Info */
.contact-info {
    text-align: center;
}

.contact-item {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #777777;
}

.contact-item strong {
    color: #777777;
    font-weight: 600;
}

.colors {
    color: #fcfcfc;
    color: #FF538F;
    color: #FFD1D8;
    color: #BF0D4B;
    color: #0B8E1C;
    color: #5BD76B;
    color: #04580F;
    color: #EA0606;
    color: #770D0D;
    color: #1E0101;
    color: #E3E3E3;
    color: #777777;  
}



.ritmo-estacoes {
  padding: 80px 0;
  background-color: #fcfcfc;
}

.ritmo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

#ritmo-text {
  color: #777777;
  font-family: "Inter", sans-serif;
  grid-column: 1 / 7;
  grid-row: 1;
}

#ritmo-text2 {
  color: #777777;
  font-family: "inter", sans-serif;
  grid-column: 7 / 13;
  grid-row: 3;
  margin-top: 100px;

}

.ritmo-title {
  color: #0B8E1C;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.ritmo-text p {
  line-height: 1.7;
  font-size: 1rem;
}

#ritmo-image-1 {
  border-radius: 6px;
  grid-column: 7 / 13;
  grid-row: 1 / 3;
}

#ritmo-image-2 {
  border-radius: 6px;
  grid-column: 1 / 7;
  grid-row: 2 / 4;
  margin-top: 100px;
}


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



/* Galeria */
.galeria-section {
  background-color: #fcfcfc;
  padding: 5rem 0;
}

.galeria-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #BF0D4B;
  margin-bottom: 2rem;
  grid-column: 1 / span 12;
}

#galeria img {
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

#galeria img:hover {
  transform: scale(1.05);
}

#galeria video {
  grid-column: 1 / 9;
}

#galeria img:first-of-type {
  grid-column: 9 / 13;
  grid-row: 2 / 4;
}

#galeria img:nth-of-type(2) {
  grid-column: 1 / 6;
}

#galeria img:last-of-type {
  grid-column: 6 / 9;
}



/* Secção Outono */


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

.foto-container {
    position: relative;        
    grid-column: 2 / 12;
}

.outono2 {
    width: 100%;
    height: auto;
    display: block;
}

.texto-sobre {
    position: absolute;
    top: 50%;                   
    left: 50%;                  
    transform: translate(-50%, -50%);
    color: #fcfcfc;               
    font-size: 24px;
    font-weight: bold;
    font-family: 'Playfair Display', serif;

     }







/* Secção Ação */
.acao-section {
  background-color: #fcfcfc;
  padding: 6rem 0;
}

.acao-left,
.acao-right {
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Grelha da secção */
.acao-section .grelha {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Bloco esquerdo */
.acao-left {
  background-color: #BF0D4B;
  background-image: url("imagens/11.jpg");
  background-size: auto;
  background-position: center;
  grid-column: 1 / 7;
  padding: 4rem 2rem;
  z-index: 1;
}

.acao-content {
  background: rgba(191, 13, 75, 0.8);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
}

.acao-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #fcfcfc;
}

.acao-btn {
  background-color: #fcfcfc;
  color: #BF0D4B;
  font-weight: 600;
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: 40px;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.acao-btn:hover {
  background-color: #FF538F;
  transform: scale(1.05);
}

/* Bloco direito */
.acao-right {
  background-image: url("imagens/fundo-acao2.jpg");
  background-size: cover;
  background-position: center;
  grid-column: 6 / 13; 
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  margin-top: -80px; 
}

/* Grid interna dos produtos */
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.produto-item {
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
}

.produto-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-bottom: 2px solid #777777;
}

.preco {
  display: block;
  background: linear-gradient(to bottom,#1E0101, #777777);
  color: #fcfcfc;
  font-weight: 600;
  padding: 10px 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .acao-left,
  .acao-right {
    grid-column: 1 / 13;
    margin-top: 20px;
  }

  .acao-section {
    padding: 3rem 0;
  }

  .produtos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .acao-right {
    margin-top: 0;
  }
}




.footer {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding: 40px 20px;
  text-align: center;
  font-family: "Georgia", serif;
}

.insta-title {
  grid-column: 1 / 13;
  font-size: 20px;
  margin-bottom: 20px;
}

.insta-grid {
  grid-column: 2 / 12;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.insta-grid img {
  width: 100%;
  border-radius: 4px;
}

.newsletter {
  grid-column: 5 / 9;
  padding: 12px 20px;
  background: linear-gradient(#FF538F, #FFD1D8);
  border: none;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
}

.social {
  grid-column: 1 / 13;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  color: #1E0101;
}

.social .icon {
  font-size: 20px;
  border: 1px solid #1E0101;
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom {
  grid-column: 1 / 13;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.7;
  margin-top: 30px;
}